Changeset 60


Ignore:
Timestamp:
Aug 26, 2007, 3:45:47 PM (17 years ago)
Author:
george
Message:

Odstraneni hacku a carek z textu podminek sluzby

Location:
minimanager
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • minimanager/lang/csCZ.php

    r59 r60  
    8989        'recovery_mail_sent' => 'Email s heslem byla odeslána.',
    9090        'read_terms' => 'Prosím ujistìte se, ¾e rozumíte a souhlasíte s podmínkami pou¾ivání v rámci kterých bude tento úèet vytvoøen',
    91         'terms' => 'Podmínky slu¾by',
     91        'terms' => 'Podminky sluzby',
    9292        'error_terms' => 'Podmínky slu¾by nebyly odsouhlaseny',
    9393        'i_agree' => 'Soulasím',
     
    429429        'socket_bonus' => 'Bonus pouzdra',  // zkontrolovat
    430430        'potion' => 'Lektvar',
    431         'scroll' => 'Scitek',
     431        'scroll' => 'Svitek',
    432432        'bandage' => 'Obvaz',
    433433        'healthstone' => 'Kámen zdraví',
  • minimanager/mail_templates

    • Property svn:ignore set to
      test.php
  • minimanager/mail_templates/mail_welcome.tpl

    r5 r60  
    1 Subject: Welcome to <title>.
     1Subject: Vítejte na <title>.
    22
    3 Thank you for registering in our Mangos server at <a href="http://<base_url>"><base_url></a>.
     3Dìkujeme vám za registraci na našem Mangos serveru na adrese <a href="http://<base_url>"><base_url></a>.
    44
    5 <b>Your account details are</b>:
    6 Username: <username>
    7 Password: <password>
     5<b>Detajly vašeho úètu jsou</b>:
     6Jméno: <username>
     7Heslo: <password>
    88
    9 For more information please visit our website.
     9Pro více informací navšitve naše webové stránky.
    1010-------------------------------
    11 (Do not reply to this message)
     11(Neodpovídejte na tento email)
  • minimanager/mail_templates/recover_password.tpl

    r5 r60  
    1 Subject: Password recovery requested.
     1Subject: Požadavek na obnovu hesla.
    22
    3 Hello <username>,
     3Ahoj <username>,
    44
    5 You have requested to be assigned with a new password at <a href="http://<base_url>"><base_url></a>.
    6 If you didn't this request you should just ignore this message.
     5Požádali jste o nové pøiøazení hesla na serveru <a href="http://<base_url>"><base_url></a>.
     6Pokud jste tak neuèinili, mìli by jste ignorovat tento email.
    77
    8 Your new password is: <password>
    9 Use this link to activate the change: <a href="http://<activate_link>">Click me.</a>
    10 Make sure to change your password as soon as you are logged.
     8Vaše nové heslo je: <password>
     9Použijte tento odkaz pro potvrzení zmìny: <a href="http://<activate_link>">Klikni na mì.</a>
     10Doporuèujeme zmìnit si heslo jakmile se pøipojíte do hry.
    1111
    12 For more information please visit our website.
    13 ------------------------------
    14 (Do not reply to this message)
     12Pro více informací navšitve naše webové stránky.
     13-------------------------------
     14(Neodpovídejte na tento email)
  • minimanager/mail_templates/terms.tpl

    r19 r60  
    1 Terms of Service\n\n
     1Podminky sluzby:\n\n
    22
    3 TO BE FILLED !!!
     3* Problemy hlaste do diskusniho fora nebo si vytvorte ticket(zadanku) pres cerveny otaznik v hlavnim panelu.
     4* Po GM nezadejte zadne penize, veci, level, teleport, duely, aj.
     5* Pokud zjistite, ze opakovane shazujete server nejakou akci, nahlaste problem do fora.
     6* Doporucujeme sledovat aktuality na webovych strankach.
     7
     8
  • minimanager/register.php

    r19 r60  
    209209               
    210210        $terms = "<textarea rows=\'18\' cols=\'80\' readonly=\'readonly\'>";
     211        $terms_text = '';
    211212        $fp = fopen("mail_templates/terms.tpl", 'r') or die (error("Couldn't Open terms.tpl File!"));
    212         while (!feof($fp)) $terms .= fgets($fp, 1024);
     213        while (!feof($fp)) $terms_text .= fgets($fp, 1024);
    213214        fclose($fp);
    214         $terms .= "</textarea>";
     215        //$terms .= htmlentities($terms_text, ENT_QUOTES, 'cp1252')."</textarea>";
     216        $terms .= $terms_text."</textarea>";
     217       
    215218
    216219                makebutton($lang_register['create_acc_button'], "javascript:answerBox('{$lang_register['terms']}<br />$terms', 'javascript:do_submit_data()')",150);
Note: See TracChangeset for help on using the changeset viewer.