
hudson.cli.Messages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hudson-core Show documentation
Show all versions of hudson-core Show documentation
Contains the core Hudson code and view files to render HTML.
The newest version!
// CHECKSTYLE:OFF
package hudson.cli;
import org.jvnet.localizer.Localizable;
import org.jvnet.localizer.ResourceBundleHolder;
@SuppressWarnings({
"",
"PMD"
})
public class Messages {
private final static ResourceBundleHolder holder = ResourceBundleHolder.get(Messages.class);
/**
* {0} looks like a short plugin name. Did you mean ''{1}''?
*
*/
public static String InstallPluginCommand_DidYouMean(Object arg1, Object arg2) {
return holder.format("InstallPluginCommand.DidYouMean", arg1, arg2);
}
/**
* {0} looks like a short plugin name. Did you mean ''{1}''?
*
*/
public static Localizable _InstallPluginCommand_DidYouMean(Object arg1, Object arg2) {
return new Localizable(holder, "InstallPluginCommand.DidYouMean", arg1, arg2);
}
/**
* No update center data is retrieved yet from: {0}
*
*/
public static String InstallPluginCommand_NoUpdateDataRetrieved(Object arg1) {
return holder.format("InstallPluginCommand.NoUpdateDataRetrieved", arg1);
}
/**
* No update center data is retrieved yet from: {0}
*
*/
public static Localizable _InstallPluginCommand_NoUpdateDataRetrieved(Object arg1) {
return new Localizable(holder, "InstallPluginCommand.NoUpdateDataRetrieved", arg1);
}
/**
* Note that no update center is defined in this Hudson.
*
*/
public static String InstallPluginCommand_NoUpdateCenterDefined() {
return holder.format("InstallPluginCommand.NoUpdateCenterDefined");
}
/**
* Note that no update center is defined in this Hudson.
*
*/
public static Localizable _InstallPluginCommand_NoUpdateCenterDefined() {
return new Localizable(holder, "InstallPluginCommand.NoUpdateCenterDefined");
}
/**
* {0} is neither a valid file, URL, nor a plugin artifact name in the update center
*
*/
public static String InstallPluginCommand_NotAValidSourceName(Object arg1) {
return holder.format("InstallPluginCommand.NotAValidSourceName", arg1);
}
/**
* {0} is neither a valid file, URL, nor a plugin artifact name in the update center
*
*/
public static Localizable _InstallPluginCommand_NotAValidSourceName(Object arg1) {
return new Localizable(holder, "InstallPluginCommand.NotAValidSourceName", arg1);
}
/**
* Installing {0} from update center
*
*/
public static String InstallPluginCommand_InstallingFromUpdateCenter(Object arg1) {
return holder.format("InstallPluginCommand.InstallingFromUpdateCenter", arg1);
}
/**
* Installing {0} from update center
*
*/
public static Localizable _InstallPluginCommand_InstallingFromUpdateCenter(Object arg1) {
return new Localizable(holder, "InstallPluginCommand.InstallingFromUpdateCenter", arg1);
}
/**
* Installing a plugin from {0}
*
*/
public static String InstallPluginCommand_InstallingPluginFromUrl(Object arg1) {
return holder.format("InstallPluginCommand.InstallingPluginFromUrl", arg1);
}
/**
* Installing a plugin from {0}
*
*/
public static Localizable _InstallPluginCommand_InstallingPluginFromUrl(Object arg1) {
return new Localizable(holder, "InstallPluginCommand.InstallingPluginFromUrl", arg1);
}
/**
* Installing a plugin from local file: {0}
*
*/
public static String InstallPluginCommand_InstallingPluginFromLocalFile(Object arg1) {
return holder.format("InstallPluginCommand.InstallingPluginFromLocalFile", arg1);
}
/**
* Installing a plugin from local file: {0}
*
*/
public static Localizable _InstallPluginCommand_InstallingPluginFromLocalFile(Object arg1) {
return new Localizable(holder, "InstallPluginCommand.InstallingPluginFromLocalFile", arg1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy