PluginProbe
WP Coder – Insert & Manage Code Snippets / trunk
WP Coder – Insert & Manage Code Snippets vtrunk
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
← All changes | includes/settings/options/css-code.php +8 -4 3.2trunk View file →
@@ -6,17 +6,21 @@
6 6
7 7 'inline' => [
8 8 'type' => 'checkbox',
9 9 'name' => '[inline_css]',
10 - 'title' => __( 'Inline', 'wpcoder' ),
11 - 'text' => __( 'Enable', 'wpcoder' ),
10 + 'title' => __( 'Inline', 'wp-coder' ),
11 + 'text' => __( 'Enable', 'wp-coder' ),
12 + 'class' => 'is-reverse',
13 + 'tooltip' => __( 'Load CSS inline instead of from an external file.', 'wp-coder' ),
12 14 ],
13 15
14 16 'minified' => [
15 17 'type' => 'checkbox',
16 18 'name' => '[minified_css]',
17 - 'title' => __( 'Minified', 'wpcoder' ),
18 - 'text' => __( 'Enable', 'wpcoder' ),
19 + 'title' => __( 'Minified', 'wp-coder' ),
20 + 'text' => __( 'Enable', 'wp-coder' ),
21 + 'class' => 'is-reverse',
22 + 'tooltip' => __( 'Compress CSS by removing spaces and line breaks.', 'wp-coder' ),
19 23 ],
20 24
21 25 'css_code' => [
22 26 'type' => 'textarea',