<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -3,6 +3,10 @@
 		&#20170;&#26085;&#12289;&#26126;&#26085;&#12289;&#12381;&#12428;&#20197;&#22806;&#12391;&#36984;&#12403;&#12383;&#12356;&#12392;&#12371;&#12429;&#12290;
 		&#12354;&#12392;&#12289; postpone &#12364;&#12354;&#12427;&#12392;&#12424;&#12356;&#12397;&#12290;
 
+	* Localize:
+		iPhone &#20596;&#12398;&#35373;&#23450;&#12391; locale &#22793;&#12360;&#12427;&#12384;&#12369;&#12384;&#12392;&#12289;&#26332;&#26085;&#12392;&#12363;&#12364;&#26085;&#26412;&#35486;&#12395;&#12394;&#12425;&#12394;&#12356;&#12290;
+		=&gt; &#12394;&#12387;&#12383;&#12290;&#35373;&#23450;&#12398;&#26360;&#24335;&#12398;&#12392;&#12371;&#12418;&#26085;&#26412;&#35486;&#12395;&#22793;&#12360;&#12383;&#12425;OK&#12384;&#12387;&#12383;&#12290;
+
 2008-11-25 mootoh
 	* PriorityView:
 		TaskView &#12391;&#12289;priority &#12434;&#36984;&#25246;&#12377;&#12427;&#12383;&#12417;&#12398;&#12497;&#12540;&#12484;&#12392;&#12375;&#12390; PriorityView &#12392;&#12356;&#12358;&#12398;&#12434;</diff>
      <filename>ChangeLog.txt</filename>
    </modified>
    <modified>
      <diff>@@ -23,6 +23,10 @@ enum {
    TEXTFIELD_NOTE
 };
 
+const float margin_top  = 16.0f;
+const float margin_left = 16.0f;
+const float column_height = 40.0f;
+
 @synthesize name, list, priority, due_date, note;
 
 - (id)initWithNibName:(NSString *)nibName bundle:(NSBundle *)nibBundle
