Revision: 2659
          http://skim-app.svn.sourceforge.net/skim-app/?rev=2659&view=rev
Author:   hofman
Date:     2007-08-14 08:21:11 -0700 (Tue, 14 Aug 2007)

Log Message:
-----------
Update dutch localization. Add some localization comments. Declare method.

Modified Paths:
--------------
    trunk/Dutch.lproj/DownloadsWindow.nib/keyedobjects.nib
    trunk/Dutch.lproj/Localizable.strings
    trunk/Dutch.lproj/MainMenu.nib/info.nib
    trunk/Dutch.lproj/MainMenu.nib/keyedobjects.nib
    trunk/SKDownloadController.h
    trunk/SKDownloadController.m
    trunk/SKProgressCell.m

Modified: trunk/Dutch.lproj/DownloadsWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)

Modified: trunk/Dutch.lproj/Localizable.strings
===================================================================
(Binary files differ)

Modified: trunk/Dutch.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/Dutch.lproj/MainMenu.nib/info.nib     2007-08-14 12:46:24 UTC (rev 
2658)
+++ trunk/Dutch.lproj/MainMenu.nib/info.nib     2007-08-14 15:21:11 UTC (rev 
2659)
@@ -7,14 +7,10 @@
        <key>IBEditorPositions</key>
        <dict>
                <key>29</key>
-               <string>140 614 635 44 0 0 1440 938 </string>
+               <string>140 614 542 44 0 0 1440 938 </string>
        </dict>
        <key>IBFramework Version</key>
        <string>446.1</string>
-       <key>IBOpenObjects</key>
-       <array>
-               <integer>29</integer>
-       </array>
        <key>IBSystem Version</key>
        <string>8R218</string>
 </dict>

Modified: trunk/Dutch.lproj/MainMenu.nib/keyedobjects.nib
===================================================================
(Binary files differ)

Modified: trunk/SKDownloadController.h
===================================================================
--- trunk/SKDownloadController.h        2007-08-14 12:46:24 UTC (rev 2658)
+++ trunk/SKDownloadController.h        2007-08-14 15:21:11 UTC (rev 2659)
@@ -53,4 +53,6 @@
 - (IBAction)removeDownload:(id)sender;
 - (IBAction)cancelDownload:(id)sender;
 
+- (void)handleApplicationWillTerminateNotification:(NSNotification 
*)notification;
+
 @end

Modified: trunk/SKDownloadController.m
===================================================================
--- trunk/SKDownloadController.m        2007-08-14 12:46:24 UTC (rev 2658)
+++ trunk/SKDownloadController.m        2007-08-14 15:21:11 UTC (rev 2659)
@@ -282,12 +282,12 @@
     NSString *toolTip = nil;
     if ([[tableColumn identifier] isEqualToString:@"cancel"]) {
         if ([[downloads objectAtIndex:row] canCancel])
-            toolTip = NSLocalizedString(@"Cancel download", @"");
+            toolTip = NSLocalizedString(@"Cancel download", @"Tool tip 
message");
         else
-            toolTip = NSLocalizedString(@"Remove download", @"");
+            toolTip = NSLocalizedString(@"Remove download", @"Tool tip 
message");
     } else if ([[tableColumn identifier] isEqualToString:@"resume"]) {
         if ([[downloads objectAtIndex:row] canResume])
-            toolTip = NSLocalizedString(@"Resume download", @"");
+            toolTip = NSLocalizedString(@"Resume download", @"Tool tip 
message");
     }
     return toolTip;
 }

Modified: trunk/SKProgressCell.m
===================================================================
--- trunk/SKProgressCell.m      2007-08-14 12:46:24 UTC (rev 2658)
+++ trunk/SKProgressCell.m      2007-08-14 15:21:11 UTC (rev 2659)
@@ -99,16 +99,16 @@
         NSString *string = nil;
         switch (status) {
             case SKDownloadStatusStarting:
-                string = [NSLocalizedString(@"Starting", @"") 
stringByAppendingEllipsis];
+                string = [NSLocalizedString(@"Starting", @"Download status 
message") stringByAppendingEllipsis];
                 break;
             case SKDownloadStatusFinished:
-                string = NSLocalizedString(@"Finished", @"");
+                string = NSLocalizedString(@"Finished", @"Download status 
message");
                 break;
             case SKDownloadStatusFailed:
-                string = NSLocalizedString(@"Failed", @"");
+                string = NSLocalizedString(@"Failed", @"Download status 
message");
                 break;
             case SKDownloadStatusCanceled:
-                string = NSLocalizedString(@"Canceled", @"");
+                string = NSLocalizedString(@"Canceled", @"Download status 
message");
                 break;
         }
         [self setObjectValue:string];


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Skim-app-commit mailing list
Skim-app-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to