{% 
    if Option == 'import' or Option == 'export' then
        local operate = Option == 'import' and 'Import' or 'Export'
        local status = Option == 'import' and 'Downloading...' or 'Uploading...'
        if IsLocalFile then
            echo(operate .. ' weak password dictionary successfully.')
        elseif State then
            if State == 'New' then
                echo(status)
            end
            if State == 'Exception' or State == 'Killed' or State == 'Cancelled' then
                echo(operate .. ' weak password dictionary failed.')
            end
            if State == 'Completed' then
                echo(operate .. ' weak password dictionary successfully.')
            end
        else
            echo(operate .. ' weak password dictionary failed.')
        end
    elseif Option == 'enabled' then
        echo('Enabled weak password dictionary check successfully.')
    elseif Option == 'disabled' then
        echo('Disabled weak password dictionary check successfully.')
    end
%}