Skip to content

Commit 23ad437

Browse files
committed
AdminCP -> Control Panel
Signed-off-by: Andrew Welch <andrew@nystudio107.com>
1 parent 40da962 commit 23ad437

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* Added multiple output paths and URLs for different media types
1515

1616
### Changed
17-
* Moved to a modern webpack build config for the AdminCP
17+
* Moved to a modern webpack build config for the Control Panel
1818
* Added install confetti
1919

2020
## 1.1.3 - 2018.03.02
@@ -33,7 +33,7 @@
3333
## 1.1.0 - 2018.02.02
3434
### Added
3535
* Transcoder now supports the transcoding of remote video & audio files
36-
* Added the ability to generate a thumbnail for videos in the AdminCP Assets index
36+
* Added the ability to generate a thumbnail for videos in the Control Panel Assets index
3737

3838
### Changed
3939
* Cleaned up the exception handling

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To install Transcoder, follow these steps:
2121
1. Install with Composer via `composer require nystudio107/craft-transcoder` from your project directory
2222
2. Install plugin in the Craft Control Panel under Settings > Plugins
2323

24-
You can also install Transcoder via the **Plugin Store** in the Craft AdminCP.
24+
You can also install Transcoder via the **Plugin Store** in the Craft Control Panel.
2525

2626
Transcoder works on Craft 3.x.
2727

@@ -40,7 +40,7 @@ The Transcoder plugin allows you to transcode any video or animated gif (local o
4040

4141
It can also transcode audio files to any bitrate & sample rate, to a variety of file formats. It can even extract audio tracks from video files.
4242

43-
Transcoder also allows you to get a thumbnail of a video in any size and at any timecode, and can extract information about audio/video files such. It also automatically adds video thumbnails in the Assets index in the AdminCP.
43+
Transcoder also allows you to get a thumbnail of a video in any size and at any timecode, and can extract information about audio/video files such. It also automatically adds video thumbnails in the Assets index in the Control Panel.
4444

4545
Finally, it lets you download an arbitrary file (such as the transcoded video) via a special download link.
4646

@@ -127,7 +127,7 @@ The file format setting `videoEncoder` is preset to what you'll need to generate
127127

128128
![Screenshot](resources/screenshots/admin-cp-video-thumbnails.png)
129129

130-
Transcoder will also automatically add video thumbnails in the AdminCP Asset index.
130+
Transcoder will also automatically add video thumbnails in the Control Panel Asset index.
131131

132132
### Generating a Transcoded Audio File
133133

@@ -256,7 +256,7 @@ The file format setting `videoEncoder` is preset to what you'll need to generate
256256

257257
![Screenshot](resources/screenshots/admin-cp-video-thumbnails.png)
258258

259-
Transcoder will also automatically add video thumbnails in the AdminCP Asset index.
259+
Transcoder will also automatically add video thumbnails in the Control Panel Asset index.
260260

261261
### Getting Transcoding Progress
262262

src/Transcoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ function (RegisterUrlRulesEvent $event) {
203203
'UrlManager::EVENT_REGISTER_SITE_URL_RULES',
204204
__METHOD__
205205
);
206-
// Register our AdminCP routes
206+
// Register our Control Panel routes
207207
$event->rules = array_merge(
208208
$event->rules,
209209
$this->customFrontendRoutes()

src/assetbundles/transcoder/dist/css/styles.ff7dcd9158e0d5435c51.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/assetbundles/transcoder/src/css/app.pcss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* https://github.com/tailwindcss/tailwindcss/blob/master/css/preflight.css
1414
*/
1515
/**
16-
* We don't want these in the AdminCP
16+
* We don't want these in the Control Panel
1717
* @import "tailwindcss/preflight";
1818
*/
1919

src/services/Transcode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ public function getGifFilename($filePath, $gifOptions): string
524524
}
525525

526526
/**
527-
* Handle generated a thumbnail for the AdminCP
527+
* Handle generated a thumbnail for the Control Panel
528528
*
529529
* @param AssetThumbEvent $event
530530
*

0 commit comments

Comments
 (0)