Kernel::System::Translation::Import::CSV

NAME

Kernel::System::Translation::Import::CSV – Module for importing translations in CSV format.

MethodParamValidationSchema()

Returns parameter validation definitions.

Run()

Import translations in CSV format.

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

        Text      => '...', # required
        UserID    => '...', # 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