forked from BoldGrid/w3-total-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeneric_ConfigLabels.php
30 lines (27 loc) · 1.87 KB
/
Generic_ConfigLabels.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
namespace W3TC;
class Generic_ConfigLabels {
public function config_labels( $config_labels ) {
return array_merge( $config_labels, array(
'cluster.messagebus.enabled' => __( 'Enable cache purge via Amazon <acronym title="Simple Notification Service">SNS</acronym>', 'w3-total-cache' ),
'cluster.messagebus.sns.region' => __( 'Amazon <acronym title="Simple Notification Service">SNS</acronym> region:', 'w3-total-cache' ),
'cluster.messagebus.sns.api_key' => __( '<acronym title="Application Programming Interface">API</acronym> key:', 'w3-total-cache' ),
'cluster.messagebus.sns.api_secret' => __( '<acronym title="Application Programming Interface">API</acronym> secret:', 'w3-total-cache' ),
'cluster.messagebus.sns.topic_arn' => __( 'Topic <acronym title="Identification">ID</acronym>:', 'w3-total-cache' ),
'cluster.messagebus.debug' => __( 'Message Bus', 'w3-total-cache' ),
'widget.pagespeed.access_token' => __( 'Authorize :', 'w3-total-cache' ),
'widget.pagespeed.w3tc_pagespeed_key' => __( 'W3 API Key:', 'w3-total-cache' ),
'common.force_master' => __( 'Use single network configuration file for all sites.', 'w3-total-cache' ),
'config.path' => __( 'Nginx server configuration file path', 'w3-total-cache' ),
'config.check' => __( 'Verify rewrite rules', 'w3-total-cache' ),
'plugin.license_key' => __( 'License:', 'w3-total-cache' ),
'referrer.enabled' => __( 'Referrers:', 'w3-total-cache' ),
'referrer.rgroups' => __( 'Referrer groups', 'w3-total-cache' ),
'mobile.enabled' => __( 'User Agents:', 'w3-total-cache' ),
'mobile.rgroups' => __( 'User Agent groups', 'w3-total-cache' ),
'varnish.enabled' => __( 'Enable reverse proxy caching via varnish', 'w3-total-cache' ),
'varnish.debug' => __( 'Reverse Proxy', 'w3-total-cache' ),
'varnish.servers' => __( 'Varnish servers:', 'w3-total-cache' )
) );
}
}