Seite 1 von 1

Leeres Feld im ACP > Allg. > Konfiguration

Verfasst: 18.06.2008 22:02
von lirumlarum
Hallo,

beim installieren eines Mods muss ich irgendwann mal ein Part vergessen haben (wahrscheinlich in der lang_admin.php oder so).

Das ganze sieht so aus:

[ externes Bild ]

Der ensprechende Teil in der board_confog_body.tpl sieht so aus:

Code: Alles auswählen

	
	<!-- Start add - Fully integrated shoutbox MOD -->
	<tr> 
   		<td class="row1">{L_PRUNE_SHOUTS}<br /><span class="gensmall">{L_PRUNE_SHOUTS_EXPLAIN}</span></td> 
   		<td class="row2"><input type="text" size="6" maxlength="6" name="prune_shouts" value="{PRUNE_SHOUTS}" /></td> 
	</tr>
<!-- End add - Fully integrated shoutbox MOD -->
	
	
	
	
	<tr>
		<td class="row1">{L_REPORT_EMAIL}</td>
		<td class="row2"><input type="radio" name="report_email" value="1" {REPORT_EMAIL_YES} /> {L_YES}&nbsp;&nbsp;<input type="radio" name="report_email" value="0" {REPORT_EMAIL_NO} /> {L_NO}</td>
	</tr>
	
	
	
	
	
	
	<tr>
		<th class="thHead" colspan="2">{L_ENABLE_NOTIFY_ADMIN_NEW_REG_TITLE}</th>
	</tr>
	<tr>
		<td class="row1">{L_ENABLE_NOTIFY_ADMIN_NEW_REG}<br /><span class="gensmall">{L_ENABLE_NOTIFY_ADMIN_NEW_REG_EXPLAIN}</span></td>
		<td class="row2"><input type="radio" name="notify_admin_new_reg" value="1" {NOTIFY_ADMIN_NEW_REG_YES} /> {L_YES}&nbsp;&nbsp;<input type="radio" name="notify_admin_new_reg" value="0" {NOTIFY_ADMIN_NEW_REG_NO} /> {L_NO}</td>
	</tr>
	<tr>
		<td class="row1">{L_ENABLE_NOTIFY_ADMIN_NEW_REG_USERID}<br /><span class="gensmall">{L_ENABLE_NOTIFY_ADMIN_NEW_REG_USERID_EXPLAIN}</span></td>
		<td class="row2"><input class="post" type="text" maxlength="255" name="notify_admin_new_reg_userid" value="{NOTIFY_ADMIN_NEW_REG_USERID}" /></td>
	</tr>
	
	
	
	
	
	
	
	<tr>
		<th class="thHead" colspan="2">{L_COOKIE_SETTINGS}</th>

Hat jemand ne Idee was da fehlt?

Re: Leeres Feld im ACP > Allg. > Konfiguration

Verfasst: 18.06.2008 22:46
von cYbercOsmOnauT
lirumlarum hat geschrieben:beim installieren eines Mods muss ich irgendwann mal ein Part vergessen haben (wahrscheinlich in der lang_admin.php oder so).
Wie Du schon richtest geraten hast. Es fehlen die Texte in der lang_admin.php.

Grüße,
Tekin

Re: Leeres Feld im ACP > Allg. > Konfiguration

Verfasst: 23.06.2008 12:08
von lirumlarum
cYbercOsmOnauT hat geschrieben:Wie Du schon richtest geraten hast. Es fehlen die Texte in der lang_admin.php.
Wie kann ich herausfinden welche Texte in der lang_admin.php fehlen bzw. bei welchem Mod ich da weas vergessen hab?

Hilft dir da vielleicht der Screenshot weiter?

Re: Leeres Feld im ACP > Allg. > Konfiguration

Verfasst: 23.06.2008 12:26
von gloriosa
Hallo,
das
lirumlarum hat geschrieben:bei welchem Mod ich da weas vergessen hab?
ist doch recht einfach mit
lirumlarum hat geschrieben:

Code: Alles auswählen

   <tr>
      <th class="thHead" colspan="2">{L_ENABLE_NOTIFY_ADMIN_NEW_REG_TITLE}</th>
   </tr>
   <tr>
      <td class="row1">{L_ENABLE_NOTIFY_ADMIN_NEW_REG}<br /><span class="gensmall">{L_ENABLE_NOTIFY_ADMIN_NEW_REG_EXPLAIN}</span></td>
      <td class="row2"><input type="radio" name="notify_admin_new_reg" value="1" {NOTIFY_ADMIN_NEW_REG_YES} /> {L_YES}&nbsp;&nbsp;<input type="radio" name="notify_admin_new_reg" value="0" {NOTIFY_ADMIN_NEW_REG_NO} /> {L_NO}</td>
   </tr>
   <tr>
      <td class="row1">{L_ENABLE_NOTIFY_ADMIN_NEW_REG_USERID}<br /><span class="gensmall">{L_ENABLE_NOTIFY_ADMIN_NEW_REG_USERID_EXPLAIN}</span></td>
      <td class="row2"><input class="post" type="text" maxlength="255" name="notify_admin_new_reg_userid" value="{NOTIFY_ADMIN_NEW_REG_USERID}" /></td>
   </tr> 

zu beantworten ! :oops:

Verfasst: 24.06.2008 11:05
von lirumlarum
Danke!