diff options
author | Thomas Watson | 2013-09-05 18:42:25 +0000 |
---|---|---|
committer | Thomas Watson | 2013-09-06 18:33:09 +0000 |
commit | ee16ee5520224d7e0604596c01d2737b25bd3449 (patch) | |
tree | b74058feaa9a42ce9fdbbaca693bcb0d376d6912 /bundles/org.eclipse.osgi/supplement | |
parent | eabb2839eb0e820c09446421db6d8301a5f2a7ba (diff) | |
download | rt.equinox.framework-ee16ee5520224d7e0604596c01d2737b25bd3449.tar.gz rt.equinox.framework-ee16ee5520224d7e0604596c01d2737b25bd3449.tar.xz rt.equinox.framework-ee16ee5520224d7e0604596c01d2737b25bd3449.zip |
Consolidate NLS messages.
Diffstat (limited to 'bundles/org.eclipse.osgi/supplement')
2 files changed, 33 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/internal/messages/ExternalMessages.properties b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/internal/messages/ExternalMessages.properties index 72a913562..59db1e6c7 100644 --- a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/internal/messages/ExternalMessages.properties +++ b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/internal/messages/ExternalMessages.properties @@ -91,3 +91,19 @@ location_notFileProtocol = Unable to lock the location. The set location is not location_noLockFile = The lock file has not been set. ECLIPSE_PLUGIN_EXTRACTION_PROBLEM = The URL \"{0}\" could not be extracted probably due to insufficient permissions or insufficient disk space. + +ADAPTOR_URL_CREATE_EXCEPTION=\"{0}\" is an invalid URL +ADAPTOR_DIRECTORY_CREATE_EXCEPTION=The directory \"{0}\" could not be created +ADAPTOR_DIRECTORY_EXCEPTION=The file \"{0}\" is not a directory +ADAPTER_FILEEXIST_EXCEPTION=The file \"{0}\" does not exist +ADAPTOR_STORAGE_INIT_FAILED_MSG=Locking is not possible in the directory \"{0}\". A common reason is that the file system or Runtime Environment does not support file locking for that location. Please choose a different location, or disable file locking passing \"-Dosgi.locking=none\" as a VM argument. +ADAPTOR_STORAGE_INIT_FAILED_TITLE =Invalid Configuration Location +ECLIPSE_STARTUP_FILEMANAGER_OPEN_ERROR=Error reading configuration: {0} + +BUNDLE_READ_EXCEPTION=An error occurred trying to read the bundle +BUNDLE_CLASSPATH_ENTRY_NOT_FOUND_EXCEPTION=The bundle class path entry \"{0}\" could not be found for the bundle \"{1}\" + +RESOURCE_NOT_FOUND_EXCEPTION=The resource {0} could not be found +URL_NO_BUNDLE_ID=No bundle ID specified: {0} +URL_INVALID_BUNDLE_ID=Invalid Bundle ID specified: {0} +URL_NO_BUNDLE_FOUND=No bundle found for URL: {0} diff --git a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/internal/messages/Msg.java b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/internal/messages/Msg.java index 288efefcf..32f994a76 100644 --- a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/internal/messages/Msg.java +++ b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/internal/messages/Msg.java @@ -95,4 +95,21 @@ public class Msg extends NLS { public static String location_notFileProtocol; public static String location_noLockFile; public static String ECLIPSE_PLUGIN_EXTRACTION_PROBLEM; + + public static String ADAPTER_FILEEXIST_EXCEPTION; + public static String ADAPTOR_DIRECTORY_CREATE_EXCEPTION; + public static String ADAPTOR_DIRECTORY_EXCEPTION; + public static String ADAPTOR_URL_CREATE_EXCEPTION; + public static String ADAPTOR_STORAGE_INIT_FAILED_MSG; + public static String ADAPTOR_STORAGE_INIT_FAILED_TITLE; + public static String ECLIPSE_STARTUP_FILEMANAGER_OPEN_ERROR; + + public static String BUNDLE_CLASSPATH_ENTRY_NOT_FOUND_EXCEPTION; + public static String BUNDLE_READ_EXCEPTION; + + public static String RESOURCE_NOT_FOUND_EXCEPTION; + + public static String URL_INVALID_BUNDLE_ID; + public static String URL_NO_BUNDLE_FOUND; + public static String URL_NO_BUNDLE_ID; } |