From 95d4e6aa97606f427f56644c03e1253aa3235382 Mon Sep 17 00:00:00 2001
From: Joas Schilling
Date: Fri, 27 Dec 2013 15:25:03 +0100
Subject: [ticket/11996] Add explanation how to correctly remove and update an
extension
See http://area51.phpbb.com/phpBB/viewtopic.php?f=81&t=44001 for more
information about the decision.
PHPBB3-11996
---
phpBB/language/en/acp/extensions.php | 21 ++++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
(limited to 'phpBB/language')
diff --git a/phpBB/language/en/acp/extensions.php b/phpBB/language/en/acp/extensions.php
index 67b34ff0c7..cbdc97b547 100644
--- a/phpBB/language/en/acp/extensions.php
+++ b/phpBB/language/en/acp/extensions.php
@@ -64,9 +64,24 @@ $lang = array_merge($lang, array(
'EXTENSION_DISABLE_SUCCESS' => 'The extension was disabled successfully',
'EXTENSION_ENABLE_SUCCESS' => 'The extension was enabled successfully',
- 'EXTENSION_NAME' => 'Extension Name',
- 'EXTENSION_ACTIONS' => 'Actions',
- 'EXTENSION_OPTIONS' => 'Options',
+ 'EXTENSION_NAME' => 'Extension Name',
+ 'EXTENSION_ACTIONS' => 'Actions',
+ 'EXTENSION_ACTIONS_EXPLAIN' => 'In order to completly remove an extension from your board, you need to perform the following 3 steps:
+
+ - Disable the extension
+ - Delete the extension’s data
+ - Delete the extension’s files from the filesystem
+
+ In order to update an extension from your board, you need to perform the following 6 steps:
+
+ - Disable the extension
+ - Delete the extension’s files from the filesystem
+ - Upload the new files
+ - Disable the board (optional but recommended)
+ - Enable the extension
+ - Enable the board
+
',
+ 'EXTENSION_OPTIONS' => 'Options',
'EXTENSION_DELETE_DATA_CONFIRM' => 'Are you sure that you wish to delete the data associated with “%s”?
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?',
--
cgit v1.2.1
From b155056cb9f72295eaae877a2335094e4cf747d8 Mon Sep 17 00:00:00 2001
From: Joas Schilling
Date: Mon, 13 Jan 2014 10:31:54 +0100
Subject: [ticket/11996] Use a table for better styling
PHPBB3-11996
---
phpBB/language/en/acp/extensions.php | 22 ++++++++++------------
1 file changed, 10 insertions(+), 12 deletions(-)
(limited to 'phpBB/language')
diff --git a/phpBB/language/en/acp/extensions.php b/phpBB/language/en/acp/extensions.php
index cbdc97b547..c024c92e61 100644
--- a/phpBB/language/en/acp/extensions.php
+++ b/phpBB/language/en/acp/extensions.php
@@ -66,22 +66,20 @@ $lang = array_merge($lang, array(
'EXTENSION_NAME' => 'Extension Name',
'EXTENSION_ACTIONS' => 'Actions',
- 'EXTENSION_ACTIONS_EXPLAIN' => 'In order to completly remove an extension from your board, you need to perform the following 3 steps:
-
+ 'EXTENSION_OPTIONS' => 'Options',
+ 'EXTENSION_UPDATE_HEADLINE' => 'Updating an extension',
+ 'EXTENSION_UPDATE_EXPLAIN' => '
- Disable the extension
- - Delete the extension’s data
- Delete the extension’s files from the filesystem
-
- In order to update an extension from your board, you need to perform the following 6 steps:
-
+ - Upload the new files
+ - Enable the extension, note that the board will be automatically disabled for this step
+
',
+ 'EXTENSION_REMOVE_HEADLINE' => 'Completly removing an extension from your board',
+ 'EXTENSION_REMOVE_EXPLAIN' => '
- Disable the extension
+ - Delete the extension’s data
- Delete the extension’s files from the filesystem
- - Upload the new files
- - Disable the board (optional but recommended)
- - Enable the extension
- - Enable the board
-
',
- 'EXTENSION_OPTIONS' => 'Options',
+
',
'EXTENSION_DELETE_DATA_CONFIRM' => 'Are you sure that you wish to delete the data associated with “%s”?
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?',
--
cgit v1.2.1
From c7f6cccdf13d6e461f212aa1fe3134a2613a4de2 Mon Sep 17 00:00:00 2001
From: Joas Schilling
Date: Mon, 3 Feb 2014 20:48:01 +0100
Subject: [ticket/11996] Remove note until we really do disable the board
PHPBB3-11996
---
phpBB/language/en/acp/extensions.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'phpBB/language')
diff --git a/phpBB/language/en/acp/extensions.php b/phpBB/language/en/acp/extensions.php
index c024c92e61..409b800ba6 100644
--- a/phpBB/language/en/acp/extensions.php
+++ b/phpBB/language/en/acp/extensions.php
@@ -72,7 +72,7 @@ $lang = array_merge($lang, array(
Disable the extension
Delete the extension’s files from the filesystem
Upload the new files
- Enable the extension, note that the board will be automatically disabled for this step
+ Enable the extension
',
'EXTENSION_REMOVE_HEADLINE' => 'Completly removing an extension from your board',
'EXTENSION_REMOVE_EXPLAIN' => '
--
cgit v1.2.1