diff --git a/src/lang/en.js b/src/lang/en.js index f2b60b86..27d81d91 100644 --- a/src/lang/en.js +++ b/src/lang/en.js @@ -99,7 +99,10 @@ export default { evict: 'Evict', evictedMessage: 'This URL was evicted', actions: 'Actions', - remove: 'Remove from Cachex' + remove: 'Remove from Cachex', + evictObjectsHeader: 'Evict object from the MediaProxy cache', + listBannedUrlsHeader: 'List of all banned MediaProxy URLs', + multipleInput: 'You can enter a single URL or several comma separated links' }, documentation: { documentation: 'Documentation', diff --git a/src/views/mediaProxyCache/index.vue b/src/views/mediaProxyCache/index.vue index 3ca1160a..213e266d 100644 --- a/src/views/mediaProxyCache/index.vue +++ b/src/views/mediaProxyCache/index.vue @@ -4,17 +4,20 @@

{{ $t('mediaProxyCache.mediaProxyCache') }}

-

Evict object from the MediaProxy cache

+

{{ $t('mediaProxyCache.evictObjectsHeader') }}

{{ $t('mediaProxyCache.ban') }} {{ $t('mediaProxyCache.evict') }}
-

List of all banned MediaProxy URLs

+ {{ $t('mediaProxyCache.multipleInput') }} +

{{ $t('mediaProxyCache.listBannedUrlsHeader') }}

url.trim()).filter(el => el.length > 0) this.$store.dispatch('PurgeUrls', { urls, ban: this.ban }) this.url = '' }, @@ -90,6 +93,15 @@ export default { h1 { margin: 0; } +.expl { + color: #666666; + font-size: 13px; + line-height: 22px; + margin: 5px 0 0 0; + overflow-wrap: break-word; + overflow: hidden; + text-overflow: ellipsis; +} .banned-urls-table { margin-top: 15px; margin-bottom: 15px; @@ -114,7 +126,10 @@ h1 { .url-input-container { display: flex; align-items: baseline; - margin: 15px 15px; + margin: 15px 15px 5px 15px; +} +.url-input-expl { + margin-left: 15px; } @media only screen and (max-width:480px) {