@@ -59,11 +63,7 @@ enum {
          [self textFieldShouldReturn:name_field];
          [self textFieldShouldReturn:note_field];
 
-         UICCalendarPicker *picker = [[UICCalendarPicker alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 204.0f, 234.0f)];
-         [picker setDelegate:self];
-         [picker showInView:self.view];
-         [picker release];
-         break;
+        break;
       }
       case CELL_NOTE: {
             [tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];
@@ -165,6 +165,9 @@ enum {
 {
    [super loadView];
 
+   /*
+    * Navigation buttons
+    */
    UIBarButtonItem *cancelButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(cancel)];
    self.navigationItem.leftBarButtonItem = cancelButton;
    [cancelButton release];
@@ -173,8 +176,9 @@ enum {
    self.navigationItem.rightBarButtonItem = submitButton;
    [submitButton release];
 
-
-   UITextField *name_field = [[UITextField alloc] initWithFrame:CGRectMake(32, 12, CGRectGetWidth(self.view.frame)-32, CGRectGetHeight(self.view.frame)-8)];
+	
+   UITextField *name_field = [[UITextField alloc] initWithFrame:
+      CGRectMake(margin_left, margin_top, CGRectGetWidth(self.view.frame)-margin_left, column_height)];
    name_field.placeholder = @&quot;what...&quot;;
    name_field.returnKeyType = UIReturnKeyDone;
    name_field.delegate = self;
@@ -185,8 +189,8 @@ enum {
    [self.view addSubview:name_field];
    [name_field release];
 
-   UITextField *note_field = [[UITextField alloc] initWithFrame:CGRectMake(32, 12, CGRectGetWidth(self.view.frame)-32, CGRectGetHeight(self.view.frame)-8)];
-   note_field.placeholder = @&quot;...&quot;;
+   UITextField *note_field = [[UITextField alloc] initWithFrame:CGRectMake(margin_left, margin_top+column_height, CGRectGetWidth(self.view.frame)-margin_left, column_height)];
+   note_field.placeholder = @&quot;note...&quot;;
    note_field.returnKeyType = UIReturnKeyDone;
    note_field.delegate = self;
    name_field.tag = TEXTFIELD_NOTE;
@@ -195,7 +199,7 @@ enum {
 
    // setup priority segment
    NSArray *priority_items = [NSArray arrayWithObjects:@&quot;0&quot;, @&quot;1&quot;, @&quot;2&quot;, @&quot;3&quot;, nil];
-   priority_segment = [[UISegmentedControl alloc] initWithFrame:CGRectMake(32, 6, CGRectGetWidth(self.view.frame)/2-64, 28)];
+   priority_segment = [[UISegmentedControl alloc] initWithFrame:CGRectMake(0, 80, CGRectGetWidth(self.view.frame)/2-64, 40)];
    for (int i=0; i&lt;priority_items.count; i++)
       [priority_segment insertSegmentWithTitle:[priority_items objectAtIndex:i] atIndex:i animated:NO];
 
@@ -203,6 +207,11 @@ enum {
    priority_segment.selectedSegmentIndex = 0;
    [self.view addSubview:priority_segment];
 
+   UICCalendarPicker *picker = [[UICCalendarPicker alloc] initWithFrame:CGRectMake(0.0f, 120, 204.0f, 234.0f)];
+   [picker setDelegate:self];
+   [picker showInView:self.view];
+   [picker release];
+
 #if 0
    if (due_date) {
       NSString *dd = [[due_date componentsSeparatedByString:@&quot;T&quot;] objectAtIndex:0];
@@ -215,10 +224,12 @@ enum {
    }
 #endif // 0
 
+   /*
    UILabel *list_label = [[UILabel alloc] init];
    list_label.text = list.name;
    [self.view addSubview:list_label];
    [list_label release];
+   */
 }
 
 - (void) picker:(UICCalendarPicker *)picker didSelectDate:(NSArray *)selectedDate</diff>
      <filename>controller/AddTaskViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -74,7 +74,11 @@ static const int SECTIONS = 4;
 - (id) initWithStyle:(UITableViewStyle)style
 {
    if (self = [super initWithStyle:style]) {
-      self.title = @&quot;Overview&quot;;
+		NSDate *today = [NSDate date];
+      NSDateFormatter *formatter = [[NSDateFormatter alloc]
+           initWithDateFormat:@&quot;%1m/%1d (%a)&quot; allowNaturalLanguage:YES];
+      self.title = [formatter stringFromDate:today];
+      [formatter release];
 
       self.headers = [NSArray arrayWithObjects:@&quot;Today&quot;, @&quot;Tomorrow&quot;, @&quot;7 days&quot;, @&quot;Outdated&quot;, nil];
       AppDelegate *app = (AppDelegate *)[[UIApplication sharedApplication] delegate];
@@ -102,7 +106,6 @@ static const int SECTIONS = 4;
    RTMTaskCell *cell = (RTMTaskCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
       cell = [[[RTMTaskCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
-      //cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }
 
    RTMTask *task = [[due_tasks objectAtIndex:indexPath.section] objectAtIndex:indexPath.row];</diff>
      <filename>controller/HomeViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -179,7 +179,7 @@ static UIColor *holidayColor;
 }
 
 - (void)showInView:(UIView *)aView {
-	[self setCenter:CGPointMake(aView.frame.size.width / 2, self.frame.size.height / 2)];
+	//[self setCenter:CGPointMake(aView.frame.size.width / 2, self.frame.size.height / 2)];
 	[self setUpCalendarWithDate:pageDate];
 	
 	/*if (style == UICCalendarPickerStyleDefault) {</diff>
      <filename>vendor/UICCalendarPicker/Classes/UICCalendarPicker.m</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>6e42111f7e8889ee9b48fc9de4083231aed70540</id>
    </parent>
  </parents>
  <author>
    <name>mootoh</name>
    <email>mootoh@gmail.com</email>
  </author>
  <url>http://github.com/mootoh/milpon/commit/3684ccbe1edcb97d16b0d3265aa17d62f56e2c2a</url>
  <id>3684ccbe1edcb97d16b0d3265aa17d62f56e2c2a</id>
  <committed-date>2008-12-17T16:23:37-08:00</committed-date>
  <authored-date>2008-12-17T16:23:37-08:00</authored-date>
  <message>tweaking UICCalendarPicker, HomeVIew.</message>
  <tree>719c5200b48ae864bc52c9d552f4cfe3ad0d0f80</tree>
  <committer>
    <name>mootoh</name>
    <email>mootoh@gmail.com</email>
  </committer>
</commit>
