Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2008-02-28 02:54:17 +0000
committerPascal Rapicault2008-02-28 02:54:17 +0000
commit6f69e4aee6593b80d863912dcea079279724842d (patch)
treea229fef5d4b2b63ca112e06f69adf12365ddbeff /bundles
parent22711f7db1bbd4ad3cf3da9875232df3ab1d6cda (diff)
downloadrt.equinox.p2-6f69e4aee6593b80d863912dcea079279724842d.tar.gz
rt.equinox.p2-6f69e4aee6593b80d863912dcea079279724842d.tar.xz
rt.equinox.p2-6f69e4aee6593b80d863912dcea079279724842d.zip
translation of "bundle pool"
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Messages.java1
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java4
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/messages.properties1
3 files changed, 4 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Messages.java b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Messages.java
index bafc546fe..30aa55db1 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Messages.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Messages.java
@@ -21,5 +21,6 @@ public class Messages extends NLS {
}
public static String error_loading_manipulator;
+ public static String BundlePool;
}
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java
index 41e1c679a..f5f5e8e19 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java
@@ -74,7 +74,7 @@ public class Util {
//the repository doesn't exist, so fall through and create a new one
}
try {
- String repositoryName = location + " - bundle pool"; //$NON-NLS-1$
+ String repositoryName = location + Messages.BundlePool;
IArtifactRepository bundlePool = manager.createRepository(location, repositoryName, REPOSITORY_TYPE);
bundlePool.setProperty(IRepository.PROP_SYSTEM, Boolean.valueOf(true).toString());
return (IFileArtifactRepository) bundlePool;
@@ -161,7 +161,7 @@ public class Util {
name = "eclipse"; //$NON-NLS-1$
if (os.equals(org.eclipse.osgi.service.environment.Constants.OS_MACOSX)) {
- return name + ".app/Contents/MacOS/" + name.toLowerCase();
+ return name + ".app/Contents/MacOS/" + name.toLowerCase(); //$NON-NLS-1$
}
return name;
}
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/messages.properties b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/messages.properties
index f02f38589..9ebb02240 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/messages.properties
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/messages.properties
@@ -13,3 +13,4 @@ error_loading_manipulator=Error while loading manipulator.
+BundlePool=\ - bundle pool

Back to the top