Kullanıcı Adı Şifre Beni Hatırla    Yeni Üye Hesabı Aç
  

Renk Seçimi :          
En altSayfa: 1
BAŞLIK: İnsan Mısın? Modu
4 Ay, 3 Hafta önce #150
V.Yılmaz
Karma: 4
Site Ekibi
Gönderiler: 149
graph
İnsan Mısın? Modu _GEN_PRINT Konunun PDF dosyasını yaratmak için tıklayınız (yeni pencerede açılır).
Sources/Register.php de
Bul:
Kod:

// Are they under age, and under age users are banned?
if (!empty($modSettings['coppaAge']) && empty($modSettings['coppaType']) && !isset($_POST['skip_coppa']))
 


Üstüne ekle.
Kod:

// ARE YOU HUMAN?
if (isset($_POST['human']))
{
if($_POST['human'] == 0) {
fatal_lang_error('are_you_bot_yes', false);
} elseif($_POST['human'] == 1) {
fatal_lang_error('are_you_bot_unsure', false);
} elseif($_POST['human'] != 2) {
fatal_lang_error('are_you_bot_unsure', false);
}
} else {
fatal_lang_error('are_you_bot_yes', false);
}
 


tema/Register.template.php de
bul
Kod:

// Are there age restrictions in place?
if (!empty($modSettings['coppaAge']))


Üstüne ekle.
Kod:

// ARE YOU HUMAN?
echo '<tr valign="top">
<td width="40%" align="top">
<b>', $txt['are_you_human'], ':</b>
</td>
<td>
<select name="human" id="human" tabindex="', $context['tabindex']++, '" class="select">
<option value="0">', $txt['are_you_human_no'], '</option>
<option value="1">', $txt['are_you_human_unsure'], '</option>
<option value="2">', $txt['are_you_human_yes'], '</option>
</select>
</td>
</tr>';
// END OF ARE YOU HUMAN? MOD


languages/Modifications.turkish.php de en alttaki soru işaretinin üzerine ekle
Kod:

$txt['are_you_human'] = 'Üye Olmak İstediğinize Emin Misiniz?';
$txt['are_you_human_no'] = 'Hayır';
$txt['are_you_human_yes'] = 'Evet';
$txt['are_you_human_unsure'] = 'Emin Değilim';
$txt['are_you_bot_unsure'] = 'Kayıt olup Olmamak İstediğinizden Emin Misiniz,Karar Veriniz';
$txt['are_you_bot_yes'] = 'Robotlar hadee yallah başka kapıya';



Bu kadar Türkçe olan yerleri kafana göre değiştirebilirsin ..
Kodu girin   
Forum kodları ve simge butonları gösterilmemesine karşın, hala kullanılabilirler.
Offline
En üstSayfa: 1
Yetkililer: V.Yılmaz