8000 dropping all version strings of "Symfony2", which are not system related · Ma27/idea-php-symfony2-plugin@5806fd5 · GitHub
Skip to content

Commit 5806fd5

Browse files
committed
dropping all version strings of "Symfony2", which are not system related
1 parent 2c5e580 commit 5806fd5

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/fr/adrienbrault/idea/symfony2plugin/Symfony2ProjectComponent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
public class Symfony2ProjectComponent implements ProjectComponent {
3636

3737
public static String HELP_URL = "http://symfony2-plugin.espend.de/";
38-
final private static Logger LOG = Logger.getInstance("Symfony2-Plugin");
38+
final private static Logger LOG = Logger.getInstance("Symfony-Plugin");
3939
private static final ExtensionPointName<ServiceContainerLoader> SERVICE_CONTAINER_POINT_NAME = new ExtensionPointName<ServiceContainerLoader>("fr.adrienbrault.idea.symfony2plugin.extension.ServiceContainerLoader");
4040

4141
private Project project;
@@ -98,7 +98,7 @@ public static Logger getLogger() {
9898
}
9999

100100
public void showInfoNotification(String content) {
101-
Notification errorNotification = new Notification("Symfony2 Plugin", "Symfony2 Plugin", content, NotificationType.INFORMATION);
101+
Notification errorNotification = new Notification("Symfony Plugin", "Symfony Plugin", content, NotificationType.INFORMATION);
102102
Notifications.Bus.notify(errorNotification, this.project);
103103
}
104104

src/fr/adrienbrault/idea/symfony2plugin/action/model/SymfonySymbolSearchModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public SymfonySymbolSearchModel(@NotNull Project project, @NotNull ChooseByNameC
1414

1515
@Override
1616
public String getPromptText() {
17-
return "Symfony2 Symbol";
17+
return "Symfony Symbol";
1818
}
1919

2020
@Override

src/fr/adrienbrault/idea/symfony2plugin/action/ui/ServiceArgumentSelectionDialog.java

Lines changed: 1 addition & 1 del 8000 etion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public static ServiceArgumentSelectionDialog createDialog(Project project, Map<S
241241
dialog.init();
242242

243243
dialog.setMinimumSize(new Dimension(620, 300));
244-
dialog.setTitle("Symfony2: Add Argument");
244+
dialog.setTitle("Symfony: Add Argument");
245245
dialog.setLocationRelativeTo(null);
246246
dialog.setVisible(true);
247247

src/fr/adrienbrault/idea/symfony2plugin/intentions/php/PhpServiceIntention.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ public String getFamilyName() {
5454
@NotNull
5555
@Override
5656
public String getText() {
57-
return "Generate Symfony2 Service";
57+
return "Generate Symfony service";
5858
}
5959
}

src/fr/adrienbrault/idea/symfony2plugin/util/IdeHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public static boolean supportsStatusBar() {
136136

137137
public static void notifyEnableMessage(final Project project) {
138138

139-
Notification notification = new Notification("Symfony2 Plugin", "Symfony2 Plugin", "Enable the Symfony2 Plugin in <a href=\"config\">Project Settings</a> or <a href=\"dismiss\">dismiss</a> further messages", NotificationType.INFORMATION, new NotificationListener() {
139+
Notification notification = new Notification("Symfony Plugin", "Symfony Plugin", "Enable the Symfony Plugin in <a href=\"config\">Project Settings</a> or <a href=\"dismiss\">dismiss</a> further messages", NotificationType.INFORMATION, new NotificationListener() {
140140
@Override
141141
public void hyperlinkUpdate(@NotNull Notification notification, @NotNull HyperlinkEvent event) {
142142

src/fr/adrienbrault/idea/symfony2plugin/widget/SymfonyProfilerWidget.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ private void attachProfileItem(Collection<AnAction> controllerActions, Map<Strin
164164
public ListPopup getPopupStep() {
165165

166166
ActionGroup popupGroup = getActions();
167-
ListPopup listPopup = new PopupFactoryImpl.ActionGroupPopup("Symfony2 Profiler", popupGroup, SimpleDataContext.getProjectContext(project), false, false, false, true, null, -1, null, null);
167+
ListPopup listPopup = new PopupFactoryImpl.ActionGroupPopup("Symfony Profiler", popupGroup, SimpleDataContext.getProjectContext(project), false, false, false, true, null, -1, null, null);
168168

169169
return listPopup;
170170

0 commit comments

Comments
 (0)
0