This commit introduces a more reliable and consistent approach to setting up the development environment using backups: - Add setup-from-backup.sh script for environment setup from existing backups - Standardize script naming and organization - Move obsolete scripts to bin/obsolete directory - Update documentation with new workflow instructions - Create migration guide for transitioning to new workflow - Update Memory Bank with workflow improvements The new workflow provides: - More reliable environment setup - Faster setup process - Offline development capability - Consistent development environments across team members Breaking changes: - setup-dev.sh is replaced by setup-from-backup.sh - sync-and-setup.sh is replaced by separate scripts - verify-with-wpcli.sh is no longer used Migration path is documented in MIGRATION_GUIDE.md
52 lines
1.8 KiB
PHP
52 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Additional strings needed for translation, but not currently present within code.
|
|
*
|
|
* @package Code_Snippets
|
|
*/
|
|
|
|
__( 'You can now safely remove the free version of Code Snippets', 'code-snippets' );
|
|
|
|
__( 'Success', 'code-snippets' );
|
|
__( 'Notice', 'code-snippets' );
|
|
__( 'Thanks', 'code-snippets' );
|
|
__( 'Okay', 'code-snippets' );
|
|
|
|
// settings-fields.php.
|
|
__( 'Minify Snippet Output', 'code-snippets' );
|
|
__( 'Minify snippet output by removing whitespace and optimising code to reduce load times.', 'code-snippets' );
|
|
|
|
// edit.php.
|
|
__( 'View Full Stylesheet', 'code-snippets' );
|
|
__( 'View Full Script', 'code-snippets' );
|
|
|
|
array(
|
|
'site-css' => __( 'Site front-end stylesheet', 'code-snippets' ),
|
|
'admin-css' => __( 'Administration area stylesheet', 'code-snippets' ),
|
|
'site-head-js' => __( 'JavaScript loaded in the site &lt;head&gt; section', 'code-snippets' ),
|
|
'site-footer-js' => __( 'JavaScript loaded just before the closing &lt;/body&gt; tag', 'code-snippets' ),
|
|
);
|
|
|
|
// class-content-widget.php.
|
|
__( 'Processing Options', 'code-snippets' );
|
|
__( 'Alignment', 'code-snippets' );
|
|
__( 'Left', 'code-snippets' );
|
|
__( 'Center', 'code-snippets' );
|
|
__( 'Right', 'code-snippets' );
|
|
__( 'Justified', 'code-snippets' );
|
|
__( 'Text Color', 'code-snippets' );
|
|
__( 'Select a snippet to show', 'code-snippets' );
|
|
|
|
// class-source-widget.php.
|
|
__( 'Code Snippet Source', 'code-snippets' );
|
|
__( 'Functions (PHP)', 'code-snippets' );
|
|
__( 'Content (Mixed)', 'code-snippets' );
|
|
__( 'Styles (CSS)', 'code-snippets' );
|
|
__( 'Scripts (JS)', 'code-snippets' );
|
|
__( 'Highlight Lines', 'code-snippets' );
|
|
__( 'Word Wrap', 'code-snippets' );
|
|
__( 'On', 'code-snippets' );
|
|
__( 'Off', 'code-snippets' );
|
|
__( 'Height', 'code-snippets' );
|
|
__( 'Font Size', 'code-snippets' );
|
|
__( 'Select a snippet to display', 'code-snippets' );
|