Skip to content

Commit

Permalink
Fixed dialog title/description + bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
extrafu committed May 25, 2016
1 parent 12fd37d commit 3ceb569
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions NEWS
@@ -1,6 +1,7 @@
31.0.4
------
- make sure a display name is there before using it in the ACL dialog
- fixed the calendar unsubscribe title/text dialog

31.0.3
------
Expand Down
4 changes: 2 additions & 2 deletions chrome/content/calendar/calendar-overlay.js
Expand Up @@ -102,8 +102,8 @@ function SIpromptDeleteCalendar(calendar) {
}
}
else {
let title = calGetString("calendar", "unsubscribeCalendarTitle");
let msg = calGetString("calendar", "unsubscribeCalendarMessage", [calendar.name]);
let title = calGetString("calendar", "removeCalendarButtonUnsubscribe");
let msg = calGetString("calendar", "removeCalendarMessageUnsubscribe", [calendar.name]);
let promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService);
if (promptService.confirm(window, title, msg, {})) {
Expand Down
2 changes: 1 addition & 1 deletion install.rdf
Expand Up @@ -11,7 +11,7 @@
<Description about="urn:mozilla:install-manifest"
em:name="Inverse SOGo Integrator"
em:id="sogo-integrator@inverse.ca"
em:version="31.0.3"
em:version="31.0.4"
em:description="A SOGo integration plugin for Thunderbird and Lightning"
em:iconURL="chrome://sogo-integrator/skin/sogo.png"
em:creator="Inverse &lt;support@inverse.ca&gt;"
Expand Down

0 comments on commit 3ceb569

Please sign in to comment.