diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-10-08 19:04:49 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-10-08 19:04:49 +0000 |
commit | 0b2aaae28bb341a38864eda320e135826a0568e4 (patch) | |
tree | 3eb7fb1c71612582f5dfa3bbeb062e6d26cb12aa /phpBB/adm | |
parent | f8be2a133bccc6860dd5531dbbfc068a5a3fa699 (diff) | |
download | forums-0b2aaae28bb341a38864eda320e135826a0568e4.tar forums-0b2aaae28bb341a38864eda320e135826a0568e4.tar.gz forums-0b2aaae28bb341a38864eda320e135826a0568e4.tar.bz2 forums-0b2aaae28bb341a38864eda320e135826a0568e4.tar.xz forums-0b2aaae28bb341a38864eda320e135826a0568e4.zip |
- forum image being an additional image instead of replacing forum indicators
- reasons fixes
git-svn-id: file:///svn/phpbb/trunk@6470 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/acp_forums.html | 1 | ||||
-rw-r--r-- | phpBB/adm/style/acp_reasons.html | 24 |
2 files changed, 22 insertions, 3 deletions
diff --git a/phpBB/adm/style/acp_forums.html b/phpBB/adm/style/acp_forums.html index adcc5d18ef..63ed7cb883 100644 --- a/phpBB/adm/style/acp_forums.html +++ b/phpBB/adm/style/acp_forums.html @@ -351,6 +351,7 @@ <tr> <td style="width: 5%;">{forums.FOLDER_IMAGE}</td> <td> + <!-- IF forums.FORUM_IMAGE --><div style="float: left;">{forums.FORUM_IMAGE}</div><!-- ENDIF --> <strong><!-- IF forums.S_FORUM_LINK -->{forums.FORUM_NAME}<!-- ELSE --><a href="{forums.U_FORUM}">{forums.FORUM_NAME}</a><!-- ENDIF --></strong> <!-- IF forums.FORUM_DESCRIPTION --><br /><span>{forums.FORUM_DESCRIPTION}</span><!-- ENDIF --> <!-- IF forums.S_FORUM_POST --><br /><br /><span>{L_TOPICS}: <b>{forums.FORUM_TOPICS}</b> / {L_POSTS}: <b>{forums.FORUM_POSTS}</b></span><!-- ENDIF --> diff --git a/phpBB/adm/style/acp_reasons.html b/phpBB/adm/style/acp_reasons.html index 8648fb18c5..be987dd294 100644 --- a/phpBB/adm/style/acp_reasons.html +++ b/phpBB/adm/style/acp_reasons.html @@ -17,19 +17,37 @@ </div> <!-- ENDIF --> + <!-- IF not S_TRANSLATED --> + <h3>{L_AVAILABLE_TITLES}</h3> + + <p>{S_AVAILABLE_TITLES}</p> + <!-- ENDIF --> + <form id="acp_reasons" method="post" action="{U_ACTION}"> <fieldset> <legend>{L_TITLE}</legend> - <p><!-- IF S_TRANSLATED -->{L_IS_TRANSLATED}<!-- ELSE -->{L_IS_NOT_TRANSLATED}<!-- ENDIF --></p> + <p><!-- IF S_TRANSLATED -->{L_IS_TRANSLATED_EXPLAIN}<!-- ELSE -->{L_IS_NOT_TRANSLATED_EXPLAIN}<!-- ENDIF --></p> <dl> <dt><label for="reason_title">{L_REASON_TITLE}:</label></dt> <dd><input name="reason_title" type="text" id="reason_title" value="{REASON_TITLE}" /></dd> </dl> + <!-- IF S_TRANSLATED --> + <dl> + <dt>{L_REASON_TITLE_TRANSLATED}</dt> + <dd>{TRANSLATED_TITLE}</dd> + </dl> + <!-- ENDIF --> <dl> <dt><label for="reason_description">{L_REASON_DESCRIPTION}:</label></dt> <dd><textarea name="reason_description" id="reason_description" rows="8">{REASON_DESCRIPTION}</textarea></dd> </dl> + <!-- IF S_TRANSLATED --> + <dl> + <dt>{L_REASON_DESC_TRANSLATED}</dt> + <dd>{TRANSLATED_DESCRIPTION}</dd> + </dl> + <!-- ENDIF --> </fieldset> <fieldset class="submit-buttons"> @@ -67,11 +85,11 @@ <td style="width: 80px; text-align: right; white-space: nowrap;"> <!-- IF reasons.S_FIRST_ROW && not reasons.S_LAST_ROW --> {ICON_MOVE_UP_DISABLED} - <a href="{reasons.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a> + <a href="{reasons.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a> <!-- ELSEIF not reasons.S_FIRST_ROW && not reasons.S_LAST_ROW--> <a href="{reasons.U_MOVE_UP}">{ICON_MOVE_UP}</a> <a href="{reasons.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a> - <!-- ELSEIF reasons.S_LAST_ROW && not reasons.S_FIRST_ROW --> + <!-- ELSEIF reasons.S_LAST_ROW && not reasons.S_FIRST_ROW --> <a href="{reasons.U_MOVE_UP}">{ICON_MOVE_UP}</a> {ICON_MOVE_DOWN_DISABLED} <!-- ENDIF --> |