mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-03 20:54:27 +01:00 
			
		
		
		
	Installations from package will provide a config for the translation module which defines the appropriate gettext tools paths. refs #9615
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
 | 
						|
 | 
						|
namespace Icinga\Module\Translation\Clicommands;
 | 
						|
 | 
						|
use Icinga\Module\Translation\Cli\TranslationCommand;
 | 
						|
use Icinga\Module\Translation\Util\GettextTranslationHelper;
 | 
						|
 | 
						|
/**
 | 
						|
 * Translation updater
 | 
						|
 *
 | 
						|
 * This command will create a new or update any existing PO-file of a domain. The
 | 
						|
 * actions below allow to select a particular domain for whom to touch the PO-file.
 | 
						|
 *
 | 
						|
 * Domains are the global one 'icinga' and all available and enabled modules
 | 
						|
 * identified by their name.
 | 
						|
 *
 | 
						|
 * Once a PO-file has been created/updated one can open it with a editor for
 | 
						|
 * PO-files and start with the actual translation.
 | 
						|
 */
 | 
						|
class RefreshCommand extends TranslationCommand
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Touch the global domain
 | 
						|
     *
 | 
						|
     * This will create/update the PO-file of the global 'icinga' domain.
 | 
						|
     *
 | 
						|
     * USAGE:
 | 
						|
     *
 | 
						|
     *   icingacli translation refresh icinga <locale>
 | 
						|
     *
 | 
						|
     * EXAMPLES:
 | 
						|
     *
 | 
						|
     *   icingacli translation refresh icinga de_DE
 | 
						|
     *   icingacli translation refresh icinga fr_FR
 | 
						|
     */
 | 
						|
    public function icingaAction()
 | 
						|
    {
 | 
						|
        $locale = $this->validateLocaleCode($this->params->shift());
 | 
						|
 | 
						|
        $helper = $this->getTranslationHelper($locale);
 | 
						|
        $helper->updateIcingaTranslations();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Touch a module domain
 | 
						|
     *
 | 
						|
     * This will create/update the PO-file of the given module domain.
 | 
						|
     *
 | 
						|
     * USAGE:
 | 
						|
     *
 | 
						|
     *   icingacli translation refresh module <module> <locale>
 | 
						|
     *
 | 
						|
     * EXAMPLES:
 | 
						|
     *
 | 
						|
     *   icingacli translation refresh module monitoring de_DE
 | 
						|
     *   icingacli translation refresh module monitoring fr_FR
 | 
						|
     */
 | 
						|
    public function moduleAction()
 | 
						|
    {
 | 
						|
        $module = $this->validateModuleName($this->params->shift());
 | 
						|
        $locale = $this->validateLocaleCode($this->params->shift());
 | 
						|
 | 
						|
        $helper = $this->getTranslationHelper($locale);
 | 
						|
        $helper->updateModuleTranslations($module);
 | 
						|
    }
 | 
						|
}
 |