PluginProbe
Code Snippets / 3.6.3
Code Snippets v3.6.3
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / php / strings.php

strings.php in Code Snippets 3.6.3, at php/strings.php

53 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Additional strings needed for translation, but not currently present within code.
4 *
5 * @package Code_Snippets
6 */
7
8 __( 'You can now safely remove the free version of Code Snippets', 'code-snippets' );
9
10 __( 'Success', 'code-snippets' );
11 __( 'Notice', 'code-snippets' );
12 __( 'Thanks', 'code-snippets' );
13 __( 'Okay', 'code-snippets' );
14
15 // settings-fields.php.
16 __( 'Minify Snippet Output', 'code-snippets' );
17 __( 'Minify snippet output by removing whitespace and optimising code to reduce load times.', 'code-snippets' );
18
19 // edit.php.
20 __( 'View Full Stylesheet', 'code-snippets' );
21 __( 'View Full Script', 'code-snippets' );
22
23 array(
24 'site-css' => __( 'Site front-end stylesheet', 'code-snippets' ),
25 'admin-css' => __( 'Administration area stylesheet', 'code-snippets' ),
26 'site-head-js' => __( 'JavaScript loaded in the site &amp;lt;head&amp;gt; section', 'code-snippets' ),
27 'site-footer-js' => __( 'JavaScript loaded just before the closing &amp;lt;/body&amp;gt; tag', 'code-snippets' ),
28 );
29
30 // class-content-widget.php.
31 __( 'Processing Options', 'code-snippets' );
32 __( 'Alignment', 'code-snippets' );
33 __( 'Left', 'code-snippets' );
34 __( 'Center', 'code-snippets' );
35 __( 'Right', 'code-snippets' );
36 __( 'Justified', 'code-snippets' );
37 __( 'Text Color', 'code-snippets' );
38 __( 'Select a snippet to show', 'code-snippets' );
39
40 // class-source-widget.php.
41 __( 'Code Snippet Source', 'code-snippets' );
42 __( 'Functions (PHP)', 'code-snippets' );
43 __( 'Content (Mixed)', 'code-snippets' );
44 __( 'Styles (CSS)', 'code-snippets' );
45 __( 'Scripts (JS)', 'code-snippets' );
46 __( 'Highlight Lines', 'code-snippets' );
47 __( 'Word Wrap', 'code-snippets' );
48 __( 'On', 'code-snippets' );
49 __( 'Off', 'code-snippets' );
50 __( 'Height', 'code-snippets' );
51 __( 'Font Size', 'code-snippets' );
52 __( 'Select a snippet to display', 'code-snippets' );
53