Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
firepot
/
wp-content
/
plugins
/
disable-search
/
src
/
cli
:
Commands.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Loco Translate commands * @codeCoverageIgnore */ class Loco_cli_Commands { /** * Sync translation files with the available source strings * * ## OPTIONS * * [<filter>] * : Restrict to a type of bundle (plugins|themes|core); a single bundle (e.g. plugins:<handle>); or a Text Domain * * [--locale=<code>] * : Restrict to one or more locales. Separate multiple codes with commas. * * [--fuzziness=<percent>] * : Override plugin settings for fuzzy matching tolerance (0-100). * * [--noop] * : Specify dry run. Makes no changes on disk. * * [--force] * : Update even when nothing has changed. Useful for recompiling MO/JSON. * * ## EXAMPLES * * wp loco sync plugins * * @param string[] $args * @param string[] $opts */ public function sync( $args, $opts ){ if( array_key_exists('fuzziness',$opts) ){ Loco_data_Settings::get()->fuzziness = (int) $opts['fuzziness']; } try { Loco_cli_SyncCommand::run ( Loco_cli_Utils::collectProjects( isset($args[0]) ? $args[0] : '' ), Loco_cli_Utils::collectLocales( isset($opts['locale']) ? $opts['locale'] : '' ), Loco_cli_Utils::bool($opts,'noop'), Loco_cli_Utils::bool($opts,'force') ); } catch( Loco_error_Exception $e ){ WP_CLI::error( $e->getMessage() ); } } /** * Extract available source strings * * ## OPTIONS * * [<filter>] * : Restrict to a type of bundle (plugins|themes|core); a single bundle (e.g. plugins:<handle>); or a Text Domain * * [--maxsize=<size>] * : Override plugin settings for maximum PHP file size * * [--noop] * : Specify dry run. Makes no changes on disk. * * [--force] * : Update even when nothing has changed. Useful for updating meta properties. * * ## EXAMPLES * * wp loco extract core --maxsize=400K * * @param string[] $args * @param string[] $opts */ public function extract( $args, $opts ){ try { if( array_key_exists('maxsize',$opts) ){ Loco_data_Settings::get()->max_php_size = $opts['maxsize']; } Loco_cli_ExtractCommand::run ( Loco_cli_Utils::collectProjects( isset($args[0]) ? $args[0] : '' ), Loco_cli_Utils::bool($opts,'noop'), Loco_cli_Utils::bool($opts,'force') ); } catch( Loco_error_Exception $e ){ WP_CLI::error( $e->getMessage() ); } } /** * EXPERIMENTAL. Attempts to install translation source files from an external repository. * Use this to replace *installed* PO files if they are missing or have been purged of script translations. * * ## OPTIONS * * [<filter>] * : Restrict to a type of bundle (plugins|themes|core); a single bundle (e.g. plugins:<handle>); or a Text Domain * * [--locale=<code>] * : Restrict to one or more locales. Separate multiple codes with commas. * * [--trunk] * : Install strings for upcoming dev version as opposed to latest stable * * ## EXAMPLES * * wp loco fetch loco-translate --locale=en_GB * * @param string[] $args * @param string[] $opts */ public function fetch( $args, $opts ){ try { Loco_cli_FetchCommand::run ( Loco_cli_Utils::collectProjects( isset($args[0]) ? $args[0] : '' ), Loco_cli_Utils::collectLocales( isset($opts['locale']) ? $opts['locale'] : '' ), [ 'trunk' => Loco_cli_Utils::bool($opts,'trunk') ] ); } catch( Loco_error_Exception $e ){ WP_CLI::error( $e->getMessage() ); } } }