blob: c170ef93f84c3c465217671f974da8df74f3a3a9 (
plain)
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
|
<?php
// Heading
$_['heading_title'] = 'Developer Settings';
// Text
$_['text_success'] = 'Success: You have modified developer settings!';
$_['text_theme'] = 'theme';
$_['text_sass'] = 'SASS';
$_['text_cache'] = 'Success: You have cleared the %s cache!';
// Column
$_['column_component'] = 'Component';
$_['column_action'] = 'Action';
// Entry
$_['entry_theme'] = 'Theme';
$_['entry_sass'] = 'SASS';
$_['entry_cache'] = 'Cache';
// Button
$_['button_on'] = 'On';
$_['button_off'] = 'Off';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify developer settings!';
|