au.com.rayh.Messages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xcode-plugin Show documentation
Show all versions of xcode-plugin Show documentation
This plugin adds the ability to call Xcode command line tools to automate build and packaging iOS applications (iPhone, iPad, ...).
The newest version!
// CHECKSTYLE:OFF
package au.com.rayh;
import org.jvnet.localizer.Localizable;
import org.jvnet.localizer.ResourceBundleHolder;
@SuppressWarnings({
"",
"PMD"
})
public class Messages {
private final static ResourceBundleHolder holder = ResourceBundleHolder.get(Messages.class);
/**
* Please specify the path to the agvtool executable (usually /usr/bin/agvtool)
*
*/
public static String XCodeBuilder_agvtoolPathNotSet() {
return holder.format("XCodeBuilder.agvtoolPathNotSet");
}
/**
* Please specify the path to the agvtool executable (usually /usr/bin/agvtool)
*
*/
public static Localizable _XCodeBuilder_agvtoolPathNotSet() {
return new Localizable(holder, "XCodeBuilder.agvtoolPathNotSet");
}
/**
* Cannot find agvtool with the configured path {0}.
*
*/
public static String XCodeBuilder_avgtoolNotFound(Object arg1) {
return holder.format("XCodeBuilder.avgtoolNotFound", arg1);
}
/**
* Cannot find agvtool with the configured path {0}.
*
*/
public static Localizable _XCodeBuilder_avgtoolNotFound(Object arg1) {
return new Localizable(holder, "XCodeBuilder.avgtoolNotFound", arg1);
}
/**
* XCode
*
*/
public static String XCodeBuilder_xcode() {
return holder.format("XCodeBuilder.xcode");
}
/**
* XCode
*
*/
public static Localizable _XCodeBuilder_xcode() {
return new Localizable(holder, "XCodeBuilder.xcode");
}
/**
* Fetching marketing version number (CFBundleShortVersionString) from project.
*
*/
public static String XCodeBuilder_fetchingCFBundleShortVersionString() {
return holder.format("XCodeBuilder.fetchingCFBundleShortVersionString");
}
/**
* Fetching marketing version number (CFBundleShortVersionString) from project.
*
*/
public static Localizable _XCodeBuilder_fetchingCFBundleShortVersionString() {
return new Localizable(holder, "XCodeBuilder.fetchingCFBundleShortVersionString");
}
/**
* Cleaning up test-reports : {0}
*
*/
public static String XCodeBuilder_cleaningTestReportsDir(Object arg1) {
return holder.format("XCodeBuilder.cleaningTestReportsDir", arg1);
}
/**
* Cleaning up test-reports : {0}
*
*/
public static Localizable _XCodeBuilder_cleaningTestReportsDir(Object arg1) {
return new Localizable(holder, "XCodeBuilder.cleaningTestReportsDir", arg1);
}
/**
* Cleaning build directory: {0}
*
*/
public static String XCodeBuilder_cleaningBuildDir(Object arg1) {
return holder.format("XCodeBuilder.cleaningBuildDir", arg1);
}
/**
* Cleaning build directory: {0}
*
*/
public static Localizable _XCodeBuilder_cleaningBuildDir(Object arg1) {
return new Localizable(holder, "XCodeBuilder.cleaningBuildDir", arg1);
}
/**
* Technical version (CFBundleVersion) used by Jenkins to produce the IPA: {0}
*
*/
public static String XCodeBuilder_CFBundleVersionUsed(Object arg1) {
return holder.format("XCodeBuilder.CFBundleVersionUsed", arg1);
}
/**
* Technical version (CFBundleVersion) used by Jenkins to produce the IPA: {0}
*
*/
public static Localizable _XCodeBuilder_CFBundleVersionUsed(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleVersionUsed", arg1);
}
/**
* Working directory is {0}.
*
*/
public static String XCodeBuilder_workingDir(Object arg1) {
return holder.format("XCodeBuilder.workingDir", arg1);
}
/**
* Working directory is {0}.
*
*/
public static Localizable _XCodeBuilder_workingDir(Object arg1) {
return new Localizable(holder, "XCodeBuilder.workingDir", arg1);
}
/**
* Could not set CFBundleShortVersionString to: {0}
*
*/
public static String XCodeBuilder_CFBundleShortVersionStringUpdateError(Object arg1) {
return holder.format("XCodeBuilder.CFBundleShortVersionStringUpdateError", arg1);
}
/**
* Could not set CFBundleShortVersionString to: {0}
*
*/
public static Localizable _XCodeBuilder_CFBundleShortVersionStringUpdateError(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleShortVersionStringUpdateError", arg1);
}
/**
* Packaging IPA
*
*/
public static String XCodeBuilder_packagingIPA() {
return holder.format("XCodeBuilder.packagingIPA");
}
/**
* Packaging IPA
*
*/
public static Localizable _XCodeBuilder_packagingIPA() {
return new Localizable(holder, "XCodeBuilder.packagingIPA");
}
/**
* Unable to unlock the keychain.
*
*/
public static String XCodeBuilder_unlockKeychainFailed() {
return holder.format("XCodeBuilder.unlockKeychainFailed");
}
/**
* Unable to unlock the keychain.
*
*/
public static Localizable _XCodeBuilder_unlockKeychainFailed() {
return new Localizable(holder, "XCodeBuilder.unlockKeychainFailed");
}
/**
* Updating technical version (CFBundleVersion) to: {0}
*
*/
public static String XCodeBuilder_CFBundleVersionUpdate(Object arg1) {
return holder.format("XCodeBuilder.CFBundleVersionUpdate", arg1);
}
/**
* Updating technical version (CFBundleVersion) to: {0}
*
*/
public static Localizable _XCodeBuilder_CFBundleVersionUpdate(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleVersionUpdate", arg1);
}
/**
* Failed to zip *.dSYM into {0}-dSYM.zip
*
*/
public static String XCodeBuilder_zipFailed(Object arg1) {
return holder.format("XCodeBuilder.zipFailed", arg1);
}
/**
* Failed to zip *.dSYM into {0}-dSYM.zip
*
*/
public static Localizable _XCodeBuilder_zipFailed(Object arg1) {
return new Localizable(holder, "XCodeBuilder.zipFailed", arg1);
}
/**
* Cannot find xcodebuild with the configured path {0}.
*
*/
public static String XCodeBuilder_xcodebuildNotFound(Object arg1) {
return holder.format("XCodeBuilder.xcodebuildNotFound", arg1);
}
/**
* Cannot find xcodebuild with the configured path {0}.
*
*/
public static Localizable _XCodeBuilder_xcodebuildNotFound(Object arg1) {
return new Localizable(holder, "XCodeBuilder.xcodebuildNotFound", arg1);
}
/**
* Failure while expanding macros and variables for symRoot. Error: {0}
*
*/
public static String XCodeBuilder_symRootMacroError(Object arg1) {
return holder.format("XCodeBuilder.symRootMacroError", arg1);
}
/**
* Failure while expanding macros and variables for symRoot. Error: {0}
*
*/
public static Localizable _XCodeBuilder_symRootMacroError(Object arg1) {
return new Localizable(holder, "XCodeBuilder.symRootMacroError", arg1);
}
/**
* No marketing version found (CFBundleVersion)
*
*/
public static String XCodeBuilder_CFBundleVersionNotFound() {
return holder.format("XCodeBuilder.CFBundleVersionNotFound");
}
/**
* No marketing version found (CFBundleVersion)
*
*/
public static Localizable _XCodeBuilder_CFBundleVersionNotFound() {
return new Localizable(holder, "XCodeBuilder.CFBundleVersionNotFound");
}
/**
* Cannot find xcrun with the configured path {0}.
*
*/
public static String XCodeBuilder_xcrunNotFound(Object arg1) {
return holder.format("XCodeBuilder.xcrunNotFound", arg1);
}
/**
* Cannot find xcrun with the configured path {0}.
*
*/
public static Localizable _XCodeBuilder_xcrunNotFound(Object arg1) {
return new Localizable(holder, "XCodeBuilder.xcrunNotFound", arg1);
}
/**
* Check your XCode installation. Jenkins cannot retrieve its version.
*
*/
public static String XCodeBuilder_xcodeVersionNotFound() {
return holder.format("XCodeBuilder.xcodeVersionNotFound");
}
/**
* Check your XCode installation. Jenkins cannot retrieve its version.
*
*/
public static Localizable _XCodeBuilder_xcodeVersionNotFound() {
return new Localizable(holder, "XCodeBuilder.xcodeVersionNotFound");
}
/**
* Please specify the path to the xcodebuild executable (usually /usr/bin/xcodebuild)
*
*/
public static String XCodeBuilder_xcodebuildPathNotSet() {
return holder.format("XCodeBuilder.xcodebuildPathNotSet");
}
/**
* Please specify the path to the xcodebuild executable (usually /usr/bin/xcodebuild)
*
*/
public static Localizable _XCodeBuilder_xcodebuildPathNotSet() {
return new Localizable(holder, "XCodeBuilder.xcodebuildPathNotSet");
}
/**
* Could not set the CFBundleVersion to: {0}
*
*/
public static String XCodeBuilder_CFBundleVersionUpdateError(Object arg1) {
return holder.format("XCodeBuilder.CFBundleVersionUpdateError", arg1);
}
/**
* Could not set the CFBundleVersion to: {0}
*
*/
public static Localizable _XCodeBuilder_CFBundleVersionUpdateError(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleVersionUpdateError", arg1);
}
/**
* Cannot remove *.ipa files from a non-existing directory: {0}
*
*/
public static String XCodeBuilder_NotExistingDirToCleanIPA(Object arg1) {
return holder.format("XCodeBuilder.NotExistingDirToCleanIPA", arg1);
}
/**
* Cannot remove *.ipa files from a non-existing directory: {0}
*
*/
public static Localizable _XCodeBuilder_NotExistingDirToCleanIPA(Object arg1) {
return new Localizable(holder, "XCodeBuilder.NotExistingDirToCleanIPA", arg1);
}
/**
* Cleaning up previously generate .ipa files
*
*/
public static String XCodeBuilder_cleaningIPA() {
return holder.format("XCodeBuilder.cleaningIPA");
}
/**
* Cleaning up previously generate .ipa files
*
*/
public static Localizable _XCodeBuilder_cleaningIPA() {
return new Localizable(holder, "XCodeBuilder.cleaningIPA");
}
/**
* Found marketing version (CFBundleShortVersionString): {0}.
*
*/
public static String XCodeBuilder_CFBundleShortVersionStringFound(Object arg1) {
return holder.format("XCodeBuilder.CFBundleShortVersionStringFound", arg1);
}
/**
* Found marketing version (CFBundleShortVersionString): {0}.
*
*/
public static Localizable _XCodeBuilder_CFBundleShortVersionStringFound(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleShortVersionStringFound", arg1);
}
/**
* Fetching technical version number (CFBundleVersion) from project.
*
*/
public static String XCodeBuilder_fetchingCFBundleVersion() {
return holder.format("XCodeBuilder.fetchingCFBundleVersion");
}
/**
* Fetching technical version number (CFBundleVersion) from project.
*
*/
public static Localizable _XCodeBuilder_fetchingCFBundleVersion() {
return new Localizable(holder, "XCodeBuilder.fetchingCFBundleVersion");
}
/**
* Going to invoke xcodebuild:
*
*/
public static String XCodeBuilder_invokeXcodebuild() {
return holder.format("XCodeBuilder.invokeXcodebuild");
}
/**
* Going to invoke xcodebuild:
*
*/
public static Localizable _XCodeBuilder_invokeXcodebuild() {
return new Localizable(holder, "XCodeBuilder.invokeXcodebuild");
}
/**
* Please specify the path to the xcrun executable (usually /usr/bin/xcrun)
*
*/
public static String XCodeBuilder_xcrunPathNotSet() {
return holder.format("XCodeBuilder.xcrunPathNotSet");
}
/**
* Please specify the path to the xcrun executable (usually /usr/bin/xcrun)
*
*/
public static Localizable _XCodeBuilder_xcrunPathNotSet() {
return new Localizable(holder, "XCodeBuilder.xcrunPathNotSet");
}
/**
* No marketing version found (CFBundleShortVersionString).
*
*/
public static String XCodeBuilder_CFBundleShortVersionStringNotFound() {
return holder.format("XCodeBuilder.CFBundleShortVersionStringNotFound");
}
/**
* No marketing version found (CFBundleShortVersionString).
*
*/
public static Localizable _XCodeBuilder_CFBundleShortVersionStringNotFound() {
return new Localizable(holder, "XCodeBuilder.CFBundleShortVersionStringNotFound");
}
/**
* Found marketing version (CFBundleVersion): {0}.
*
*/
public static String XCodeBuilder_CFBundleVersionFound(Object arg1) {
return holder.format("XCodeBuilder.CFBundleVersionFound", arg1);
}
/**
* Found marketing version (CFBundleVersion): {0}.
*
*/
public static Localizable _XCodeBuilder_CFBundleVersionFound(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleVersionFound", arg1);
}
/**
* Marketing version (CFBundleShortVersionString) found in project configuration: {0}.
*
*/
public static String XCodeBuilder_CFBundleShortVersionStringValue(Object arg1) {
return holder.format("XCodeBuilder.CFBundleShortVersionStringValue", arg1);
}
/**
* Marketing version (CFBundleShortVersionString) found in project configuration: {0}.
*
*/
public static Localizable _XCodeBuilder_CFBundleShortVersionStringValue(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleShortVersionStringValue", arg1);
}
/**
* Updating marketing version (CFBundleShortVersionString) to: {0}
*
*/
public static String XCodeBuilder_CFBundleShortVersionStringUpdate(Object arg1) {
return holder.format("XCodeBuilder.CFBundleShortVersionStringUpdate", arg1);
}
/**
* Updating marketing version (CFBundleShortVersionString) to: {0}
*
*/
public static Localizable _XCodeBuilder_CFBundleShortVersionStringUpdate(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleShortVersionStringUpdate", arg1);
}
/**
* Failure while expanding macros and variables for CFBundleVersion. Error: {0}
*
*/
public static String XCodeBuilder_CFBundleVersionMacroError(Object arg1) {
return holder.format("XCodeBuilder.CFBundleVersionMacroError", arg1);
}
/**
* Failure while expanding macros and variables for CFBundleVersion. Error: {0}
*
*/
public static Localizable _XCodeBuilder_CFBundleVersionMacroError(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleVersionMacroError", arg1);
}
/**
* Technical version (CFBundleVersion) found in project configuration: {0}.
*
*/
public static String XCodeBuilder_CFBundleVersionValue(Object arg1) {
return holder.format("XCodeBuilder.CFBundleVersionValue", arg1);
}
/**
* Technical version (CFBundleVersion) found in project configuration: {0}.
*
*/
public static Localizable _XCodeBuilder_CFBundleVersionValue(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleVersionValue", arg1);
}
/**
* Failure while expanding macros and variables for CFBundleShortVersionString. Error: {0}
*
*/
public static String XCodeBuilder_CFBundleShortVersionStringMacroError(Object arg1) {
return holder.format("XCodeBuilder.CFBundleShortVersionStringMacroError", arg1);
}
/**
* Failure while expanding macros and variables for CFBundleShortVersionString. Error: {0}
*
*/
public static Localizable _XCodeBuilder_CFBundleShortVersionStringMacroError(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleShortVersionStringMacroError", arg1);
}
/**
* Failure while expanding macros and variables for configurationBuildDir. Error: {0}
*
*/
public static String XCodeBuilder_configurationBuildDirMacroError(Object arg1) {
return holder.format("XCodeBuilder.configurationBuildDirMacroError", arg1);
}
/**
* Failure while expanding macros and variables for configurationBuildDir. Error: {0}
*
*/
public static Localizable _XCodeBuilder_configurationBuildDirMacroError(Object arg1) {
return new Localizable(holder, "XCodeBuilder.configurationBuildDirMacroError", arg1);
}
/**
* Marketing version (CFBundleShortVersionString) used by Jenkins to produce the IPA: {0}
*
*/
public static String XCodeBuilder_CFBundleShortVersionStringUsed(Object arg1) {
return holder.format("XCodeBuilder.CFBundleShortVersionStringUsed", arg1);
}
/**
* Marketing version (CFBundleShortVersionString) used by Jenkins to produce the IPA: {0}
*
*/
public static Localizable _XCodeBuilder_CFBundleShortVersionStringUsed(Object arg1) {
return new Localizable(holder, "XCodeBuilder.CFBundleShortVersionStringUsed", arg1);
}
}