All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.maxbraun.jobprofiles.Messages Maven / Gradle / Ivy

// CHECKSTYLE:OFF

package com.github.maxbraun.jobprofiles;

import org.jvnet.localizer.Localizable;
import org.jvnet.localizer.ResourceBundleHolder;

@SuppressWarnings({
    "",
    "PMD"
})
public class Messages {

    private final static ResourceBundleHolder holder = ResourceBundleHolder.get(Messages.class);

    /**
     * No Maven installation found.
     * 
     */
    public static String Context_NoMavenInstallation() {
        return holder.format("Context.NoMavenInstallation");
    }

    /**
     * No Maven installation found.
     * 
     */
    public static Localizable _Context_NoMavenInstallation() {
        return new Localizable(holder, "Context.NoMavenInstallation");
    }

    /**
     * [Error] Profile %s not found. I''ll going to continue with next Asset
     * 
     */
    public static String ScmGit_ProfileNotFound() {
        return holder.format("ScmGit.ProfileNotFound");
    }

    /**
     * [Error] Profile %s not found. I''ll going to continue with next Asset
     * 
     */
    public static Localizable _ScmGit_ProfileNotFound() {
        return new Localizable(holder, "ScmGit.ProfileNotFound");
    }

    /**
     * Updates Jenkins Jobs with the Job Profiles Plugin
     * 
     */
    public static String JobProfileCli_shortDescription() {
        return holder.format("JobProfileCli.shortDescription");
    }

    /**
     * Updates Jenkins Jobs with the Job Profiles Plugin
     * 
     */
    public static Localizable _JobProfileCli_shortDescription() {
        return new Localizable(holder, "JobProfileCli.shortDescription");
    }

    /**
     * Job Updates
     * 
     */
    public static String JobProfiles_displayName() {
        return holder.format("JobProfiles.displayName");
    }

    /**
     * Job Updates
     * 
     */
    public static Localizable _JobProfiles_displayName() {
        return new Localizable(holder, "JobProfiles.displayName");
    }

    /**
     * Job Profile Informations
     * 
     */
    public static String JobProfileProperties_headline() {
        return holder.format("JobProfileProperties.headline");
    }

    /**
     * Job Profile Informations
     * 
     */
    public static Localizable _JobProfileProperties_headline() {
        return new Localizable(holder, "JobProfileProperties.headline");
    }

    /**
     * Updates Jenkins Jobs with the Job Profiles Plugin
     * 
     */
    public static String JobProfileCommand_shortDescription() {
        return holder.format("JobProfileCommand.shortDescription");
    }

    /**
     * Updates Jenkins Jobs with the Job Profiles Plugin
     * 
     */
    public static Localizable _JobProfileCommand_shortDescription() {
        return new Localizable(holder, "JobProfileCommand.shortDescription");
    }

    /**
     * Validation failed.
     * 
     */
    public static String JobProfilesConfiguration_failed() {
        return holder.format("JobProfilesConfiguration.failed");
    }

    /**
     * Validation failed.
     * 
     */
    public static Localizable _JobProfilesConfiguration_failed() {
        return new Localizable(holder, "JobProfilesConfiguration.failed");
    }

    /**
     * Could not create temp directory.
     * 
     */
    public static String ScmGit_tempDirFailed() {
        return holder.format("ScmGit.tempDirFailed");
    }

    /**
     * Could not create temp directory.
     * 
     */
    public static Localizable _ScmGit_tempDirFailed() {
        return new Localizable(holder, "ScmGit.tempDirFailed");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy