Changeset 1040

Show
Ignore:
Timestamp:
03/08/08 12:09:47 (6 months ago)
Author:
rats
Message:

* Fixed: Error in adding Domain (missing $httpd_gid)
* Updated: Hungarian
* Fixed #1089: (freeBSD) delete doble copy of apache conf in freebsd
* Fixed #1090: (freeBSD) modified install docu in fbsd
* Fixed #1091: (freeBSD) fix conf fbsd in courier
* Fixed #1092: (freeBSD) fix conf fbsd in proftpd

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r1039 r1040  
    11ispCP ω 1.0.0 Changelog 
    22~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     3 
     42008-03-08 Benedikt Heintel 
     5        - ENGINE: 
     6                * Fixed: Error in adding Domain (missing $httpd_gid) 
     7        - LANGAUGES: 
     8                * Updated: Hungarian 
     9        - DISTS: 
     10                * Fixed #1089: (freeBSD) delete doble copy of apache conf in freebsd 
     11                * Fixed #1090: (freeBSD) modified install docu in fbsd 
     12                * Fixed #1091: (freeBSD) fix conf fbsd in courier 
     13                * Fixed #1092: (freeBSD) fix conf fbsd in proftpd 
    314 
    4152008-03-07 Benedikt Heintel 
     
    2334                * Updated: Update script; Update to RC3 
    2435        - DISTS: 
    25                 * Fixed #1074: config Dists opensuse - wrong makefile 
     36                * Fixed #1074: (opensuse) config Dists opensuse - wrong makefile 
    2637 
    27382008-03-03 Benedikt Heintel 
  • trunk/configs/dists/freebsd/apache/BSDmakefile

    r1009 r1040  
    1212        cp ./httpd.conf ./working/ispcp.conf 
    1313        cp ./fastcgi.conf ./working/fastcgi_ispcp.conf 
    14         cp ./00_master.conf $(SYSTEM_CONF)/apache 
    1514        cp ./00_master.conf $(SYSTEM_CONF)/apache22 
    1615        cp ./httpd.conf $(SYSTEM_CONF)/apache22 
  • trunk/configs/dists/freebsd/courier/BSDmakefile

    r1033 r1040  
    1515        cp -R ./working $(SYSTEM_CONF)/courier 
    1616        cp ./userdb $(ROOT_COURIER_CONF) 
    17         chmod 600 $(ROOT_CONF)/userdb 
    18         cp ./sasldb2 $(ROOT_CONF) 
     17        chmod 600 $(ROOT_COURIER_CONF)/userdb 
     18        cp ./sasldb2 $(ROOT_COURIER_CONF) 
    1919 
    2020uninstall: 
  • trunk/configs/dists/freebsd/postfix/BSDmakefile

    r1009 r1040  
    66        $(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)/postfix 
    77        $(SYSTEM_MAKE_DIRS) $(ROOT_POSTFIX_CONF) 
    8 
     8 
    99#       MTA Configuration Files; 
    10 # 
    1110        cp ./main.cf $(SYSTEM_CONF)/postfix/main.cf 
    1211        cp ./master.cf $(SYSTEM_CONF)/postfix/master.cf 
    13 
     12 
    1413#       MTA Configuration Directories; 
    15 # 
    1614        cp -R ./backup $(SYSTEM_CONF)/postfix 
    1715        cp -R ./parts $(SYSTEM_CONF)/postfix 
     
    2018        cp -R ./ispcp $(ROOT_POSTFIX_CONF) 
    2119 
    22         cp ./postfix.rc $(ROOT_CONF)/postfix.rc 
    23         chmod 700 $(ROOT_CONF)/postfix.rc 
    24         chown root:wheel $(ROOT_CONF)/postfix.rc 
     20#       DISABLE: Should be Installed by postfix package/ports; 
     21#       @TODO: Delete, if not needed 
     22
     23#       cp ./postfix.rc $(ROOT_CONF)/postfix.rc 
     24#       chmod 700 $(ROOT_CONF)/postfix.rc 
     25#       chown root:wheel $(ROOT_CONF)/postfix.rc 
    2526 
    2627uninstall: 
  • trunk/docs/FreeBSD/INSTALL

    r1039 r1040  
    3636./docs/FreeBSD/freebsd-packages 
    3737 
     38The configuration is costumize for using with apache 2.2.x version using suexec 
     39module enable. 
    3840================================================================================ 
    39413) Introduction 
     
    146148 
    147149Q.- How can I prevent websites using more than their bandwidth limit to stop working? 
    148 A.- If you have installed the apache2-mod-cband (available for etch and lenny/sid) 
    149      all you need to do is: 
    150        # a2enmod cband 
    151      note that you might want to review /etc/apache2/mods-available/cband.conf 
    152      to disable the /cband-status and /cband-status-me handlers. 
     150A.- Please install and configure apache2 mod_cband package/port 
    153151 
    154152Please check http://www.isp-control.net for any questions not answered in this file. 
  • trunk/engine/ispcp-dmn-mngr

    r1033 r1040  
    22702270 
    22712271    if (!defined($dmn_data) || $dmn_data eq '') { 
    2272  
    22732272        push_el(\@main::el, 'dmn_change_httpd_file_data()', 'ERROR: Undefined Input Data...'); 
    2274  
    22752273        return -1; 
    2276  
    22772274    } 
    22782275 
    22792276        my $dmn_id = @$dmn_data[0]; 
    2280  
    22812277        my $dmn_name = @$dmn_data[1]; 
    22822278 
    22832279        my $root_dir = $main::cfg{'ROOT_DIR'}; 
    2284  
    22852280        my $www_dir = $main::cfg{'APACHE_WWW_DIR'}; 
    2286  
    22872281        my $pear_dir = $main::cfg{'PEAR_DIR'}; 
    2288  
    22892282        my $starter_dir = $main::cfg{'PHP_STARTER_DIR'}; 
    2290  
    22912283        my $conf_dir = $main::cfg{'CONF_DIR'}; 
     2284        my $httpd_gid = $main::cfg{'APACHE_GROUP'}; 
    22922285 
    22932286        my ($sys_uid, $sys_gid) = get_dmn_suexec_user($dmn_id); 
    2294  
    22952287        my $suexec_user_pref = $main::cfg{'APACHE_SUEXEC_USER_PREF'}; 
    2296  
    22972288        my $sys_user = "$suexec_user_pref$sys_uid"; 
    2298  
    22992289        my $sys_group = "$suexec_user_pref$sys_gid"; 
    23002290 
     
    23022292        # Starter-Scripts for FastCGI 
    23032293        # 
    2304  
    23052294        if( ! -d "$starter_dir/$dmn_name") { 
    2306                 $rs = make_dir( 
    2307                                                 "$starter_dir/$dmn_name", 
    2308                                                 $sys_user, 
    2309                                                 $sys_group, 
    2310                                                 0755 
    2311                                                 ); 
    2312  
     2295                $rs = make_dir("$starter_dir/$dmn_name", $sys_user, $sys_group, 0755); 
    23132296                return $rs if ($rs != 0); 
    23142297        } 
     
    23172300    # PHP4 and PHP5 Directory for usual user 
    23182301    # 
    2319  
    23202302    if (! -d "$starter_dir/$dmn_name/php4") { 
    2321  
    2322         $rs = make_dir( 
    2323                                         "$starter_dir/$dmn_name/php4", 
    2324                                         $sys_user, 
    2325                                         $sys_group, 
    2326                                         0750 
    2327                                         ); 
    2328  
     2303        $rs = make_dir("$starter_dir/$dmn_name/php4", $sys_user, $sys_group, 0750); 
    23292304        return $rs if ($rs != 0); 
    23302305    } 
    23312306 
    23322307    if (! -d "$starter_dir/$dmn_name/php5") { 
    2333  
    2334         $rs = make_dir( 
    2335                                         "$starter_dir/$dmn_name/php5", 
    2336                                         $sys_user, 
    2337                                         $sys_group, 
    2338                                         0750 
    2339                                         ); 
    2340  
     2308        $rs = make_dir("$starter_dir/$dmn_name/php5", $sys_user, $sys_group, 0750); 
    23412309        return $rs if ($rs != 0); 
    23422310        } 
     
    23452313    # AWStats Directory (if static AWStats is enabled) 
    23462314    # 
    2347  
    23482315        if ($main::cfg{'AWSTATS_ACTIVE'} eq 'yes' && $main::cfg{'AWSTATS_MODE'} eq 1) { 
    23492316                if (! -d "$www_dir/$dmn_name/statistics") { 
    2350                     $rs = make_dir( 
    2351                                     "$www_dir/$dmn_name/statistics", 
    2352                                     $sys_user, 
    2353                                     $sys_group, 
    2354                                     0755 
    2355                                     ); 
    2356  
     2317                    $rs = make_dir("$www_dir/$dmn_name/statistics", $sys_user, $sys_group, 0755); 
    23572318                return $rs if ($rs != 0); 
    23582319        } 
     
    23602321 
    23612322        # 
    2362         # Domain WWW directories; 
     2323        # Domain WWW directories 
    23632324        # 
    2364  
    23652325        if(! -d "$www_dir/$dmn_name/phptmp") { 
    2366  
    23672326                $rs = make_dir("$www_dir/$dmn_name/phptmp", $sys_user, $sys_group, 0770); 
    2368  
    23692327                return $rs if ($rs != 0); 
    23702328        } 
     2329        if(! -d "$www_dir/$dmn_name/backups") { 
     2330                $rs = make_dir("$www_dir/$dmn_name/backups", $sys_user, $httpd_gid, 0770); 
     2331                return $rs if ($rs != 0); 
     2332        } 
    23712333 
    23722334        # 
    2373         # Default error pages; 
     2335        # Default error pages 
    23742336        # 
    2375  
    2376         $rs = make_dir("$www_dir/$dmn_name/backups", $sys_user, $httpd_gid, 0770); 
    2377         return $rs if ($rs != 0); 
    2378  
    23792337        $rs = make_dir("$www_dir/$dmn_name/errors", $sys_user, $sys_group, 0775); 
    23802338        return $rs if ($rs != 0); 
     
    24082366        $rs = sys_command("$main::cfg{'CMD_CP'} -p $root_dir/gui/errordocs/inc/errordocs.css $www_dir/$dmn_name/errors/inc/"); 
    24092367        return $rs if ($rs != 0); 
     2368 
    24102369        $rs = setfmode("$www_dir/$dmn_name/errors/inc/error_top.jpg", $sys_user, $sys_group, 0644); 
    24112370        return $rs if ($rs != 0); 
     
    24222381        # php.ini for the domain 
    24232382        # 
    2424  
    24252383        my $ini_tpl = undef; 
    24262384        my $ini_cfg_dir = "$main::cfg{'CONF_DIR'}/fcgi/parts/php4"; 
     
    24382396        return $rs if ($rs != 0); 
    24392397 
    2440         ($rs, $rdata) = store_file( 
    2441                                                                 "$starter_dir/$dmn_name/php4/php.ini", 
    2442                                                                 $cfg, 
    2443                                                                 $sys_user, 
    2444                                                                 $sys_group, 
    2445                                                                 0640 
    2446                                                                 ); 
    2447  
     2398        ($rs, $rdata) = store_file("$starter_dir/$dmn_name/php4/php.ini", $cfg, $sys_user, $sys_group, 0640); 
    24482399        return $rs if ($rs != 0); 
    24492400 
     
    24642415        return $rs if ($rs != 0); 
    24652416 
    2466         ($rs, $rdata) = store_file( 
    2467                                                                 "$starter_dir/$dmn_name/php5/php.ini", 
    2468                                                                 $cfg, 
    2469                                                                 $sys_user, 
    2470                                                                 $sys_group, 
    2471                                                                 0640 
    2472                                                                 ); 
    2473  
     2417        ($rs, $rdata) = store_file("$starter_dir/$dmn_name/php5/php.ini", $cfg, $sys_user, $sys_group, 0640); 
    24742418        return $rs if ($rs != 0); 
    24752419 
     
    24952439                return $rs if ($rs != 0); 
    24962440 
    2497                 ($rs, $rdata) = store_file( 
    2498                                                                         "$starter_dir/$dmn_name/php5-fcgi-starter", 
    2499                                                                         $cfg, 
    2500                                                                         $sys_user, 
    2501                                                                         $sys_group, 
    2502                                                                         0750 
    2503                                                                         ); 
    2504  
     2441                ($rs, $rdata) = store_file("$starter_dir/$dmn_name/php5-fcgi-starter", $cfg, $sys_user, $sys_group, 0750); 
    25052442                return $rs if ($rs != 0); 
    25062443        } 
     
    25212458                return $rs if ($rs != 0); 
    25222459 
    2523                 ($rs, $rdata) = store_file( 
    2524                                                                         "$starter_dir/$dmn_name/php4-fcgi-starter", 
    2525                                                                         $cfg, 
    2526                                                                         $sys_user, 
    2527                                                                         $sys_group, 
    2528                                                                         0750 
    2529                                                                         ); 
     2460                ($rs, $rdata) = store_file("$starter_dir/$dmn_name/php4-fcgi-starter", $cfg, $sys_user, $sys_group,     0750); 
    25302461 
    25312462                return $rs if ($rs != 0); 
     
    25352466 
    25362467    push_el(\@main::el, 'dmn_change_httpd_file_data()', 'Ending...'); 
    2537  
    25382468    return 0; 
    2539  
    25402469} 
    25412470 
  • trunk/language-files/hu_HU.po

    r1026 r1040  
    11# 
    2 #, fuzzy 
    32msgid "" 
    43msgstr "" 
     
    65"Report-Msgid-Bugs-To: \n" 
    76"POT-Creation-Date: 2008-03-01 18:49+0100\n" 
    8 "PO-Revision-Date: 2007-07-06 16:03-0500\n" 
    9 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     7"PO-Revision-Date: 2008-03-08 06:54+0100\n" 
     8"Last-Translator: Tibor KATONA <cateye@cateye.hu>\n" 
    109"Language-Team: Hungarian <hu_HU@li.org>\n" 
    1110"MIME-Version: 1.0\n" 
     
    2221msgstr "Hungarian" 
    2322 
    24 #, fuzzy 
    2523msgid "ispCP Omega a Virtual Hosting Control System" 
    26 msgstr "ispCP - Virtuális Szolgáltatás Irányító Rendszer" 
     24msgstr "ispCP Omega Virtuális Szolgáltatás Irányító Rendszer" 
    2725 
    2826msgid "Administrator login" 
    29 msgstr "
     27msgstr "Adminisztrátor bejelentkezés
    3028 
    3129msgid "Login" 
     
    3937 
    4038msgid "Please enter your login information" 
    41 msgstr "
     39msgstr "Kérlek, írd be felhasználói azonosítódat
    4240 
    4341msgid "Secure Connection" 
    44 msgstr "
     42msgstr "Biztonságos kapcsolat
    4543 
    4644msgid "Normal Connection" 
    47 msgstr "
     45msgstr "Normál kapcsolat
    4846 
    4947msgid "Lost password" 
     
    5149 
    5250msgid "Retrieving lost passwords is currently not possible" 
    53 msgstr "
     51msgstr "Elvesztett jelszót visszanyerni jelenleg nem lehetséges
    5452 
    5553msgid "ispCP - Virtual Hosting Control System" 
     
    5755 
    5856msgid "Password sent" 
    59 msgstr "
     57msgstr "Jelszó elküldve
    6058 
    6159msgid "ERROR: Password was not sent" 
    62 msgstr "
     60msgstr "HIBA: Jelszó elküldése sikertelen
    6361 
    6462msgid "The password was requested" 
     
    8078msgstr "Biztonsági kód" 
    8179 
    82 msgid "" 
    83 "(To avoid abuse, we ask you to write the combination of letters on the above " 
    84 "picture into the field \"Security code\")" 
     80msgid "(To avoid abuse, we ask you to write the combination of letters on the above picture into the field \"Security code\")" 
    8581msgstr "" 
    8682 
     
    9591 
    9692msgid "Incorrect username length or syntax!" 
    97 msgstr "
     93msgstr "Hibás felhasználói név formátum!
    9894 
    9995msgid "Incorrect password length or syntax!" 
    100 msgstr "
     96msgstr "Hibás jelszó formátum!
    10197 
    10298msgid "Entered passwords do not match!" 
    103 msgstr "
     99msgstr "A begépelt jelszó nem eggyezik!
    104100 
    105101msgid "Incorrect email length or syntax!" 
    106 msgstr "
     102msgstr "Hibás email formátum!
    107103 
    108104msgid "This user name already exist!" 
     
    113109 
    114110msgid "Passwords don't match!" 
    115 msgstr "
     111msgstr "Jelszó nem eggyezik!
    116112 
    117113msgid "Add admin" 
     
    122118 
    123119msgid "Repeat password" 
    124 msgstr "
     120msgstr "Jelszó újra
    125121 
    126122msgid "Email" 
    127 msgstr "
     123msgstr "Email
    128124 
    129125msgid "Additional data" 
     
    136132msgstr "Keresztnév" 
    137133 
    138 #, fuzzy 
    139134msgid "Gender" 
    140 msgstr "Fejléc" 
    141  
    142 #, fuzzy 
     135msgstr "Nem" 
     136 
    143137msgid "Male" 
    144 msgstr "Email" 
    145  
    146 #, fuzzy 
     138msgstr "Férfi" 
     139 
    147140msgid "Female" 
    148 msgstr "Webes levelezés
     141msgstr "
    149142 
    150143msgid "Unknown" 
     
    173166 
    174167msgid "Fax" 
    175 msgstr "
     168msgstr "Fax
    176169 
    177170msgid "Add" 
     
    179172 
    180173msgid "ispCP - Admin/Manage users/Add reseller" 
    181 msgstr "
     174msgstr "ispCP - Admin/Felhasználók kezelése/Viszonteladó hozzáadása
    182175 
    183176msgid "Reseller IP list is empty!" 
     
    199192msgstr "Viszonteladó" 
    200193 
    201 #, fuzzy 
    202194msgid "Incorrect email syntax!" 
    203 msgstr "Hibás max email szám vagy hibás formátum!" 
    204  
    205 #, fuzzy 
     195msgstr "Hibás email szintax!" 
     196 
    206197msgid "Incorrect domains limit!" 
    207 msgstr "Hibás domain név formátum!" 
    208  
    209 #, fuzzy 
     198msgstr "Hibás domain korlát!" 
     199 
    210200msgid "Incorrect subdomains limit!" 
    211 msgstr "Hibás max aldomain szám vagy hibás formátum!" 
    212  
    213 #, fuzzy 
     201msgstr "Hibás subdomain korlát!" 
     202 
    214203msgid "Incorrect aliases limit!" 
    215 msgstr "Hibás bemenõ adat!" 
    216  
    217 #, fuzzy 
     204msgstr "Hibás alias korlát!" 
     205 
    218206msgid "Incorrect FTP accounts limit!" 
    219 msgstr "Hibáx max FTP szám vagy hibás formátum!" 
    220  
    221 #, fuzzy 
     207msgstr "Hibás FTP felhasználó korlát!" 
     208 
    222209msgid "Incorrect mail accounts limit!" 
    223 msgstr "Hibás max email szám vagy hibás formátum!" 
    224  
    225 #, fuzzy 
     210msgstr "Hibás email felhasználó korlát!" 
     211 
    226212msgid "Incorrect SQL databases limit!" 
    227 msgstr "Hibás max SQL adatbázis szám vagy hibás formátum!" 
    228  
    229 #, fuzzy 
     213msgstr "Hibás SQL adatbázis korlát!" 
     214 
    230215msgid "Incorrect SQL users limit!" 
    231 msgstr "Hibás max SQL felhasználó szám vagy hibás formátum!" 
    232  
    233 #, fuzzy 
     216msgstr "Hibás SQL felhasználó korlát!" 
     217 
    234218msgid "Incorrect traffic limit!" 
    235 msgstr "Hibás max forgalom mennyiség vagy hibás formátum!" 
    236  
    237 #, fuzzy 
     219msgstr "Hibás forgalom korlát!" 
     220 
    238221msgid "Incorrect disk quota limit!" 
    239 msgstr "Hibás bemenõ adat!" 
     222msgstr "Hibás diszk korlát!" 
    240223 
    241224msgid "You must assign at least one IP number for a reseller!" 
     
    245228msgstr "Viszonteladó hozzáadása" 
    246229 
    247 #, fuzzy 
    248230msgid "Domains limit<br><i>(0 unlimited)</i>" 
    249 msgstr "Diszk limit [MB]<br><i>(0 korlátlan)</i>" 
    250  
    251 #, fuzzy 
     231msgstr "Domain korlát<br><i>(0 korlátlan)</i>" 
     232 
    252233msgid "Subdomains limit<br><i>(-1 disabled, 0 unlimited)</i>" 
    253 msgstr "SQL felhasználó limit<br><i>(-1 tiltva, 0 korlátlan)</i>" 
    254  
    255 #, fuzzy 
     234msgstr "Subdomain korlát<br><i>(-1 tiltva, 0 korlátlan)</i>" 
     235 
    256236msgid "Aliases limit<br><i>(-1 disabled, 0 unlimited)</i>" 
    257 msgstr "SQL felhasználó limit<br><i>(-1 tiltva, 0 korlátlan)</i>" 
     237msgstr "Alias korlát<br><i>(-1 tiltva, 0 korlátlan)</i>" 
    258238 
    259239msgid "Mail accounts limit<br><i>(-1 disabled, 0 unlimited)</i>" 
    260 msgstr "
     240msgstr "Mail hozzáférés korlát<br><i>(-1 tiltva, 0 korlátlan)</i>
    261241 
    262242msgid "FTP accounts limit<br><i>(-1 disabled, 0 unlimited)</i>" 
    263 msgstr "
     243msgstr "FTP hozzáférés korlát<br><i>(-1 tiltva, 0 korlátlan)</i>
    264244 
    265245msgid "SQL databases limit<br><i>(-1 disabled, 0 unlimited)</i>" 
     
    276256 
    277257msgid "PHP" 
    278 msgstr "
     258msgstr "PHP
    279259 
    280260msgid "CGI / Perl" 
    281 msgstr "
     261msgstr "CGI / Perl
    282262 
    283263msgid "JSP" 
    284 msgstr "
     264msgstr "JSP
    285265 
    286266msgid "SSI" 
    287 msgstr "
     267msgstr "SSI
    288268 
    289269msgid "Frontpage extensions" 
    290 msgstr "
     270msgstr "Frontpage kiterjesztések
    291271 
    292272msgid "Backup and restore" 
     
    309289 
    310290msgid "AwStats" 
    311 msgstr "
     291msgstr "AwStats
    312292 
    313293msgid "Logo upload" 
     
    334314#, php-format 
    335315msgid "%s deleted the full admin log!" 
    336 msgstr "
     316msgstr "torolve az egesz admin naplo!
    337317 
    338318#, php-format 
    339319msgid "%s deleted the admin log older than two weeks!" 
    340 msgstr "
     320msgstr "ket hetnel regebbi naplo torolve!
    341321 
    342322#, php-format 
    343323msgid "%s deleted the admin log older than one month!" 
    344 msgstr "
     324msgstr "egy honapnal regebbi admin naplo torolve!
    345325 
    346326#, php-format 
    347327msgid "%s deleted the admin log older than three months!" 
    348 msgstr "
     328msgstr "harom honapnal regebbi admin naplo torolve!
    349329 
    350330#, php-format 
    351331msgid "%s deleted the admin log older than six months!" 
    352 msgstr "
     332msgstr "hat honapnal regebbi admin naplo torolve!
    353333 
    354334#, php-format 
    355335msgid "%s deleted the admin log older than one year!" 
    356 msgstr "
     336msgstr "egy evnel regebbi admin naplo torolve!
    357337 
    358338msgid "Invalid time period!" 
    359 msgstr "
     339msgstr "Helytelen időciklus
    360340 
    361341msgid "Admin Log" 
     
    372352 
    373353msgid "Delete from log:" 
    374 msgstr " Törlés a naplóból
     354msgstr "Törlés a naplóból:
    375355 
    376356msgid "everything" 
    377 msgstr "minden
     357msgstr "mindent
    378358 
    379359msgid "older than 2 weeks" 
    380 msgstr "
     360msgstr "két hétnél régebbi
    381361 
    382362msgid "older than 1 month" 
    383 msgstr "
     363msgstr "egy hónapnál régebbi
    384364 
    385365msgid "older than 3 months" 
    386 msgstr "
     366msgstr "három hónapnál régebbi
    387367 
    388368msgid "older than 6 months" 
    389 msgstr "
     369msgstr "hat hónapnál régebbi
    390370 
    391371msgid "older than 12 months" 
    392 msgstr "
     372msgstr "egy évnél régebbi
    393373 
    394374msgid "ispCP - Administrator/Add hosting plan" 
     
    405385 
    406386msgid "Max subdomains<br><i>(-1 disabled, 0 unlimited)</i>" 
    407 msgstr "
     387msgstr "Max subdomainek<br><i>(-1 tiltva, 0 korlátlan)</i>
    408388 
    409389msgid "Max aliases<br><i>(-1 disabled, 0 unlimited)</i>" 
    410 msgstr "
     390msgstr "Max aliasek
    411391 
    412392msgid "Billing Settings" 
     
    438418 
    439419msgid "Incorrect template name length!" 
    440 msgstr "
     420msgstr "Helytelen sablon hosszúság!
    441421 
    442422msgid "Incorrect template description length!" 
    443 msgstr "
     423msgstr "Helytelen sablon tulajdonság hosszúság!
    444424 
    445425msgid "Incorrect price syntax!" 
    446 msgstr "
     426msgstr "Helytelen ár formátum
    447427 
    448428msgid "Incorrect setup fee syntax!" 
    449 msgstr "
     429msgstr "Hibás telepítési formátum!
    450430 
    451431msgid "Hosting plan with entered name already exists!" 
     
    459439 
    460440msgid "Passwords do not match!" 
    461 msgstr "
     441msgstr "Jelszó nem eggyezik!
    462442 
    463443msgid "The current password is wrong!" 
     
    495475 
    496476msgid "ispCP - Admin - Email Marketing" 
    497 msgstr "
     477msgstr "ispCP - Admin - Email Marketing
    498478 
    499479msgid "Please specify a message subject!" 
     
    513493 
    514494msgid "Email marketing" 
    515 msgstr "
     495msgstr "Email marketing
    516496 
    517497msgid "Send message to" 
     
    582562 
    583563msgid "Administrator level" 
    584 msgstr "
     564msgstr "Adminisztrátori szint
    585565 
    586566msgid "Reseller level" 
     
    614594msgstr "Gomb szerkesztése" 
    615595 
    616 #, fuzzy 
    617596msgid "Database updates" 
    618 msgstr "Adatbázis felhasználók" 
    619  
    620 #, fuzzy 
     597msgstr "Adatbázis frissítések" 
     598 
    621599msgid "Available database updates" 
    622 msgstr "Rendelkezésre álló ispCP frissítések
     600msgstr "Elérhető adatbázis frissítés
    623601 
    624602msgid "Update" 
     
    628606msgstr "Részletek módosítása" 
    629607 
    630 #, fuzzy 
    631608msgid "No database updates available" 
    632 msgstr "Nincs új ispCP verzió" 
    633  
    634 #, fuzzy 
     609msgstr "Nincs elérhető adatbázis frissítés" 
     610 
    635611msgid "New Database update is now available" 
    636 msgstr "Új ispCP verzió most elérhetõ" 
    637  
    638 #, fuzzy 
     612msgstr "Új adatbázis frissítés most elérhető" 
     613 
    639614msgid "Do you want to execute the Updates now?" 
    640 msgstr "Biztos törölni akarod ezt a rendelést?" 
     615msgstr "Biztos végrehajtod a frissítést most?" 
    641616 
    642617msgid "You cannot delete the last active IP address!" 
    643 msgstr "
     618msgstr "Nem törölheted az utolsó aktív IP címet!
    644619 
    645620msgid "Error: we have a domain using this IP!" 
    646 msgstr "
     621msgstr "HIBA: Egy domain használja ezt az IP címet!
    647622 
    648623msgid "Error: we have a reseller using this IP!" 
    649 msgstr "
     624msgstr "HIBA: Egy viszonteladó használja ezt az IP címet!
    650625 
    651626msgid "IP was deleted!" 
     
    671646 
    672647msgid "Domain IP" 
    673 msgstr "
     648msgstr "Domain IP
    674649 
    675650msgid "Status" 
     
    760735msgstr "Nap" 
    761736 
    762 #, fuzzy 
    763737msgid "ispCP - Admin/Manage users/Edit Administrator" 
    764 msgstr "ispCP - Admin/Felhasználók/Felhasználó módosítása" 
     738msgstr "ispCP - Admin/ felhasználók/Adminisztrátor módosítása" 
    765739 
    766740msgid "User session was killed!" 
     
    774748 
    775749msgid "Send new login data" 
    776 msgstr "" 
    777  
    778 #, fuzzy 
     750msgstr "Új bejelentkezési információ küldése" 
     751 
    779752msgid "Generate password" 
    780 msgstr "Jelszó módosítás" 
     753msgstr "Jelszó generálás" 
    781754 
    782755msgid "ispCP - Admin/Manage users/Edit Reseller" 
    783756msgstr "ispCP - Admin/Felhasználók/Viszonteladó módosítása" 
    784757 
    785 #, fuzzy 
    786758msgid "SQL databases limit is <i>disabled</i>!" 
    787 msgstr "SQL adatbázis limit<br><i>(-1 tiltva, 0 korlátlan)</i>" 
    788  
    789 #, fuzzy 
     759msgstr "SQL adatbázis limit <i>kikapcsolva</i>!" 
     760 
    790761msgid "SQL users limit is <i>disabled</i>!" 
    791 msgstr "SQL felhasználó limit<br><i>(-1 tiltva, 0 korlátlan)</i>
     762msgstr "SQL felhasználó limit <i>kikapcsolva</i>!
    792763 
    793764msgid "Domains" 
     
    795766 
    796767#, php-format 
    797 msgid "" 
    798 "Inconsistency between current_als_cnt and actual alias count: %1$d != %2$d" 
     768msgid "Inconsistency between current_als_cnt and actual alias count: %1$d != %2$d" 
    799769msgstr "" 
    800770 
     
    806776 
    807777#, php-format 
    808 msgid "" 
    809 "Inconsistency between current_ftp_cnt and actual ftp count: %1$d != %2$d" 
     778msgid "Inconsistency between current_ftp_cnt and actual ftp count: %1$d != %2$d" 
    810779msgstr "" 
    811780 
    812781msgid "FTP" 
    813 msgstr "
     782msgstr "FTP
    814783 
    815784msgid "SQL Databases" 
    816 msgstr "
     785msgstr "SQL adatbázisok
    817786 
    818787msgid "SQL Users" 
    819 msgstr "" 
    820  
    821 #, fuzzy 
     788msgstr "SQL felhasználók" 
     789 
    822790msgid "Web Traffic" 
    823 msgstr "Web forgalom" 
    824  
    825 #, fuzzy 
     791msgstr "Web Forgalom" 
     792 
    826793msgid "Disk storage" 
    827 msgstr "Diszk használat" 
     794msgstr "Disk használat" 
    828795 
    829796#, fuzzy 
     
    832799 
    833800#, php-format 
    834 msgid "" 
    835 "This reseller has already assigned more/higher <b>%s</b> accounts/limits " 
    836 "than the new limit you entered." 
     801msgid "This reseller has already assigned more/higher <b>%s</b> accounts/limits than the new limit you entered." 
    837802msgstr "" 
    838803 
     
    841806 
    842807#, php-format 
    843 msgid "" 
    844 "This reseller's customers are using/have more/higher <b>%s</b> accounts/" 
    845 "limits than the new limit you entered." 
    846 msgstr "" 
    847  
    848 #, php-format 
    849 msgid "" 
    850 "This reseller has customer(s) with unlimited rights for the <b>%s</b> " 
    851 "service!<br>" 
     808msgid "This reseller's customers are using/have more/higher <b>%s</b> accounts/limits than the new limit you entered." 
     809msgstr "" 
     810 
     811#, php-format 
     812msgid "This reseller has customer(s) with unlimited rights for the <b>%s</b> service!<br>" 
    852813msgstr "" 
    853814 
    854815#, fuzzy 
    855 msgid "" 
    856 "If you want to limit the reseller, you must first limit its customers!<br>" 
    857 msgstr "" 
    858 "Ha korlátozni akarod a viszonteladót, elõször be kell állítanod a " 
    859 "felhasználó szám korlátját!<br>" 
    860  
    861 #, fuzzy, php-format 
     816msgid "If you want to limit the reseller, you must first limit its customers!<br>" 
     817msgstr "Ha korlátozni akarod a viszonteladót, elõször be kell állítanod a felhasználó szám korlátját!<br>" 
     818 
     819#, php-format 
    862820msgid "This reseller has domains assigned to the <b>%s</b> address!<br>" 
    863 msgstr "Ehez a viszonteladóhoz van domain hozzárendelve<br>" 
     821msgstr "Ehez a viszonteladóhoz a következő cím van hozzárendelve <b>%s</b> address!<br>" 
    864822 
    865823msgid "Edit reseller" 
     
    867825 
    868826msgid "E-mail" 
    869 msgstr "
     827msgstr "E-mail
    870828 
    871829msgid "unlimited" 
    872830msgstr "korlátlan" 
    873831 
    874 #, fuzzy 
    875832msgid "Domains limit<br><i>((-1 disabled, 0 unlimited)</i>" 
    876 msgstr "SQL felhasználó limit<br><i>(-1 tiltva, 0 korlátlan)</i>" 
     833msgstr "Domain korlát <br><i>(-1 tiltva, 0 korlátlan)</i>" 
    877834 
    878835msgid "ispCP - Administrator/Edit hosting plan" 
     
    892849 
    893850msgid "Incorrect price. Example: 9.99" 
    894 msgstr "
     851msgstr "Helytelen összeg. Pl: 9.99
    895852 
    896853msgid "Incorrect setup fee. Example: 19.99" 
    897 msgstr "
     854msgstr "Helytelen beállítás. Pl: 19.99
    898855 
    899856msgid "Please specify a subject!" 
     
    922879 
    923880msgid "User real (first and last) name" 
    924 msgstr "
     881msgstr "Felhasználó valódi (vezeték és kereszt) neve
    925882 
    926883msgid "Message template" 
     
    967924 
    968925msgid "Show hosting plan" 
    969 msgstr "
     926msgstr "Hoszting csomag mutatása
    970927 
    971928#, php-format 
    972929msgid "You have <b>%d</b> new support questions" 
    973 msgstr "
     930msgstr "<b>%d</b> db új hibajegyed van
    974931 
    975932msgid "View" 
     
    977934 
    978935msgid "Couldn't check for updates! Website not reachable." 
    979 msgstr "
     936msgstr "Frissítések keresése sikertelen! A Honlap nem válaszolt.
    980937 
    981938msgid "New ispCP update is now available" 
     
    985942msgstr "ispCP - Admin/IP kezelése" 
    986943 
    987 #, fuzzy 
    988944msgid "Remove IP" 
    989 msgstr "Eltávolít
     945msgstr "IP törlése
    990946 
    991947msgid "New IP was added!" 
     
    1011967 
    1012968msgid "IP" 
    1013 msgstr "
     969msgstr "IP
    1014970 
    1015971msgid "Domain" 
    1016 msgstr "
     972msgstr "Domain
    1017973 
    1018974msgid "Alias" 
    1019 msgstr "
     975msgstr "Alias
    1020976 
    1021977msgid "Add new IP" 
    1022978msgstr "Új IP hozzáadása" 
    1023979 
    1024 #, fuzzy 
    1025980msgid "Are you sure you want to delete this IP: " 
    1026 msgstr "Biztos törölni akarod ezt a rendelést?" 
     981msgstr "Biztos törölni akarod ezt az IP-t?" 
    1027982 
    1028983msgid "No domain system errors" 
     
    10451000 
    10461001msgid "Domain alias errors" 
    1047 msgstr "Domain alias hibák!
     1002msgstr "Domain alias hibák
    10481003 
    10491004msgid "Subdomain errors" 
     
    10531008msgstr "Email hozzáférés hibák" 
    10541009 
    1055 #, fuzzy 
    10561010msgid "ispCP Daemon tools" 
    1057 msgstr "ispCP - Kliens/Webes Eszközök" 
    1058  
    1059 #, fuzzy 
     1011msgstr "ispCP Kliens/Webes Eszközök" 
     1012 
    10601013msgid "Execute requests" 
    1061 msgstr "Kérés végrehajtása" 
     1014msgstr "Kérések végrehajtása" 
    10621015 
    10631016#, php-format 
     
    10651018msgstr "" 
    10661019 
    1067 #, fuzzy 
    10681020msgid "Unknown domain status!" 
    1069 msgstr "ismeretlen státusz" 
    1070  
    1071 #, fuzzy 
     1021msgstr "Ismeretlen domain státusz!" 
     1022 
    10721023msgid "Unknown account type!" 
    1073 msgstr "Ismeretlen típus" 
    1074  
    1075 #, fuzzy 
     1024msgstr "Ismeretlen hozzáférés típus" 
     1025 
    10761026msgid "Invalid account id!" 
    1077 msgstr "Email hozzáférés
     1027