mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Fix a couple of hard-coded strings in the templates
git-svn-id: file:///svn/phpbb/trunk@6240 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
f8c6379915
commit
4af44652ac
3 changed files with 3 additions and 3 deletions
|
@ -120,7 +120,7 @@ $lang = array_merge($lang, array(
|
|||
'FORUM_ADDRESS' => 'Forum address',
|
||||
'FORUM_ADDRESS_EXPLAIN' => 'This is the http address of your former forum',
|
||||
'FORUM_PATH' => 'Forum path',
|
||||
'FORUM_PATH_EXPLAIN' => 'This is the relative <strong>to phpBB main directory</strong> server path to your former forum',
|
||||
'FORUM_PATH_EXPLAIN' => 'This is the <strong>relative</strong> path on disk to your former forum from the <strong>root of your phpBB install</strong>',
|
||||
'FOUND' => 'Found',
|
||||
'FTP_CONFIG' => 'Transfer config by FTP',
|
||||
'FTP_CONFIG_EXPLAIN' => 'phpBB has detected the presence of the FTP module on this server. You may attempt to install your config.php via this if you wish. You will need to supply the information listed below. Remember your username and password are those to your server! (ask your hosting provider for details if you are unsure what these are)',
|
||||
|
|
|
@ -194,7 +194,7 @@ function checkForm()
|
|||
<td class="row2">
|
||||
<!-- BEGIN to_recipient -->
|
||||
<span class="genmed">
|
||||
<a href="{to_recipient.U_VIEW}"><!-- IF to_recipient.COLOUR --><b style="color:#{to_recipient.COLOUR}"><!-- ELSE --><b<!-- IF to_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->><!-- ENDIF -->{to_recipient.NAME}</b></a> </span><!-- IF not S_EDIT_POST --><input class="post" type="submit" name="remove_{to_recipient.TYPE}[{to_recipient.UG_ID}]" value="Remove" /> <!-- ENDIF -->
|
||||
<a href="{to_recipient.U_VIEW}"><!-- IF to_recipient.COLOUR --><b style="color:#{to_recipient.COLOUR}"><!-- ELSE --><b<!-- IF to_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->><!-- ENDIF -->{to_recipient.NAME}</b></a> </span><!-- IF not S_EDIT_POST --><input class="post" type="submit" name="remove_{to_recipient.TYPE}[{to_recipient.UG_ID}]" value="{L_REMOVE}" /> <!-- ENDIF -->
|
||||
<!-- BEGINELSE -->
|
||||
<span class="genmed">{L_NONE}</span>
|
||||
<!-- END to_recipient -->
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<input type="hidden" name="marked_msg_id[]" value="{MSG_ID}" />
|
||||
<input type="hidden" name="cur_folder_id" value="{CUR_FOLDER_ID}" />
|
||||
<input type="hidden" name="p" value="{MSG_ID}" />
|
||||
<select name="dest_folder">{S_TO_FOLDER_OPTIONS}</select> <input class="btnlite" type="submit" name="move_pm" value="<!-- IF S_VIEW_MESSAGE -->Place Message into Folder<!-- ELSE -->Place Marked into Folder<!-- ENDIF -->" />
|
||||
<select name="dest_folder">{S_TO_FOLDER_OPTIONS}</select> <input class="btnlite" type="submit" name="move_pm" value="{L_MOVE_TO_FOLDER}" />
|
||||
</form>
|
||||
<!-- ELSE -->
|
||||
<form name="sortmsg" method="post" action="{S_PM_ACTION}" style="margin:0px">
|
||||
|
|
Loading…
Add table
Reference in a new issue