mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-06 15:45:34 +02:00
Merge pull request #1942 from nickvergessen/ticket/11996
[ticket/11996] Add explanation how to correctly remove and update an extension
This commit is contained in:
commit
ad2d1fcbcb
@ -55,5 +55,22 @@
|
|||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<table class="table1">
|
||||||
|
<tr>
|
||||||
|
<th>{L_EXTENSION_UPDATE_HEADLINE}</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="row3">{L_EXTENSION_UPDATE_EXPLAIN}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{L_EXTENSION_REMOVE_HEADLINE}</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="row3">{L_EXTENSION_REMOVE_EXPLAIN}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
<!-- INCLUDE overall_footer.html -->
|
<!-- INCLUDE overall_footer.html -->
|
||||||
|
@ -67,6 +67,19 @@ $lang = array_merge($lang, array(
|
|||||||
'EXTENSION_NAME' => 'Extension Name',
|
'EXTENSION_NAME' => 'Extension Name',
|
||||||
'EXTENSION_ACTIONS' => 'Actions',
|
'EXTENSION_ACTIONS' => 'Actions',
|
||||||
'EXTENSION_OPTIONS' => 'Options',
|
'EXTENSION_OPTIONS' => 'Options',
|
||||||
|
'EXTENSION_UPDATE_HEADLINE' => 'Updating an extension',
|
||||||
|
'EXTENSION_UPDATE_EXPLAIN' => '<ol>
|
||||||
|
<li>Disable the extension</li>
|
||||||
|
<li>Delete the extension’s files from the filesystem</li>
|
||||||
|
<li>Upload the new files</li>
|
||||||
|
<li>Enable the extension</li>
|
||||||
|
</ol>',
|
||||||
|
'EXTENSION_REMOVE_HEADLINE' => 'Completly removing an extension from your board',
|
||||||
|
'EXTENSION_REMOVE_EXPLAIN' => '<ol>
|
||||||
|
<li>Disable the extension</li>
|
||||||
|
<li>Delete the extension’s data</li>
|
||||||
|
<li>Delete the extension’s files from the filesystem</li>
|
||||||
|
</ol>',
|
||||||
|
|
||||||
'EXTENSION_DELETE_DATA_CONFIRM' => 'Are you sure that you wish to delete the data associated with “%s”?<br /><br />This removes all of its data and settings and cannot be undone!',
|
'EXTENSION_DELETE_DATA_CONFIRM' => 'Are you sure that you wish to delete the data associated with “%s”?<br /><br />This removes all of its data and settings and cannot be undone!',
|
||||||
'EXTENSION_DISABLE_CONFIRM' => 'Are you sure that you wish to disable the “%s” extension?',
|
'EXTENSION_DISABLE_CONFIRM' => 'Are you sure that you wish to disable the “%s” extension?',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user