Changeset 368

Show
Ignore:
Timestamp:
02/16/07 09:14:57 (2 years ago)
Author:
rats
Message:

- GUI:
* renamed domain.gif to domains.gif (spelling-mistake)
* fixed language upload
- LANGUAGE:
* Czech: updated missing strings
- SETUP:
* added Makefile for AWStats (fixed bug #82)
* changed Makefile: added AWStats install, fixed uninstall errors, added gentoo

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r366 r368  
    1111|               * gui: disable stats-alias in client menu         | 
    1212\_________________________________________________________________/ 
     13 
     142007-02-15 Benedikt Heintel 
     15        - GUI: 
     16                * renamed domain.gif to domains.gif (spelling-mistake) 
     17                * fixed language upload 
     18        - LANGUAGE: 
     19                * Czech: updated missing strings 
     20        - SETUP: 
     21                * added Makefile for AWStats (fixed bug #82) 
     22                * changed Makefile: added AWStats install, fixed uninstall errors, added gentoo 
    1323 
    14242007-02-14 Benedikt Heintel 
  • trunk/configs/Makefile

    r215 r368  
    77                cp ./vhcs2.conf $(SYSTEM_CONF) ; \ 
    88                cd ./apache && $(MAKE) install ; cd .. ; \ 
     9                cd ./awstats && $(MAKE) install ; cd .. ; \ 
    910                cd ./bind && $(MAKE) install ; cd .. ; \ 
    1011                cd ./crontab && $(MAKE) install ; cd .. ; \ 
     
    1718                cd ./proftpd && $(MAKE) install ; cd .. ; \ 
    1819                cd ./logrotate && $(MAKE) install ; cd .. ; \ 
     20        elif [[ $(HOST_OS) == fedora ]] ; then \ 
     21                cd ./dists/fedora && $(MAKE) install ; \ 
     22        elif [[ $(HOST_OS) == gentoo ]] ; then \ 
     23                cd ./dists/gentoo && $(MAKE) install ; \ 
     24        elif [[ $(HOST_OS) == sles9 ]] ; then \ 
     25                cd ./dists/sles9 && $(MAKE) install ; \ 
    1926        elif [[ $(HOST_OS) == suse100 ]] ; then \ 
    2027                cd ./dists/suse100 && $(MAKE) install ; \ 
    2128        elif [[ $(HOST_OS) == suse93 ]] ; then \ 
    2229                cd ./dists/suse93 && $(MAKE) install ; \ 
    23         elif [[ $(HOST_OS) == fedora ]] ; then \ 
    24                 cd ./dists/fedora && $(MAKE) install ; \ 
    25         elif [[ $(HOST_OS) == sles9 ]] ; then \ 
    26                 cd ./dists/sles9 && $(MAKE) install ; \ 
    2730        fi 
    2831 
     
    3235                rm -rf $(SYSTEM_CONF)/vhcs2.conf ;  \ 
    3336                cd ./apache && $(MAKE) uninstall ; cd .. ; \ 
     37                cd ./awstats && $(MAKE) uninstall ; cd .. ; \ 
    3438                cd ./bind && $(MAKE) uninstall ; cd .. ; \ 
    3539                cd ./crontab && $(MAKE) uninstall ; cd .. ; \ 
     
    4145                cd ./proftpd && $(MAKE) uninstall ; cd .. ; \ 
    4246                cd ./logrotate && $(MAKE) uninstall ; cd .. ; \ 
    43         elif [[ $(HOST_OS) == suse ]] ; then \ 
    44                 cd ./dists/suse && $(MAKE) uninstall ; \ 
    4547        elif [[ $(HOST_OS) == fedora ]] ; then \ 
     48                cd ./dists/fedora && $(MAKE) uninstall ; \ 
     49        elif [[ $(HOST_OS) == gentoo ]] ; then \ 
    4650                cd ./dists/fedora && $(MAKE) uninstall ; \ 
    4751        elif [[ $(HOST_OS) == sles9 ]] ; then \ 
    4852                cd ./dists/sles9 && $(MAKE) uninstall ; \ 
     53        elif [[ $(HOST_OS) == suse93 ]] ; then \ 
     54                cd ./dists/suse93 && $(MAKE) uninstall ; \ 
     55        elif [[ $(HOST_OS) == suse100 ]] ; then \ 
     56                cd ./dists/suse100 && $(MAKE) uninstall ; \ 
    4957        fi 
    5058 
  • trunk/gui/admin/multilanguage.php

    r365 r368  
    3232$tpl -> define_dynamic('lang_def', 'lang_row'); 
    3333 
    34 $theme_color = $cfg['USER_INITIAL_THEME']; 
     34$theme = $cfg['USER_INITIAL_THEME']; 
    3535 
    3636$tpl -> assign( 
    3737        array( 
    3838                        'TR_ADMIN_I18N_PAGE_TITLE' => tr('VHCS - Admin/Internationalization'), 
    39                         'THEME_COLOR_PATH' => "../themes/$theme_color", 
     39                        'THEME_COLOR_PATH' => "../themes/$theme", 
    4040                        'THEME_CHARSET' => tr('encoding'), 
    4141                        'ISP_LOGO' => get_logo($_SESSION['user_id']), 
     
    8080SQL_QUERY; 
    8181 
    82                                $rs = exec_query($sql, $query, array($user_id, $user_lang, $theme_color)); 
     82                        $rs = exec_query($sql, $query, array($user_id, $user_lang, $theme)); 
    8383                        } 
    8484                        else { 
     
    118118                if (!($file_type === "application/octet-stream")){ 
    119119                        set_page_message(tr('You can upload only text files!')); 
    120                         echo $file_type; 
    121120                        return; 
    122121                } 
     
    130129                        } 
    131130                        $table = fgets($fd, 4096); 
    132                         $table = explode("=", trim($table)); 
     131                        $table = explode(" = ", trim($table)); 
    133132                        if ($table[0] != "vhcs_table") { 
    134133                                set_page_message(tr('Can not read vhcs language file!')); 
     
    139138                        $tables = $sql->MetaTables(); 
    140139                        $nlang = count($tables); 
    141                         $lang_update = 0
     140                        $lang_update = false
    142141 
    143142                        $i = 0; 
     
    145144                                $data = $tables[$i]; 
    146145                                if ($data == $lang_table) { 
    147                                         $lang_update = 1
     146                                        $lang_update = true
    148147                                } 
    149148                                $i++; 
    150                         } while ($lang_update == 1 OR $i >= $nlang); 
    151  
    152                         clearstatcache(); 
     149                        } while ($lang_update === false AND $i < $nlang); 
     150 
     151                        reset($tables); 
    153152                        if (file_exists($file)) { 
    154153                                $fd = fopen($file, "r"); 
     
    159158                                } 
    160159 
    161                                 //      clean up table if this is language update 
    162                                 $sql->Execute("DROP TABLE IF EXISTS `$lang_table`;"); 
     160                                if ($lang_update === true) { 
     161                                        // clean up table if this is language update 
     162                                        $sql->Execute("DROP TABLE IF EXISTS `$lang_table`;"); 
     163                                } 
    163164 
    164165                                $sql->Execute("CREATE TABLE `$lang_table` ( 
     
    173174                                        $buffer_id    = fgets($fd, 4096); 
    174175                                        $buffer_id    = explode("=", trim($buffer_id)); 
    175                                         $orig_string  = @$buffer_id[0]
    176                                         $trans_string = html_entity_decode(@$buffer_id[1]); 
     176                                        $orig_string  = trim(@$buffer_id[0])
     177                                        $trans_string = trim(@$buffer_id[1]); 
    177178 
    178179                                        $query = "INSERT INTO `$lang_table` (msgid,msgstr) VALUES (?, ?)"; 
  • trunk/gui/tools/pma/config.inc.php

    r365 r368  
    4747$cfg['Servers'][$i]['history']                  = 'pma_history'; 
    4848/* Name of the Server displayed */ 
    49 $cfg['Servers'][$i]['verbose']                  = 'mysql.myserver.com'; 
     49/*$cfg['Servers'][$i]['verbose']                        = 'mysql.myserver.com';*/ // reactivate if domain is set in SETUP 
    5050 
    5151/* 
  • trunk/language-files/czech/vhcs2.4.8-czech

    r366 r368  
    1 vhcs_table = Englis
    2 vhcs_language = English 
    3 vhcs_languageSetlocaleValue = en_GB 
     1vhcs_table = Czec
     2vhcs_language = Česky 
     3vhcs_languageSetlocaleValue = cs_CZ 
    44encoding = UTF-8 
    55do not exist = neexistuje 
    6 Has IP address that can not be managed from the destination reseller !<br>This user can not be moved! = 
    7 Has unlimited rights for a <b> = 
    8 is exceeding limits for a <b> = 
    9 you are logged now as = jsi přihlášen jako 
     6Has IP address that can not be managed from the destination reseller !<br>This user can not be moved! = Tohoto uživatele nelze přesunout, protože jeho IP adresa nemůže být spravována cílovým partnerem. 
     7Has unlimited rights for a <b> = Má neomezená práva pro <b> 
     8is exceeding limits for a <b> = přesahuje limit pro <b> 
     9you are logged now as = jste přihlášen jako 
    1010(Ex. domain-of-your-choice.com) = (vaše.domena.cz) 
    11 (e.g. EUR) = 
    12 (usually named backup_YYY_MM_DD.tar) = 
     11(e.g. EUR) = (např. EUR) 
     12(usually named backup_YYY_MM_DD.tar) = (obvykle se jménem zaloha_RRRR_MM_DD.tar) 
    1313[New] = [Nový] 
    1414[Re] = [Re] 
    15 * denotes mandatory field. = 
    16 </b> Address !<br>Edit reseller aborted! = 
    17 </b> amount, present on the system! = 
    18 </b> in a destination reseller,<br> = 
    19 </b> In a destination reseller,<br> = 
    20 </b> records on the system! = 
    21 </b> records, present on the system! = 
    22 </b> Service !<br> = 
    23 </b> Service can not be disabled !<br>There is <b> = 
     15* denotes mandatory field. = * označuje povinnou položku. 
     16</b> Address !<br>Edit reseller aborted! = </b> Chybná adresa!<br>Úprava partnera byla zrušena. 
     17</b> amount, present on the system! = </b> částka vyskytující se v systému! 
     18</b> in a destination reseller,<br> = </b> u cílového partnera,<br> 
     19</b> In a destination reseller,<br> = </b> U cílového partnera,<br> 
     20</b> records on the system! = </b> záznamů v systému! 
     21</b> records, present on the system! = </b> záznamů vyskytujících se v systému! 
     22</b> Service !<br> = </b> Služba!<br> 
     23</b> Service can not be disabled !<br>There is <b> = </b> Službu nelze deaktivovat.<br>Závisí na ní <b> 
    2424</b> Service can not be limited !<br>specified number is smaller then <b> = </b> Service can not be limited !<br>specified number is smaller than <b> 
    2525</b> Service can not be limited !<br>Specified number is smaller then <b> = </b> Service can not be limited !<br>Specified number is smaller than <b> 
     
    35353 = 3 
    36364 = 4 
    37 Access your files through the web interface = 
    38 Access your mail through the web interface = 
    39 Account name = 
     37Access your files through the web interface = Přístup k vaším souborům přes web rozhraní 
     38Access your mail through the web interface = Přístup k vaší poště přes web rozhraní 
     39Account name = Název účtu 
    4040Action = 
    4141Activationlink valid (minutes) = 
    4242Active = 
    43 Add = 
     43Add = Přidat 
    4444Add admin = Přidat administrátora 
    45 Add alias = 
    46 Add Cronjob = 
    47 Add domain alias = 
    48 Add existing user = 
    49 Add FTP user = 
     45Add alias = Přidat alias 
     46Add Cronjob = Přidat úlohu 
     47Add domain alias = Přidat alias domény 
     48Add existing user = Přidat existujícího uživatele 
     49Add FTP user = Přidat uživatele FTP 
    5050Add group = Přidat skupinu 
    5151Add hosting plan = Přidat hostingový plán 
    52 Add mail user = 
    53 Add mail users = 
    54 Add new button = 
    55 Add new IP = 
    56 Add new protected area = 
    57 Add new user hosting plan = 
     52Add mail user = Přidat uživatele pošty 
     53Add mail users = Přidat uživatele pošty 
     54Add new button = Nové tlačítko 
     55Add new IP = Přidat novou IP 
     56Add new protected area = Přidat chráněnou zónu 
     57Add new user hosting plan = Přidat uživatelský plán hostingu 
    5858Add On A Domain = 
    59 Add other domains to this account = 
    60 Add plan = 
     59Add other domains to this account = Přidat k účtu další domény 
     60Add plan = Přidat plán 
    6161Add reseller = 
    62 Add SQL database = 
    63 Add SQL user = 
    64 Add subdomain = 
     62Add SQL database = Přidat databázi SQL 
     63Add SQL user = Přidat uživatele SQL 
     64Add subdomain = Přidat subdoménu 
    6565Add to the system = 
    66 Add user = 
    67 Add/Details = 
    68 Addition in progress = 
    69 Additional data = 
     66Add user = Přidat uživatele 
     67Add/Details = Přidat/Detaily 
     68Addition in progress = Probíhá přidávání 
     69Additional data = Doplňující údaje 
    7070Admin log = 
    7171Admin Log = 
    7272Admin users = 
    73 Administrator = 
    74 Administrators = 
    75 Adminitrators list is empty! = 
     73Administrator = Administrátor 
     74Administrators = Administrátoři 
     75Adminitrators list is empty! = Seznam administrátorů je prázdný! 
    7676Alais name = 
    7777Alias = 
     
    8888Alias(es)<br><i>(-1 disabled, 0 unlimited) = 
    8989Aliases = 
    90 All = 
     90All = Vše 
    9191All closed support tickets deleted successfully! = 
    9292All in = 
     
    9696All traffic = 
    9797All users & resellers = 
    98 All users = 
     98All users = Všichni uživatelé 
    9999Already in: = 
    100 Apache logfiles = 
    101 Apache logs = 
    102 Apply changes = 
    103 Are you sure you want to change the status of domain account? = 
    104 Are you sure you want to delete = 
    105 Are you sure you want to delete this account? = 
    106 Are you sure you want to delete this order? = 
    107 Area name = 
    108 Assign = 
     100Apache logfiles = Soubory protokolů Apache 
     101Apache logs = Protokoly Apache 
     102Apply changes = Provést změny 
     103Are you sure you want to change the status of domain account? = Opravdu chcete změnit stav doménového účtu? 
     104Are you sure you want to delete = Opravdu odstranit? 
     105Are you sure you want to delete this account? = Opravdu odstranit tento účet? 
     106Are you sure you want to delete this order? = Opravdu odstranit tuto objednávku? 
     107Area name = Název zóny 
     108Assign = Přiřadit 
    109109Auto email template data updated! = 
    110 Auto respond = 
     110Auto respond = Automatická odpověď 
    111111Automatic Updates = 
    112 Available for purchasing = 
    113 Available IPs = 
     112Available for purchasing = Dostupné ke koupi 
     113Available IPs = Dostupná IP 
    114114Available VHCS updates = 
    115115Awstats = 
    116116AwStats = 
    117 Back = 
    118 Backup / Restore = 
    119 Backup = 
    120 Backup and restore = 
    121 Backup and Restore = 
    122 Backup and restore settings = 
     117Back = Zpět 
     118Backup / Restore = Záloha / Obnova 
     119Backup = Záloha 
     120Backup and restore = Záloha a obnovení 
     121Backup and Restore = Záloha a obnovení 
     122Backup and restore settings = Nastavení zálohy a obnovy 
    123123Backup archive scheduled for restoring! = 
    124124Behind the name = 
    125125Billing Settings = 
    126126Blocktime (minutes) = 
    127 Blue = 
    128 Bruteforce detection = 
    129 Button link = 
    130 Button name = 
    131 Button target = 
    132 Can not connect as MySQL administrator! = 
    133 Can Not Connect As MySQL Administrator! = 
    134 Can not open directory !<br>Please contact your administrator ! = 
    135 Can not open file! Please contact your administrator ! = 
     127Blue = Modrá 
     128Bruteforce detection = Vynucená detekce 
     129Button link = Odkaz tlačítka 
     130Button name = Jméno tlačítka 
     131Button target = Cíl tlačítka 
     132Can not connect as MySQL administrator! = Nelze se připojit jako MySQL administrátor! 
     133Can Not Connect As MySQL Administrator! = Nelze se připojit jako MySQL administrátor! 
     134Can not open directory !<br>Please contact your administrator ! = Nelze otevřít adresář! Kontaktujte administrátora! 
     135Can not open file! Please contact your administrator ! = Nelze otevřít soubor! Kontaktujte administrátora! 
    136136Can not read vhcs language file! = 
    137 Cancel = 
    138 Cancel order = 
    139 Cannot connect as MySQL administrator! = 
    140 Catch all = 
    141 Catch all account = 
    142 Catch all account scheduled for creation! = 
    143 Catch all account scheduled for deletion! = 
    144 Catch all mail account can not be created! = 
    145 CGI / Perl = 
    146 CGI support = 
    147 CGI Support: disabled = 
    148 CGI Support: enabled = 
    149 Change = 
    150 Change password = 
    151 Change personal data = 
    152 Change SQL user password = 
    153 Change user interface = 
    154 Check Out = 
    155 Choose = 
    156 Choose default language = 
    157 Choose default layout = 
    158 Choose dir = 
    159 Choose hosting plan = 
    160 Circular = 
    161 City = 
    162 Clear log = 
     137Cancel = Zrušit 
     138Cancel order = Zrušit objednávku 
     139Cannot connect as MySQL administrator! = Nedari se pripojit jako MySQL Administrator 
     140Catch all = Zachytit vše 
     141Catch all account = Všezachytávající účet 
     142Catch all account scheduled for creation! = Všezachytávající účet naplánován k vytvoření! 
     143Catch all account scheduled for deletion! = Všezachytávající účet naplánován k odtranění! 
     144Catch all mail account can not be created! = Nelze vytvořit všezachytávající účet! 
     145CGI / Perl = CGI/PERL 
     146CGI support = Podpora CGI 
     147CGI Support: disabled = Podpora CGI: vypnuta 
     148CGI Support: enabled = Podpora CGI: zapnuta 
     149Change = Nastavit 
     150Change password = Nastavit heslo 
     151Change personal data = Nastavit osobní údaje 
     152Change SQL user password = Změnit heslo pro SQL uživatele 
     153Change user interface = Nastavit uživatelské rozhraní 
     154Check Out = Zkontrolovat 
     155Choose = Vybrat 
     156Choose default language = Zvol výchozí jazyk 
     157Choose default layout = Volba výchozího rozložení 
     158Choose dir = Volba adresáře 
     159Choose hosting plan = Vybrat plán hostingu 
     160Circular = Kruhový 
     161City = Město 
     162Clear log = Vyčistit log 
    163163Click Restore button and the system will<br>restore last daily backup = 
    164 Close ticket = 
    165 Closed tickets = 
    166 Command to run: = 
    167 Company = 
    168 Continue = 
    169 Core data = 
    170 Costs = 
    171 Country = 
    172 CPU bogomips = 
    173 CPU cache = 
    174 CPU MHz = 
    175 CPU model = 
    176 CPU system Info = 
     164Close ticket = Zavřít tiket 
     165Closed tickets = Zavřené tikety 
     166Command to run: = Příkaz ke spuštění: 
     167Company = Společnost 
     168Continue = Pokračovat 
     169Core data = Zdroj dat 
     170Costs = Náklady 
     171Country = Stát 
     172CPU bogomips = CPU bogomipsy 
     173CPU cache = CPU cache 
     174CPU MHz = CPU MHz 
     175CPU model = CPU model 
     176CPU system Info = CPU systémové informace 
    177177Create catch all = 
    178178Create catch all mail account = 
    179 Created by = 
    180 Creation date = 
    181 Cronjob = 
    182 Cronjob Manager = 
    183 Cronjobs = 
    184 Currency = 
    185 Current password = 
    186 Custom Apache Logs = 
    187 Custom error page was updated! = 
    188 Custom error pages = 
    189 Custom Error Pages = 
    190 Custom menu data updated successful! = 
    191 Custom menu deleted successful! = 
    192 Custom menus = 
    193 Customer data = 
    194 Customer ID = 
    195 Customer order was removed successful! = 
    196 Customize error pages for your domain = 
     179Created by = Vytvořil 
     180Creation date = Vytvořeno dne 
     181Cronjob = Naplánovaná úloha 
     182Cronjob Manager = Správce naplánovaných úloh 
     183Cronjobs = Naplánované úlohy 
     184Currency = Měna 
     185Current password = Stávající heslo 
     186Custom Apache Logs = Uživatelské protokoly Apache 
     187Custom error page was updated! = Uživatelská chybová stránka byla změněna! 
     188Custom error pages = Uživatelské chybové stránky 
     189Custom Error Pages = Uživatelské chybové stránky 
     190Custom menu data updated successful! = Uživatelské menu úspěšně změněno! 
     191Custom menu deleted successful! = Uživatelské menu úspěšně odstraneno! 
     192Custom menus = Uživatelská menu 
     193Customer data = Údaje zákazníka 
     194Customer ID = ID zákazníka 
     195Customer order was removed successful! = Objednávka zákazníka úspěšně odstraněna! 
     196Customize error pages for your domain = Upravit chybové stránky vaší domény 
    197197D = Details 
    198 Daily backup = 
    199 Database list is empty! = 
    200 Database name = 
    201 Database user list is empty! = 
    202 Database users = 
    203 Date = 
    204 Day = 
    205 Day: = 
    206 days = 
    207 Day(s): = 
    208 default = 
    209 Default = 
    210 Default language = 
    211 Default language changed! = 
    212 delete = 
    213 Delete = 
    214 Delete all = 
    215 Delete CatchAll = 
    216 Delete from log: = 
    217 Delete order = 
    218 Deletion in progress = 
    219 Description = 
    220 Details = 
     198Daily backup = Denní záloha 
     199Database list is empty! = Seznam databází je prázdný! 
     200Database name = Název databáze 
     201Database user list is empty! = Seznam uživatelů databáze je prázdný! 
     202Database users = Uživatelé databáze 
     203Date = Datum 
     204Day = Den 
     205Day: = Den: 
     206days = Dny 
     207Day(s): = Den (Dny): 
     208default = výchozí 
     209Default = Výchozí 
     210Default language = Výchozí jazyk 
     211Default language changed! = Výchozí jazyk nastaven! 
     212delete = odstranit 
     213Delete = Odstranit 
     214Delete all = Odstranit vše 
     215Delete CatchAll = Odtranit všezachytávající 
     216Delete from log: = Odstranit z protokolu: 
     217Delete order = Odstranit objednávku 
     218Deletion in progress = Probíhá odstraňování 
     219Description = Popis 
     220Details = Detaily 
    221221Direction download today backup = 
    222 Directories = 
    223 Directory listing = 
    224 Directory mount point = 
    225 Directory tree = 
    226 Directory tree<br>mount point = 
    227 Disable = 
    228 disabled = 
    229 Disabled = 
     222Directories = Adresáře 
     223Directory listing = Výpis adresáře 
     224Directory mount point = Přípojný bod adresáře 
     225Directory tree = Adresářový strom 
     226Directory tree<br>mount point = Adresářový strom<br>Přípojný bod 
     227Disable = Vypnout 
     228disabled = vypnuto 
     229Disabled = Vypnuto 
    230230Disk [MB]<br><i>(0 unlimited) = 
    231 Disk = 
    232 Disk in MB = 
     231Disk = Disk 
     232Disk in MB = Disk v MB 
    233233Disk limit [Mb]<br><i>(0 unlimited)</i> = 
    234234Disk limit [MB]<br><i>(0 unlimited)</i> = 
    235 Disk usage = 
    236 Disk<br>usage = 
    237 Domain = 
    238 Domain account = 
    239 Domain alias = 
     235Disk usage = Využití disku 
     236Disk<br>usage = Disk<br>Využití 
     237Domain = Doména 
     238Domain account = Doménový účet 
     239Domain alias = Doménový alias 
    240240Domain alias added for termination! = 
    241 Domain alias added! = 
    242 Domain alias errors = 
     241Domain alias added! = Doménové alias přidán! 
     242Domain alias errors = Chyba doménového aliasu 
    243243Domain alias limit expired! = 
    244244Domain alias modified! = 
    245245Domain alias not added for termination! = 
    246 Domain alias not added! = 
     246Domain alias not added! = Doménový alias nebyl přidán! 
    247247Domain alias not modified! = 
    248248Domain alias you are trying to remove has email accounts !<br>First remove them! = 
     
    268268Domains = 
    269269Domains per page = 
    270 Done = 
     270Done = Hotovo 
    271271DOWN = 
    272272Download the only one file in this directory = 
    273 E-mail = 
    274 Edit = 
     273E-mail = E-mail 
     274Edit = Editovat 
    275275Edit admin = 
    276 Edit button = 
    277 Edit Cronjob = 
    278 Edit Domain = 
    279 Edit domain alias = 
    280 Edit email account = 
    281 Edit error page = 
    282 Edit FTP user = 
     276Edit button = Editovat tlačítko 
     277Edit Cronjob = Editovat ulohu 
     278Edit Domain =  Editovat doménu 
     279Edit domain alias = Editovat doménový alias 
     280Edit email account = Editovat emailový učet 
     281Edit error page = Editovat chybovou stránku 
     282Edit FTP user = Editovat ftp užívatele 
    283283Edit hosting plan = 
    284284Edit mail auto responder = 
     
    287287Edit reseller aborted! = 
    288288Edit user = 
    289 Email = 
    290 Email account not founded! = 
    291 Email Accounts = 
    292 Email and FTP accounts = 
     289Email = Email 
     290Email account not founded! = E-mailový účet nenalezen! 
     291Email Accounts = E-mailové účty 
     292Email and FTP accounts = E-mailové a FTP účty 
    293293Email forward = 
    294294Email marketing = 
    295 Email setup = 
     295Email setup = Nastavení emailu 
    296296Email Updated = 
    297297Email Updated! = 
    298298Empty data or wrong field! = 
    299 Empty list = 
    300 Empty List = 
    301 Enable = 
     299Empty list = Prázdný seznam 
     300Empty List = Prázdný Seznam 
     301Enable = Zapnout 
    302302Enable mail auto responder = 
    303 enabled = 
    304 Enabled = 
     303enabled = zapnuto 
     304Enabled = Zapnuto 
    305305Enduser level = 
    306306Enter Address = 
     
    308308Entered passwords differ! = 
    309309Entered passwords does not match! = 
    310 Error = 
    311 Error 401 (unauthorized) = 
    312 Error 403 (forbidden) = 
    313 Error 404 (not found) = 
    314 Error 500 (internal server error) = 
    315 Error pages = 
     310Error = Chyba 
     311Error 401 (unauthorized) = Chyba 401 (neautorizováno) 
     312Error 403 (forbidden) = Chyba 403 (zakázáno) 
     313Error 404 (not found) = Chyba 404 (nenalezeno) 
     314Error 500 (internal server error) =  Chyba 500 (vnitřní serverová chyba) 
     315Error pages = Chyba stránky 
    316316Error we have domain that use this IP! = 
    317317Error we have reseller that use this IP! = 
    318318ERROR: Password not send = 
    319319ERROR: Security code was not correct! = 
    320 ERROR: Unknown user = 
    321 everything = 
    322 Execute = 
     320ERROR: Unknown user = CHYBA: Neznámý uživatel 
     321everything = všechno 
     322Execute = Spusť, proveď 
    323323Execute query = 
    324324Execute SQL query = 
    325325Existing SQL users = 
    326 Export = 
     326Export = Exportuj 
    327327Extras = 
    328 Fax = 
    329 Feature = 
    330 Filemanager = 
     328Fax = Fax 
     329Feature = Funkce 
     330Filemanager = Souborový manažer 
    331331Filesystem system Info = 
    332 First name = 
    333 Footer = 
    334 Forward = 
     332First name = Křestní jméno 
     333Footer = Patička 
     334Forward = Přesměruj 
    335335Forward list is empty! = 
    336336Forward mail = 
    337337Forward to = 
    338 Forward to URL = 
     338Forward to URL = Přesměrovat na URL 
    339339Free = 
    340340free of charge = 
    341 From = 
     341From = Od 
    342342From reseller = 
    343343Fronpage extensions = 
    344 FTP = 
    345 FTP account = 
    346 FTP account added! = 
     344FTP = FTP 
     345FTP account = FTP účet 
     346FTP account added! = FTP účet byl přidán! 
    347347FTP account already exists! = 
    348348FTP account data updated! = 
     
    350350FTP account limit<br><i>(0 unlimited)</i> = 
    351351FTP account(s)<br><i>(0 unlimited) = 
    352 FTP accounts = 
    353 FTP Accounts = 
     352FTP accounts = FTP účty 
     353FTP Accounts = FTP účty 
    354354FTP accounts limit expired! = 
    355 FTP list is empty! = 
     355FTP list is empty! = FTP seznam je prázdný! 
    356356FTP traffic = 
    357 FTP users = 
     357FTP users = FTP uživatel 
    358358FTP<br>traffic = 
    359359FTPs total = 
    360 General information = 
    361 General settings = 
     360General information = Obecné informace 
     361General settings = Obecné nastavení 
    362362Get it at = 
    363 Go back = 
    364 Green = 
     363Go back = Jdi zpět 
     364Green = Zelená 
    365365Group - Usermanagement = 
    366 Group = 
    367 Group already exist ! = 
     366Group = Skupina 
     367Group already exist ! = Skupina už existuje! 
    368368Group auth = 
    369 Group members = 
    370 Group name = 
    371 Groups = 
     369Group members = Členové skupiny 
     370Group name = Jméno skupiny 
     371Groups = Skupiny 
    372372Has unlimited rights for a <b> = 
    373373Havent you got more than one name? = Haven't you got more than one name? 
    374 HDD = 
    375 Header = 
    376 hide aliases = 
     374HDD = HDD 
     375Header = Hlavička 
     376hide aliases = Skrýt aliasy 
    377377High = 
    378 Host = 
     378Host = Host 
    379379Hosting details = 
    380380Hosting plan = 
     
    387387Hosting plans available for update = 
    388388Hosting plans not found! = 
    389 Hour = 
    390 hours = 
    391 Hour(s): = 
    392 ID = 
     389Hour = Hodina 
     390hours = hodiny 
     391Hour(s): = Hodina(y): 
     392ID = ID 
    393393If you want to limit the reseller, fist you must limit its users !<br> = 
    394394(To avoid abuse, we ask you to write the combination of letters on the above picture into the field "Security code") = 
    395395Implementation URL = 
    396396In front the name = 
    397 In this mode only administrators can login = 
     397In this mode only administrators can login = V tomto módu se mohou přihlásit pouze administrátoři 
    398398Incorrect alias range or syntax! = Incorrect <i>domain alias</i> range or syntax! 
    399399Incorrect city syntax! = Incorrect <i>city</i> syntax! 
     
    440440Installed layouts = 
    441441Invalid Mail Localpart Format used! = 
    442 IP = 
     442IP = IP 
    443443IP was deleted! = 
    444 JSP = 
    445 Kernel = 
    446 Kill session = 
    447 Label = 
    448 Language = 
     444JSP = Java Server Pages 
     445Kernel = Jádro 
     446Kill session = Ukončit relaci 
     447Label = Popis 
     448Language = Jazyk 
    449449Language file = 
    450450Language was removed! = 
    451 Last access = 
    452 Last name = 
     451Last access = Poslední přístup 
     452Last name = Příjmení 
    453453Last reply = 
    454454Layout = 
    455455Layout name = 
    456456Layout settings = 
    457 Level = 
    458 Limit = 
    459 Load = 
    460 Log is empty! = 
     457Level = Kolo 
     458Limit = Limit 
     459Load = Načíst 
     460Log is empty! = Log je prázdný! 
    461461Login = 
    462 Login with your FTP account = 
     462Login with your FTP account = Přihlásit pod FTP účtem 
    463463Logo file = 
    464464Logo upload = 
    465 Logout = 
     465Logout = Odhlásit 
    466466Lost password = 
    467467Lostpassword = 
     
    469469Lostpw email setup = 
    470470Lostpw link = 
    471 Activation E-Mail = 
     471Activation E-Mail = Aktivační e-mail 
    472472Password E-Mail = 
    473473Low = 
    474 minutes = 
     474minutes = minuty 
    475475Mail = e-mail 
    476 Mail account = 
    477 Mail account already exists! = 
     476Mail account = poštovní účet 
     477Mail account already exists! = Poštovní účet již existuje! 
    478478Mail account errors = 
    479479Mail account limit<br><i>(0 unlimited)</i> = 
     
    482482Mail account scheduler for modification! = 
    483483Mail account(s)<br><i>(0 unlimited) = 
    484 Mail accounts = 
     484Mail accounts = Poštovní účty 
    485485Mail accounts limit expired! = 
    486486Mail accounts list = 
     
    488488Mail forward list empty! = 
    489489Mail forward list error! = 
    490 Mail in = 
    491 Mail out = 
     490Mail in = Mail přijat 
     491Mail out = Mail odeslán 
    492492Mail users = 
    493493Mail were updated successfully! = 
     
    535535Memory system info = 
    536536Menu button = 
    537 Message = 
    538 Message subject = 
    539 Message template = 
     537Message = Zpráva 
     538Message subject = Předmět zprávy 
     539Message template = Šablona zprávy 
    540540Message template info = 
    541 Message was send! = 
    542 Message was sent. = 
    543 Messages = 
     541Message was send! = Zpráva byla poslána! 
     542Message was sent. = Zpráva byla poslána. 
     543Messages = Zprávy 
    544544Messages translated = 
    545545Minute(s): = 
    546546Missing or incorrect data input! = 
    547547Missing or wrong data! = 
    548 Modification in progress = 
     548Modification in progress = Probíhají změny 
    549549Modify = 
    550550Month = 
     
    561561new = 
    562562New = 
    563 New IP was added! = 
    564 New language installed! = 
     563New IP was added! = Byla přidána nová IP! 
     564New language installed! = Byl nainstalován nový jazyk! 
    565565New order = 
    566566New ticket = 
    567567New VHCS update i