Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

externalize InstallAction_ChooseProfile #525

Merged
merged 1 commit into from
Jun 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %bundleName
Bundle-SymbolicName: org.eclipse.equinox.p2.ui.admin;singleton:=true
Bundle-Version: 1.3.400.qualifier
Bundle-Version: 1.3.500.qualifier
Bundle-Activator: org.eclipse.equinox.internal.p2.ui.admin.ProvAdminUIActivator
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private String getUserChosenProfileId() {
}

ListDialog dialog = new ListDialog(getShell());
dialog.setTitle("Choose a Profile");
dialog.setTitle(ProvAdminUIMessages.InstallAction_ChooseProfile);
dialog.setLabelProvider(new ProvElementLabelProvider());
dialog.setInput(new Profiles(getProvisioningUI()));
dialog.setContentProvider(new ProvElementContentProvider());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ public class ProvAdminUIMessages extends NLS {
public static String RepositoryImplementationPropertyPage_PropertiesLabel;
public static String RepositoryImplementationPropertyPage_ValueColumnLabel;

public static String InstallAction_ChooseProfile;

public static String IUGroup_ID;
public static String IUGroup_IU_ID_Required;
public static String IUGroup_Namespace;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ ProvisioningPrefPage_ShowInstallRootsOnly=Show only the install &roots in a prof
ProvisioningPrefPage_HideSystemRepos=Hide &system repositories in repository views
ProvisioningPrefPage_CollapseIUVersions=Show only the latest &versions of IU's
ProvisioningPrefPage_UseCategories=Show IUs by &category in repository views
InstallAction_ChooseProfile=Choose a Profile
InstalledIUPropertyPage_NoInfoAvailable=No profile-specific properties are available.
AddProfileDialog_Title=Add Profile
AddProfileDialog_OperationLabel=Add Profile
Expand Down
2 changes: 1 addition & 1 deletion features/org.eclipse.equinox.p2.sdk/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.eclipse.equinox.p2.sdk"
label="%featureName"
version="3.11.2400.qualifier"
version="3.11.2500.qualifier"
provider-name="%providerName"
license-feature="org.eclipse.license"
license-feature-version="0.0.0">
Expand Down
Loading