mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-08 16:33:22 +00:00
multiColumns print view + bugFixes
This commit is contained in:
@@ -155,6 +155,7 @@
|
||||
"What to Print" = "What to Print";
|
||||
"Options" = "Options";
|
||||
"Tasks with no due date" = "Tasks with no due date";
|
||||
"Display working hours only" = "Display working hours only";
|
||||
"Completed tasks" = "Completed Tasks";
|
||||
|
||||
/* Appointments */
|
||||
@@ -313,6 +314,7 @@
|
||||
|
||||
"Repeat" = "Repeat";
|
||||
"Daily" = "Daily";
|
||||
"Multi-Columns" = "Multi-Columns";
|
||||
"Weekly" = "Weekly";
|
||||
"Monthly" = "Monthly";
|
||||
"Yearly" = "Yearly";
|
||||
|
||||
@@ -32,21 +32,22 @@ static NSArray *layoutItems = nil;
|
||||
{
|
||||
if (!layoutItems)
|
||||
{
|
||||
layoutItems = [NSArray arrayWithObjects: @"LIST", @"Daily", @"Weekly", nil];
|
||||
layoutItems = [NSArray arrayWithObjects: @"LIST", @"Daily", @"Multi-Columns", @"Weekly", nil];
|
||||
[layoutItems retain];
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
- (id) init
|
||||
{
|
||||
item = nil;
|
||||
return [super init];
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
[item release];
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
/****************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user