Monotone-Parent: fd0f517e16d123b59c1eef87df8ba3ec2fe3fa56

Monotone-Revision: ee357f4b9d019fa34ff7f3951f8a7becf88fba19

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-03-21T14:29:31
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2007-03-21 14:29:31 +00:00
parent 26d719e4b7
commit f13bed3a1e
4 changed files with 14 additions and 12 deletions

View File

@ -91,6 +91,7 @@
"delete" = "Delete";
"proposal" = "Proposal";
"Save and Close" = "Save and Close";
"Close" = "Close";
"Invite Attendees" = "Invite Attendees";
"Documents" = "Documents";
"Cancel" = "Cancel";

View File

@ -91,6 +91,7 @@
"delete" = "Supprimer";
"proposal" = "Recherche de plages horaires";
"Save and Close" = "Enregistrer et fermer";
"Close" = "Fermer";
"Invite Attendees" = "Participants";
"Documents" = "Documents";
"Cancel" = "Annuler";

View File

@ -1,7 +1,7 @@
( /* the toolbar groups -*-cperl-*- */
( { link = "#";
isSafe = NO;
label = "Cancel";
label = "Close";
onclick = "window.close(); return false;";
image = "tb-ab-delete-flat-24x24.png"; } )
image = "tb-mail-stop-flat-24x24.png"; } )
)

View File

@ -363,16 +363,6 @@
[event setTransparency: @"OPAQUE"];
}
- (id) acceptAction
{
return [self acceptOrDeclineAction:YES];
}
- (id) declineAction
{
return [self acceptOrDeclineAction:NO];
}
// TODO: add tentatively
- (id) acceptOrDeclineAction: (BOOL) _accept
@ -384,4 +374,14 @@
return self;
}
- (id) acceptAction
{
return [self acceptOrDeclineAction:YES];
}
- (id) declineAction
{
return [self acceptOrDeclineAction:NO];
}
@end