Kernel::System::Translation::Export::CSV

Table of Contents

NAME

Kernel::System::Translation::Export::CSV – Module for exporting translations in CSV format.

Run()

Import translations in CSV format.

    my $Result = $TranslationObject->ExportCSV(
        # If is running as a console command or not.
        InConsole => '...', # optional (0|1), default '0'

        Codes      => '...', # required
        All        => '...', # optional (0|1), default '0'
        Filename => '...', # required

    );

Returns

    error           - { Success => 0 }
    success         - { Success => 1 }

    # When used in the context of console command.
    partial success - { Success => 1, WithErrors => 1 }

PRIVATE METHODS

Scroll to Top