Thread: [ifolder-svn] SF.net SVN: ifolder:[7291] trunk/ifolder/src/UI/Mac/OSXClient
Brought to you by:
srinidhi_bs
|
From: <sat...@us...> - 2010-02-10 13:32:09
|
Revision: 7291
http://ifolder.svn.sourceforge.net/ifolder/?rev=7291&view=rev
Author: satyam90
Date: 2010-02-10 13:32:03 +0000 (Wed, 10 Feb 2010)
Log Message:
-----------
Fixed problem of showing correct version of client when showing update dialog
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-02-10 13:28:13 UTC (rev 7290)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-02-10 13:32:03 UTC (rev 7291)
@@ -865,7 +865,7 @@
"Client Upgrade Available" = "Client Upgrade Available";
/*UpgradeAvailableTitle*/
-"Would you like to upgrade your client to 3.8.0.0? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation." = "Would you like to upgrade your client to 3.8.0.0? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation.";
+"Would you like to upgrade your client to %@? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation." = "Would you like to upgrade your client to %@? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation.";
/*Download latest client title*/
"Browse the Location" = "Browse the Location";
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m 2010-02-10 13:28:13 UTC (rev 7290)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m 2010-02-10 13:32:03 UTC (rev 7291)
@@ -1536,7 +1536,7 @@
cliUpdate = nil;
forceQuit = NO;
- //Satya: Variables needed to handle upgrade client
+ //Variables needed to handle upgrade client
NSString* dirName;
int loopCount;
int result;
@@ -1602,7 +1602,7 @@
case UpgradeNeeded:
//Client upgrade is mandatory. So just logout the domain
- //Satya: Alert can be handled this way also
+ //Alert can be handled this way also
/*NSBeginAlertSheet(NSLocalizedString(@"Client upgrade available.",@"UpgradeAvailableTitle"),
NSLocalizedString(@"OK",@"OK Button"),
NSLocalizedString(@"Cancel",@"Cancel"),
@@ -1620,9 +1620,10 @@
NSLocalizedString(@"OK",@"OK Button"),
nil,nil);
*/
- //Satya: Actual message to display for upgrade available and handling it.
+ //Actual message to display for upgrade available and handling it.
+
answer = NSRunAlertPanel(NSLocalizedString(@"Client Upgrade Available",@"UpgradeAvailableTitle"),
- [NSString stringWithFormat:NSLocalizedString(@"Would you like to upgrade your client to 3.8.0.0? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation.",@"UpgradeAvailableTitle"),[cliUpdate ServerVersion]],
+ [NSString stringWithFormat:NSLocalizedString(@"Would you like to upgrade your client to %@? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation.",@"UpgradeAvailableTitle"),[cliUpdate ServerVersion]],
NSLocalizedString(@"Yes",@"Yes"),
NSLocalizedString(@"No",@"No"),nil);
@@ -1696,7 +1697,7 @@
case UpgradeAvailable:
//Latest upgrade available and can or cannot download. Still the current one runs
- /*Satya: Alert can be handled this way also
+ /*Alert can be handled this way also
NSBeginAlertSheet(NSLocalizedString(@"Client upgrade available.",@"UpgradeAvailableTitle"),
NSLocalizedString(@"OK",@"OK Button"),
NSLocalizedString(@"Cancel",@"Cancel"),
@@ -1716,7 +1717,7 @@
nil,nil);
*/
answer = NSRunAlertPanel(NSLocalizedString(@"Client Upgrade Available",@"UpgradeAvailableTitle"),
- [NSString stringWithFormat:NSLocalizedString(@"Would you like to upgrade your client to 3.8.0.0? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation.",@"UpgradeAvailableTitle"),[cliUpdate ServerVersion]],
+ [NSString stringWithFormat:NSLocalizedString(@"Would you like to upgrade your client to %@? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation.",@"UpgradeAvailableTitle"),[cliUpdate ServerVersion]],
NSLocalizedString(@"Yes",@"Yes"),
NSLocalizedString(@"No",@"No"),nil);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jj...@us...> - 2010-04-07 12:50:20
|
Revision: 7305
http://ifolder.svn.sourceforge.net/ifolder/?rev=7305&view=rev
Author: jjohnny
Date: 2010-04-07 12:50:14 +0000 (Wed, 07 Apr 2010)
Log Message:
-----------
Bug 585674 - Version info missing in Mac Finder. Patch by Tim Janzen <tim...@gm...>
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/Info.plist.in
trunk/ifolder/src/UI/Mac/OSXClient/UninstalliFolder/Info.plist.in
Modified: trunk/ifolder/src/UI/Mac/OSXClient/Info.plist.in
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/Info.plist.in 2010-03-30 15:56:25 UTC (rev 7304)
+++ trunk/ifolder/src/UI/Mac/OSXClient/Info.plist.in 2010-04-07 12:50:14 UTC (rev 7305)
@@ -18,6 +18,8 @@
<string>NOVL</string>
<key>CFBundleVersion</key>
<string>@VERSION@</string>
+ <key>CFBundleShortVersionString</key>
+ <string>@VERSION@</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/UninstalliFolder/Info.plist.in
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/UninstalliFolder/Info.plist.in 2010-03-30 15:56:25 UTC (rev 7304)
+++ trunk/ifolder/src/UI/Mac/OSXClient/UninstalliFolder/Info.plist.in 2010-04-07 12:50:14 UTC (rev 7305)
@@ -20,6 +20,8 @@
<string>NOVL</string>
<key>CFBundleVersion</key>
<string>@VERSION@</string>
+ <key>CFBundleShortVersionString</key>
+ <string>@VERSION@</string>
<key>NSAppleScriptEnabled</key>
<string>YES</string>
<key>NSMainNibFile</key>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jj...@us...> - 2010-05-17 17:56:23
|
Revision: 7331
http://ifolder.svn.sourceforge.net/ifolder/?rev=7331&view=rev
Author: jjohnny
Date: 2010-05-17 17:56:17 +0000 (Mon, 17 May 2010)
Log Message:
-----------
ID: Bug #539895
Reviewers: Pratima
Localization Required: No
Documentation Required: No
Description: New server column display the server the iFolder is from.
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/iFolder.xcodeproj/project.pbxproj
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolder.h
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolder.m
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.h
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/classes.nib 2010-05-12 15:20:47 UTC (rev 7330)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/classes.nib 2010-05-17 17:56:17 UTC (rev 7331)
@@ -245,6 +245,7 @@
nameColumn = NSTableColumn;
resetPPKeySheetController = ResetPPKeySheetController;
revertiFolderController = RevertiFolderController;
+ serverColumn = NSTableColumn;
setupSheetController = SetupiFolderSheetController;
statusColumn = NSTableColumn;
statusProgress = NSProgressIndicator;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/info.nib 2010-05-12 15:20:47 UTC (rev 7330)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/info.nib 2010-05-17 17:56:17 UTC (rev 7331)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>55 65 365 392 0 0 1440 878 </string>
+ <string>131 10 829 368 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>181</key>
@@ -19,15 +19,10 @@
</array>
<key>IBOpenObjects</key>
<array>
- <integer>380</integer>
- <integer>50</integer>
- <integer>434</integer>
- <integer>618</integer>
- <integer>181</integer>
- <integer>321</integer>
+ <integer>9</integer>
</array>
<key>IBSystem Version</key>
- <string>8S2167</string>
+ <string>8N1051</string>
<key>IBUserGuides</key>
<dict>
<key>618</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/iFolder.xcodeproj/project.pbxproj
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/iFolder.xcodeproj/project.pbxproj 2010-05-12 15:20:47 UTC (rev 7330)
+++ trunk/ifolder/src/UI/Mac/OSXClient/iFolder.xcodeproj/project.pbxproj 2010-05-17 17:56:17 UTC (rev 7331)
@@ -864,6 +864,7 @@
29B97313FDCFA39411CA2CEA /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 3EAD01D70867661F00AB7E6B /* Build configuration list for PBXProject "iFolder" */;
+ compatibilityVersion = "Xcode 2.4";
hasScannedForEncodings = 1;
knownRegions = (
English,
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolder.h
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolder.h 2010-05-12 15:20:47 UTC (rev 7330)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolder.h 2010-05-17 17:56:17 UTC (rev 7331)
@@ -32,8 +32,9 @@
*******************************************************************************/
#import <Cocoa/Cocoa.h>
+#import "iFolderDomain.h"
+#import "iFolderData.h"
-
#define SYNC_STATE_PREPARING 1
#define SYNC_STATE_SYNCING 2
#define SYNC_STATE_OK 3
@@ -100,6 +101,7 @@
-(NSString *)State;
-(NSString *)LastSync;
-(NSString *)Role;
+-(NSString *)DomainName;
-(BOOL)SSL;
-(NSString *)EncryptionAlgorithm;
-(long)SyncInterval;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolder.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolder.m 2010-05-12 15:20:47 UTC (rev 7330)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolder.m 2010-05-17 17:56:17 UTC (rev 7331)
@@ -360,6 +360,15 @@
else
return NO;
}
+//=======================================================================
+// DomainName
+// get the domain name of this iFolder
+//=======================================================================
+-(NSString *) DomainName
+{
+ iFolderDomain *domain = [[iFolderData sharedInstance] getDomain: [self DomainID]];
+ return [domain name];
+}
//===================================================================
// updateDisplayInformation
// Updates the Window according to latest info available. First it
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.h
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.h 2010-05-12 15:20:47 UTC (rev 7330)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.h 2010-05-17 17:56:17 UTC (rev 7331)
@@ -71,6 +71,7 @@
IBOutlet NSTableColumn *nameColumn;
IBOutlet NSTableColumn *locationColumn;
IBOutlet NSTableColumn *statusColumn;
+ IBOutlet NSTableColumn *serverColumn;
NSArrayController *ifoldersController;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.m 2010-05-12 15:20:47 UTC (rev 7330)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.m 2010-05-17 17:56:17 UTC (rev 7331)
@@ -156,7 +156,7 @@
ifoldersController = [[iFolderData sharedInstance] ifolderArrayController];
- NSMutableDictionary *bindingOptions = [NSMutableDictionary dictionary];
+ NSMutableDictionary *bindingOptions = [NSMutableDictionary dictionary];
// binding options for "name"
[bindingOptions setObject:@"" forKey:@"NSNullPlaceholder"];
@@ -167,6 +167,7 @@
[nameColumn setDataCell:ifolderCell];
[locationColumn setDataCell:ifolderCell];
[statusColumn setDataCell:ifolderCell];
+ [serverColumn setDataCell:ifolderCell];
// bind the table column to the log to display it's contents
[iconColumn bind:@"value" toObject:ifoldersController
@@ -177,6 +178,8 @@
withKeyPath:@"arrangedObjects.properties.Location" options:bindingOptions];
[statusColumn bind:@"value" toObject:ifoldersController
withKeyPath:@"arrangedObjects.properties.Status" options:bindingOptions];
+ [serverColumn bind:@"value" toObject:ifoldersController
+ withKeyPath:@"arrangedObjects.DomainName" options:bindingOptions];
// Setup the double click black magic
[iFolderTable setDoubleAction:@selector(doubleClickedTable:)];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <spr...@us...> - 2010-05-26 11:33:27
|
Revision: 7348
http://ifolder.svn.sourceforge.net/ifolder/?rev=7348&view=rev
Author: spratima
Date: 2010-05-26 11:33:21 +0000 (Wed, 26 May 2010)
Log Message:
-----------
fix for Bug 520137 - Sorted order of iFolders not maintained in Mac client
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/info.nib 2010-05-26 06:14:13 UTC (rev 7347)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/iFolderWindow.nib/info.nib 2010-05-26 11:33:21 UTC (rev 7348)
@@ -17,10 +17,6 @@
<integer>258</integer>
<integer>321</integer>
</array>
- <key>IBOpenObjects</key>
- <array>
- <integer>9</integer>
- </array>
<key>IBSystem Version</key>
<string>8N1051</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m 2010-05-26 06:14:13 UTC (rev 7347)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m 2010-05-26 11:33:21 UTC (rev 7348)
@@ -286,6 +286,8 @@
ifexconlog(@"iFolderData:refres", e);
}
+[ifoldersController rearrangeObjects];
+
[[NSApp delegate] startRefreshTimer];
[instanceLock unlock];
@@ -333,7 +335,10 @@
[ifoldersController addObject:ifolder];
[keyediFolders setObject:ifolder forKey:[ifolder ID]];
}
- [instanceLock unlock];
+
+
+ [instanceLock unlock];
+ [ifoldersController rearrangeObjects];
}
@@ -491,6 +496,7 @@
}
[instanceLock unlock];
+ [ifoldersController rearrangeObjects];
return ifolder;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jj...@us...> - 2010-06-11 03:28:51
|
Revision: 7353
http://ifolder.svn.sourceforge.net/ifolder/?rev=7353&view=rev
Author: jjohnny
Date: 2010-06-11 03:28:44 +0000 (Fri, 11 Jun 2010)
Log Message:
-----------
ID: Bug # 608934
Reviewers: Vikash, Mangesh
Localization Required: Yes
Documentation Required: No
Description: Improved preferences for notifications.
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/iFolder.xcodeproj/project.pbxproj
trunk/ifolder/src/UI/Mac/OSXClient/notify/iFolderNotificationController.m
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.h
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m
Added Paths:
-----------
trunk/ifolder/src/UI/Mac/OSXClient/src/NotificationPrefsController.h
trunk/ifolder/src/UI/Mac/OSXClient/src/NotificationPrefsController.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Preferences.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Preferences.nib/classes.nib 2010-06-11 03:07:00 UTC (rev 7352)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Preferences.nib/classes.nib 2010-06-11 03:28:44 UTC (rev 7353)
@@ -76,6 +76,16 @@
SUPERCLASS = NSWindowController;
},
{CLASS = NSObject; LANGUAGE = ObjC; },
+ {
+ CLASS = NotificationPrefsController;
+ LANGUAGE = ObjC;
+ OUTLETS = {
+ notificationDescriptionColumn = NSTableColumn;
+ notificationEnabledColumn = NSTableColumn;
+ notificationPrefsTable = NSTableView;
+ };
+ SUPERCLASS = NSObject;
+ },
{CLASS = VerticalBarView; LANGUAGE = ObjC; SUPERCLASS = NSView; },
{
ACTIONS = {
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Preferences.nib/info.nib 2010-06-11 03:07:00 UTC (rev 7352)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Preferences.nib/info.nib 2010-06-11 03:28:44 UTC (rev 7353)
@@ -3,11 +3,13 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>110 297 356 240 0 0 1440 878 </string>
+ <string>916 112 408 504 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
+ <key>42</key>
+ <string>662 489 520 92 0 0 1440 878 </string>
<key>45</key>
- <string>460 459 519 254 0 0 1440 878 </string>
+ <string>512 424 466 321 0 0 1440 878 </string>
<key>49</key>
<string>498 519 443 134 0 0 1440 878 </string>
<key>7</key>
@@ -23,7 +25,7 @@
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>8</integer>
+ <integer>45</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/iFolder.xcodeproj/project.pbxproj
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/iFolder.xcodeproj/project.pbxproj 2010-06-11 03:07:00 UTC (rev 7352)
+++ trunk/ifolder/src/UI/Mac/OSXClient/iFolder.xcodeproj/project.pbxproj 2010-06-11 03:28:44 UTC (rev 7353)
@@ -159,6 +159,7 @@
B2CB48E40F82354B0051D657 /* ChangePasswordSheetController.m in Sources */ = {isa = PBXBuildFile; fileRef = B2CB48E20F82354B0051D657 /* ChangePasswordSheetController.m */; };
B2F757AE0D59C3D8005E3C0F /* ImportKeysSheetController.m in Sources */ = {isa = PBXBuildFile; fileRef = B2F757AD0D59C3D8005E3C0F /* ImportKeysSheetController.m */; };
B2FA8F3F0DDC1516000D86AE /* ifolder-conflict22.png in Resources */ = {isa = PBXBuildFile; fileRef = B2FA8F3E0DDC1516000D86AE /* ifolder-conflict22.png */; };
+ F0D17BBC11AB8E6E00BDCF9C /* NotificationPrefsController.m in Sources */ = {isa = PBXBuildFile; fileRef = F0D17BBB11AB8E6E00BDCF9C /* NotificationPrefsController.m */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
@@ -511,6 +512,8 @@
B2F757AC0D59C3D8005E3C0F /* ImportKeysSheetController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ImportKeysSheetController.h; path = src/ImportKeysSheetController.h; sourceTree = "<group>"; };
B2F757AD0D59C3D8005E3C0F /* ImportKeysSheetController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = ImportKeysSheetController.m; path = src/ImportKeysSheetController.m; sourceTree = "<group>"; };
B2FA8F3E0DDC1516000D86AE /* ifolder-conflict22.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "ifolder-conflict22.png"; path = "../../../images/ifolder-conflict22.png"; sourceTree = SOURCE_ROOT; };
+ F0D17BBA11AB8E6E00BDCF9C /* NotificationPrefsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NotificationPrefsController.h; path = src/NotificationPrefsController.h; sourceTree = "<group>"; };
+ F0D17BBB11AB8E6E00BDCF9C /* NotificationPrefsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NotificationPrefsController.m; path = src/NotificationPrefsController.m; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -761,6 +764,8 @@
3E70A40B078DFCD80075681D /* iFolderPrefsController.m */,
3E3BC75407AB5B7B00D2AE46 /* AccountsController.h */,
3E3BC75307AB5B7B00D2AE46 /* AccountsController.m */,
+ F0D17BBA11AB8E6E00BDCF9C /* NotificationPrefsController.h */,
+ F0D17BBB11AB8E6E00BDCF9C /* NotificationPrefsController.m */,
);
name = Preferences;
sourceTree = "<group>";
@@ -864,7 +869,6 @@
29B97313FDCFA39411CA2CEA /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 3EAD01D70867661F00AB7E6B /* Build configuration list for PBXProject "iFolder" */;
- compatibilityVersion = "Xcode 2.4";
hasScannedForEncodings = 1;
knownRegions = (
English,
@@ -1057,6 +1061,7 @@
B2A94CF00EB09A6700B1070A /* clientUpdate.m in Sources */,
B2CB48E40F82354B0051D657 /* ChangePasswordSheetController.m in Sources */,
B213B3B90FD10B340031911A /* ForgotPassphraseSheetController.m in Sources */,
+ F0D17BBC11AB8E6E00BDCF9C /* NotificationPrefsController.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Modified: trunk/ifolder/src/UI/Mac/OSXClient/notify/iFolderNotificationController.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/notify/iFolderNotificationController.m 2010-06-11 03:07:00 UTC (rev 7352)
+++ trunk/ifolder/src/UI/Mac/OSXClient/notify/iFolderNotificationController.m 2010-06-11 03:28:44 UTC (rev 7353)
@@ -108,7 +108,8 @@
//============================================================================================================
+ (void) newiFolderNotification:(iFolder *)ifolder
{
- [[self defaultManager] performSelectorOnMainThread:@selector(ifolderNotify:)
+ if([[NSUserDefaults standardUserDefaults] boolForKey:PREFKEY_NOTIFYIFOLDERS])
+ [[self defaultManager] performSelectorOnMainThread:@selector(ifolderNotify:)
withObject:ifolder waitUntilDone:YES ];
}
@@ -119,8 +120,9 @@
//============================================================================================
+ (void) newUserNotification:(iFolder *)ifolder
{
- [[self defaultManager] performSelectorOnMainThread:@selector(userNotify:)
- withObject:ifolder waitUntilDone:YES ];
+ if([[NSUserDefaults standardUserDefaults] boolForKey:PREFKEY_NOTIFYUSER])
+ [[self defaultManager] performSelectorOnMainThread:@selector(userNotify:)
+ withObject:ifolder waitUntilDone:YES ];
}
//==============================================================================================
@@ -129,8 +131,9 @@
//==============================================================================================
+ (void) collisionNotification:(iFolder *)ifolder
{
- [[self defaultManager] performSelectorOnMainThread:@selector(colNotify:)
- withObject:ifolder waitUntilDone:YES ];
+ if([[NSUserDefaults standardUserDefaults] boolForKey:PREFKEY_NOTIFYCOLL])
+ [[self defaultManager] performSelectorOnMainThread:@selector(colNotify:)
+ withObject:ifolder waitUntilDone:YES ];
}
//==========================================================================================================
@@ -153,53 +156,44 @@
withObject:ifolderAndFileName waitUntilDone:YES ];
}
-//============================================================================================================
-// syncFailNotification
-// This method will create a thread that shows a notification when sync fails due to exclude file policy.
-//============================================================================================================
-//+ (void) syncFailNotification:(NSString*)ifolderAndFileName
-//{
-// [[self defaultManager] performSelectorOnMainThread:@selector(syncFailNotify:)
-// withObject:ifolder waitUntilDone:YES ];
-//}
-
-/*
-+ (void) policyNotification:(iFolder*)ifolder
-{
- [[self defaultManager] performSelectorOnMainThread:@selector(policyNotify:)
- withObject:ifolder waitUntilDone:YES ];
-}
-*/
-
+ (void) accessNotification:(NSString*)ifolderAndFileName
{
- [[self defaultManager] performSelectorOnMainThread:@selector(accessNotify:)
+ if([[NSUserDefaults standardUserDefaults] boolForKey:PREFKEY_NOTIFYPERMISSIONDENIED])
+ {
+ [[self defaultManager] performSelectorOnMainThread:@selector(accessNotify:)
withObject:ifolderAndFileName waitUntilDone:YES ];
+ }
}
+ (void) lockedNotification:(NSString*)ifolderAndFileName
{
- [[self defaultManager] performSelectorOnMainThread:@selector(lockedNotify:)
+ [[self defaultManager] performSelectorOnMainThread:@selector(lockedNotify:)
withObject:ifolderAndFileName waitUntilDone:YES ];
}
+ (void) policySizeNotification:(NSString*)ifolderAndFileName
{
- [[self defaultManager] performSelectorOnMainThread:@selector(policySizeNotify:)
+ if([[NSUserDefaults standardUserDefaults] boolForKey:PREFKEY_NOTIFYSIZEVIOLATION])
+ {
+ [[self defaultManager] performSelectorOnMainThread:@selector(policySizeNotify:)
withObject:ifolderAndFileName waitUntilDone:YES ];
-
+ }
}
+ (void) policyTypeNotification:(NSString*)ifolderAndFileName
{
- [[self defaultManager] performSelectorOnMainThread:@selector(policyTypeNotify:)
+ if([[NSUserDefaults standardUserDefaults] boolForKey:PREFKEY_NOTIFYEXCLUDEFILE])
+ [[self defaultManager] performSelectorOnMainThread:@selector(policyTypeNotify:)
withObject:ifolderAndFileName waitUntilDone:YES ];
}
+ (void) diskFullNotification:(NSString*)ifolderAndFileName
{
- [[self defaultManager] performSelectorOnMainThread:@selector(diskFullNotify:)
+ if([[NSUserDefaults standardUserDefaults] boolForKey:PREFKEY_NOTIFYDISKFULL])
+ {
+ [[self defaultManager] performSelectorOnMainThread:@selector(diskFullNotify:)
withObject:ifolderAndFileName waitUntilDone:YES ];
+ }
}
+ (void)ioErrorNotification:(NSString*)errorMessage
@@ -284,36 +278,6 @@
[self performNotification:notifyContext];
}
-//============================================================================================================
-// syncFailNotify
-// This method will show a notification on the top right corner when sync fails due to exclude file policy.
-//============================================================================================================
-//-(void) syncFailNotify:(NSString*)ifolderAndFileName
-//{
-// if([[NSUserDefaults standardUserDefaults] boolForKey:PREFKEY_SYNCFAIL])
-// {
-// NSArray* nameList = [ifolderAndFileName componentsSeparatedByString:@"###"];
-//
-// [notifyContext setObject:[NSString stringWithFormat:NSLocalizedString(@"Incomplete Synchronization: \"%@\"",@"iFolder SyncFail Title"), [nameList objectAtIndex:0]] forKey:@"title"];
-// [notifyContext setObject:NSLocalizedString(@"Synchronization log contains the information regarding the files that are not synchronized", @"iFolder SyncFail Notification Message")
-// forKey:@"description"];
-
-// [self performNotification:notifyContext];
-// }
-//}
-
-/*
-- (void) policyNotify:(iFolder*)ifolder
-{
- [notifyContext setObject:[NSString stringWithFormat:NSLocalizedString(@"Incomplete Synchronization: %@",@"iFolder SyncFail Title"), [ifolder Name]] forKey:@"title"];
- [notifyContext setObject:NSLocalizedString(@"A policy prevented complete synchronization", @"iFolder policy Notification Message")
- forKey:@"description"];
-
- [self performNotification:notifyContext];
-
-}
-*/
-
- (void) accessNotify:(NSString*)ifolderAndFileName
{
NSArray* nameList = [ifolderAndFileName componentsSeparatedByString:@"###"];
@@ -385,17 +349,9 @@
//=================================================================================================
- (void) performNotification:(NSDictionary *) context
{
-// if( [[eventPrefs objectForKey:@"playSound"] boolValue] && ! [[NSUserDefaults standardUserDefaults] boolForKey:@"JVChatNotificationsMuted"] )
-// [self _playSound:[eventPrefs objectForKey:@"soundPath"]];
- [self _playSound:@"bogus"];
+ [self _playSound:@"bogus"];
-// if( [[eventPrefs objectForKey:@"bounceIcon"] boolValue] )
-// {
-// if( [[eventPrefs objectForKey:@"bounceIconUntilFront"] boolValue] )
-// [self _bounceIconContinuously];
-// else [self _bounceIconOnce];
-// }
if([[NSUserDefaults standardUserDefaults] integerForKey:PREFKEY_NOTIFYBYINDEX] == 0)
{
[self _bounceIconOnce];
@@ -475,13 +431,6 @@
notifySound = [NSSound soundNamed:sName];
-// if( ! path ) return;
-
-// if( ! [path isAbsolutePath] ) path = [[NSString stringWithFormat:@"%@/Sounds", [[NSBundle mainBundle] resourcePath]] stringByAppendingPathComponent:path];
-
-// NSSound *sound = [[NSSound alloc] initWithContentsOfFile:path byReference:YES];
- //[sound setDelegate:self];
-
// When run on a laptop using battery power, the play method may block while the audio
// hardware warms up. If it blocks, the sound WILL NOT PLAY after the block ends.
// To get around this, we check to make sure the sound is playing, and if it isn't
@@ -491,9 +440,5 @@
if( ! [notifySound isPlaying] ) [notifySound play];
}
-//- (void) sound:(NSSound *) sound didFinishPlaying:(BOOL) finish
-//{
-// [sound autorelease];
-//}
@end
Added: trunk/ifolder/src/UI/Mac/OSXClient/src/NotificationPrefsController.h
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/NotificationPrefsController.h (rev 0)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/NotificationPrefsController.h 2010-06-11 03:28:44 UTC (rev 7353)
@@ -0,0 +1,40 @@
+/*****************************************************************************
+*
+* Copyright (c) [2009] Novell, Inc.
+* All Rights Reserved.
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of version 2 of the GNU General Public License as
+* published by the Free Software Foundation.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, contact Novell, Inc.
+*
+* To contact Novell about this file by physical or electronic mail,
+* you may find current contact information at www.novell.com
+*
+*-----------------------------------------------------------------------------
+*
+* $Author: Johnny Jacob <joh...@gm...>
+*
+*******************************************************************************/
+
+#import <Cocoa/Cocoa.h>
+
+@interface NotificationPrefsController : NSObject {
+ IBOutlet NSTableView *notificationPrefsTable;
+ IBOutlet NSTableColumn *notificationEnabledColumn;
+ IBOutlet NSTableColumn *notificationDescriptionColumn;
+}
+
+//Delegates for tableview.
+- (void)awakeFromNib;
+- (int)numberOfRowsInTableView:(NSTableView *)aTableView;
+- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex;
+
+@end
Added: trunk/ifolder/src/UI/Mac/OSXClient/src/NotificationPrefsController.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/NotificationPrefsController.m (rev 0)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/NotificationPrefsController.m 2010-06-11 03:28:44 UTC (rev 7353)
@@ -0,0 +1,149 @@
+/*****************************************************************************
+*
+* Copyright (c) [2009] Novell, Inc.
+* All Rights Reserved.
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of version 2 of the GNU General Public License as
+* published by the Free Software Foundation.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, contact Novell, Inc.
+*
+* To contact Novell about this file by physical or electronic mail,
+* you may find current contact information at www.novell.com
+*
+*-----------------------------------------------------------------------------
+*
+* $Author: Johnny Jacob <joh...@gm...>
+*
+*******************************************************************************/
+
+#import "NotificationPrefsController.h"
+#import "iFolderApplication.h"
+
+#include <Foundation/Foundation.h>
+#include <Foundation/NSLocale.h>
+
+#define KEYCOLUMNINDEX 0
+#define DESCRIPTIONCOLUMNINDEX 1
+
+@implementation NotificationPrefsController
+
+NSMutableDictionary *notifyTableViewSource;
+
+-(void)awakeFromNib
+{
+ id descriptionAndKey;
+ NSArray *notifyDescriptions;
+ unsigned count, index;
+
+ // Generate the data source for Notification preferences TableView.
+ // notifyDescriptions merges NSUserDefaults keys with description strings.
+ notifyDescriptions = [NSArray arrayWithObjects:
+ [NSArray arrayWithObjects:PREFKEY_NOTIFYIFOLDERS,
+ NSLocalizedString(@"When iFolders are shared",
+ @"Display notification when iFolders are shared")],
+ [NSArray arrayWithObjects:PREFKEY_NOTIFYCOLL,
+ NSLocalizedString(@"When conflicts arise",
+ @"Display notification when conflicts arise")],
+ [NSArray arrayWithObjects:PREFKEY_NOTIFYUSER,
+ NSLocalizedString(@"When user joins the iFolder domain",
+ @"Display notification when user joins the iFolder domain")],
+ [NSArray arrayWithObjects:PREFKEY_NOTIFYBYINDEX,
+ NSLocalizedString(@"When new iFolder is created",
+ @"Display notification when new iFolder is created")],
+ [NSArray arrayWithObjects:PREFKEY_NOTIFYQUOTAVIOLATION,
+ NSLocalizedString(@"When quota policy is violated",
+ @"Display notification when quota policy is violated")],
+ [NSArray arrayWithObjects:PREFKEY_NOTIFYSIZEVIOLATION,
+ NSLocalizedString(@"When file size policy is violated",
+ @"Display notification when file size policy is violated")],
+ [NSArray arrayWithObjects:PREFKEY_NOTIFYEXCLUDEFILE,
+ NSLocalizedString(@"When file exclusion policy is violated",
+ @"Display notification when file exclusion policy is violated")],
+ [NSArray arrayWithObjects:PREFKEY_NOTIFYDISKFULL,
+ NSLocalizedString(@"When disk is full",
+ @"Display notification when disk is full")],
+ [NSArray arrayWithObjects:PREFKEY_NOTIFYPERMISSIONDENIED,
+ NSLocalizedString(@"When required permissions are unavailable",
+ @"Display notification When required permissions are unavailable")],
+ [NSArray arrayWithObjects:PREFKEY_NOTIFYPATHLENGTHEXCEEDS,
+ NSLocalizedString(@"When file path exceeds optimal limit",
+ @"Display notification when file path exceeds optimal limit")],
+ nil];
+
+ notifyTableViewSource = [[NSMutableDictionary alloc] init];
+ count = [notifyDescriptions count];
+
+ for (index = 0; index < count; index++) {
+ descriptionAndKey = [notifyDescriptions objectAtIndex:index];
+ [notifyTableViewSource setObject:descriptionAndKey forKey:[NSNumber numberWithInt:index]];
+ }
+
+ //Workaround for a possible bug in cocoa. The table doesn't get rendered.
+ [notificationPrefsTable reloadData];
+}
+
+-(void) dealloc
+{
+ [notifyTableViewSource release];
+ [super dealloc];
+}
+
+// Delegates for TableView
+//========================================================================
+// numberOfRowsInTableView
+// Get the number of rows in tableView
+//========================================================================
+-(int)numberOfRowsInTableView:(NSTableView *)aTableView
+{
+ return [notifyTableViewSource count];
+}
+
+//========================================================================
+// tableView
+// Get the object at row mentioned
+//========================================================================
+-(id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex
+{
+ NSArray *descriptionAndKey;
+ NSString *key;
+
+ descriptionAndKey = [notifyTableViewSource objectForKey:[NSNumber numberWithInt:rowIndex]];
+
+ if (aTableColumn == notificationDescriptionColumn)
+ return [descriptionAndKey objectAtIndex:DESCRIPTIONCOLUMNINDEX];
+ else if (aTableColumn == notificationEnabledColumn) {
+ key = [descriptionAndKey objectAtIndex:KEYCOLUMNINDEX];
+ return [NSNumber numberWithBool:[[NSUserDefaults standardUserDefaults] boolForKey:key]];
+ }
+ return nil;
+}
+
+//========================================================================
+// tableView
+// Set the object in table view at column and row specified
+//========================================================================
+-(void)tableView:(NSTableView *)aTableView setObjectValue:(id)anObject forTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex
+{
+ NSArray *descriptionAndKey;
+ NSString *descriptionKey;
+ BOOL state;
+
+ descriptionAndKey = [notifyTableViewSource objectForKey:[NSNumber numberWithInt:rowIndex]];
+ descriptionKey = [descriptionAndKey objectAtIndex:KEYCOLUMNINDEX];
+ state = [[NSUserDefaults standardUserDefaults] boolForKey:descriptionKey];
+
+ //Respond to Enabled column only as it is editable. Preserve the value in the model.
+ //SwitchButton responds to this through objectValueForTableColumn.
+ if (aTableColumn == notificationEnabledColumn)
+ [[NSUserDefaults standardUserDefaults] setBool:!state forKey:descriptionKey];
+}
+
+@end
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.h
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.h 2010-06-11 03:07:00 UTC (rev 7352)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.h 2010-06-11 03:28:44 UTC (rev 7353)
@@ -36,16 +36,24 @@
#define PREFKEY_WINPOS @"general.winposition"
#define PREFKEY_WINONSTARTUP @"general.winonstartup"
#define PREFKEY_CLICKIFOLDER @"general.clickifolder"
+#define STATE_SHOWMAINWINDOW @"state.showmainwindow"
+#define STATE_SHOWLOGWINDOW @"state.showlogwindow"
+#define PREFKEY_CREATEIFOLDER @"notify.createifolder"
+
#define PREFKEY_NOTIFYIFOLDERS @"notify.ifolders"
#define PREFKEY_NOTIFYCOLL @"notify.collisions"
#define PREFKEY_NOTIFYUSER @"notify.users"
#define PREFKEY_NOTIFYBYINDEX @"notify.byindex"
#define PREFKEY_NOTIFYSOUND @"notify.soundName"
+#define PREFKEY_NOTIFYQUOTAVIOLATION @"notify.quotaviolation"
+#define PREFKEY_NOTIFYSIZEVIOLATION @"notify.sizeviolation"
+#define PREFKEY_NOTIFYEXCLUDEFILE @"notify.excludefile"
+#define PREFKEY_NOTIFYDISKFULL @"notify.diskfull"
+#define PREFKEY_NOTIFYPERMISSIONDENIED @"notify.permissiondenied"
+#define PREFKEY_NOTIFYPATHLENGTHEXCEEDS @"notify.pathlength"
#define PREFKEY_SYNCFAIL @"notify.syncfail"
-#define STATE_SHOWMAINWINDOW @"state.showmainwindow"
-#define STATE_SHOWLOGWINDOW @"state.showlogwindow"
-#define PREFKEY_CREATEIFOLDER @"notify.createifolder"
+
@class LoginWindowController;
@class iFolder;
@class iFolderData;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m 2010-06-11 03:07:00 UTC (rev 7352)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m 2010-06-11 03:28:44 UTC (rev 7353)
@@ -366,10 +366,16 @@
PREFKEY_WINONSTARTUP,
PREFKEY_CLICKIFOLDER,
PREFKEY_NOTIFYIFOLDERS,
- PREFKEY_CREATEIFOLDER,
+ PREFKEY_CREATEIFOLDER,
PREFKEY_NOTIFYCOLL,
PREFKEY_NOTIFYUSER,
PREFKEY_NOTIFYBYINDEX,
+ PREFKEY_NOTIFYQUOTAVIOLATION,
+ PREFKEY_NOTIFYSIZEVIOLATION,
+ PREFKEY_NOTIFYEXCLUDEFILE,
+ PREFKEY_NOTIFYDISKFULL,
+ PREFKEY_NOTIFYPERMISSIONDENIED,
+ PREFKEY_NOTIFYPATHLENGTHEXCEEDS,
PREFKEY_SYNCFAIL,
STATE_SHOWMAINWINDOW,
PREFKEY_NOTIFYSOUND,
@@ -382,6 +388,12 @@
[NSNumber numberWithBool:YES],
[NSNumber numberWithBool:YES],
[NSNumber numberWithBool:YES],
+ [NSNumber numberWithBool:YES],
+ [NSNumber numberWithBool:YES],
+ [NSNumber numberWithBool:YES],
+ [NSNumber numberWithBool:YES],
+ [NSNumber numberWithBool:YES],
+ [NSNumber numberWithBool:YES],
[NSNumber numberWithInt:0],
[NSNumber numberWithBool:YES],
[NSNumber numberWithBool:YES],
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sb...@us...> - 2010-07-07 06:48:32
|
Revision: 7379
http://ifolder.svn.sourceforge.net/ifolder/?rev=7379&view=rev
Author: sbipin
Date: 2010-07-07 06:48:21 +0000 (Wed, 07 Jul 2010)
Log Message:
-----------
ID: #613203
Reviewer: Shane
Localization Required: No
Documentation Required: No
Description: Localization files incorporated.
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/AboutBox.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/AboutBox.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/AcceptCert.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/AcceptCert.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/ConflictResolver.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/ConflictResolver.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/EnterPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/EnterPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Preferences.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Properties.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Properties.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/keyedobjects.nib
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AboutBox.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AboutBox.nib/info.nib 2010-07-07 05:59:17 UTC (rev 7378)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AboutBox.nib/info.nib 2010-07-07 06:48:21 UTC (rev 7379)
@@ -7,6 +7,6 @@
<key>IBFramework Version</key>
<string>446.1</string>
<key>IBSystem Version</key>
- <string>8S165</string>
+ <string>8S2167</string>
</dict>
</plist>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AboutBox.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AcceptCert.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AcceptCert.nib/info.nib 2010-07-07 05:59:17 UTC (rev 7378)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AcceptCert.nib/info.nib 2010-07-07 06:48:21 UTC (rev 7379)
@@ -7,6 +7,6 @@
<key>IBFramework Version</key>
<string>446.1</string>
<key>IBSystem Version</key>
- <string>8S165</string>
+ <string>8S2167</string>
</dict>
</plist>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/AcceptCert.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/ConflictResolver.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Credits.rtf
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Credits.rtf 2010-07-07 05:59:17 UTC (rev 7378)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Credits.rtf 2010-07-07 06:48:21 UTC (rev 7379)
@@ -1,201 +1,305 @@
-{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf480
-{\fonttbl\f0\fmodern\fcharset77 CourierNewPSMT;\f1\fnil\fcharset77 LucidaGrande-Bold;\f2\fnil\fcharset77 LucidaGrande;
-\f3\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\deftab720
-\pard\pardeftab720\ri-962\ql\qnatural
-
-\f0\fs20 \cf0 \
-\
-\
-\
-\
-\
-\
-\
-\
-\
-\
-\
-\pard\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\ri-962\qc
-
-\f1\b\fs36 \cf0 T\uc0\u253 m iFolder 3\
-\pard\pardeftab720\ri-962\ql\qnatural
-
-\f0\b0\fs20 \cf0 \
-\
-\pard\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\ri-962\ql\qnatural
-
-\f1\b\fs24 \cf0 V\uc0\u253 voj\'87\u345 i\
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\ri-962\ql\qnatural
-
-\f2\b0 \cf0
-\f3 Anil Kumar\
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\ql\qnatural\pardirnatural
-\cf0 Arul Selvan\
- Kalidas Balakrishnan\
- Mahabaleshwar Asundi\
- Ramesh Sunder\
- Ravi Kumar\
- Satyanarayana SVV\
- Vikash Mehta
-\f2 \
-\pard\pardeftab720\ri-962\ql\qnatural
-
-\f0\fs20 \cf0 \
-\pard\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\ri-962\ql\qnatural
-
-\f1\b\fs24 \cf0 Kontrola kvality\
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\ri-962\ql\qnatural
-
-\f2\b0 \cf0 Nitin Purswani\
-\pard\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\ql\qnatural
-\cf0 Prabhudas Varadarajan\
-\pard\pardeftab720\ri-962\ql\qnatural
-
-\f0\fs20 \cf0 \
-\pard\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx...
[truncated message content] |
|
From: <sb...@us...> - 2010-07-14 04:30:39
|
Revision: 7391
http://ifolder.svn.sourceforge.net/ifolder/?rev=7391&view=rev
Author: sbipin
Date: 2010-07-14 04:30:33 +0000 (Wed, 14 Jul 2010)
Log Message:
-----------
ID: #532867
Reviewer: swims
Localization Required: No
Documentation Required: No
Description: Translated title for Synchronization log.
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/LogWindow.nib/keyedobjects.nib
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sb...@us...> - 2010-07-14 04:33:46
|
Revision: 7392
http://ifolder.svn.sourceforge.net/ifolder/?rev=7392&view=rev
Author: sbipin
Date: 2010-07-14 04:33:38 +0000 (Wed, 14 Jul 2010)
Log Message:
-----------
ID: #000000
Reviewer: swims
Localization Required: No
Documentation Required: No
Description: Localization changes to match US file.
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Credits.rtf
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Credits.rtf
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Credits.rtf
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Credits.rtf 2010-07-14 04:30:33 UTC (rev 7391)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Credits.rtf 2010-07-14 04:33:38 UTC (rev 7392)
@@ -1,305 +1,200 @@
-{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff31507\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi31507\deflang1033\deflangfe2052\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f4\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Helvetica;}
-{\f13\fbidi \fnil\fcharset134\fprq2{\*\panose 02010600030101010101}SimSun{\*\falt \'cb\'ce\'cc\'e5};}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;}
-{\f39\fbidi \fnil\fcharset0\fprq0{\*\panose 00000000000000000000}LucidaGrande;}{\f228\fbidi \fnil\fcharset134\fprq2{\*\panose 02010600030101010101}@SimSun;}{\f244\fbidi \fmodern\fcharset77\fprq0{\*\panose 00000000000000000000}CourierNewPSMT;}
-{\f245\fbidi \fnil\fcharset77\fprq0{\*\panose 00000000000000000000}LucidaGrande-Bold;}{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
-{\fdbmajor\f31501\fbidi \fnil\fcharset134\fprq2{\*\panose 02010600030101010101}SimSun{\*\falt \'cb\'ce\'cc\'e5};}{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;}
-{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
-{\fdbminor\f31505\fbidi \fnil\fcharset134\fprq2{\*\panose 02010600030101010101}SimSun{\*\falt \'cb\'ce\'cc\'e5};}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}
-{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f286\fbidi \fswiss\fcharset238\fprq2 Helvetica CE;}{\f287\fbidi \fswiss\fcharset204\fprq2 Helvetica Cyr;}
-{\f289\fbidi \fswiss\fcharset161\fprq2 Helvetica Greek;}{\f290\fbidi \fswiss\fcharset162\fprq2 Helvetica Tur;}{\f291\fbidi \fswiss\fcharset177\fprq2 Helvetica (Hebrew);}{\f292\fbidi \fswiss\fcharset178\fprq2 Helvetica (Arabic);}
-{\f293\fbidi \fswiss\fcharset186\fprq2 Helvetica Baltic;}{\f294\fbidi \fswiss\fcharset163\fprq2 Helvetica (Vietnamese);}{\f378\fbidi \fnil\fcharset0\fprq2 SimSun Western{\*\falt \'cb\'ce\'cc\'e5};}{\f586\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}
-{\f587\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}{\f589\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f590\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f593\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}
-{\f2528\fbidi \fnil\fcharset0\fprq2 @SimSun Western;}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
-{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
-{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
-{\fdbmajor\f31520\fbidi \fnil\fcharset0\fprq2 SimSun Western{\*\falt \'cb\'ce\'cc\'e5};}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;}{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}
-{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;}{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}
-{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
-{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
-{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
-{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}
-{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}
-{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31560\fbidi \fnil\fcharset0\fprq2 SimSun Western{\*\falt \'cb\'ce\'cc\'e5};}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}
-{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}
-{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
-{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
-{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
-{\f246\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f247\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f249\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f250\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}
-{\f251\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f252\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f253\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}
-{\f254\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;
-\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\*\defchp
-\fs22\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap \ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa200\sl276\slmult1
-\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe2052\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp2052 \snext0 \sqformat \spriority0 Normal;}
-{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\*
-\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1
-\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe2052\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp2052
-\snext11 \ssemihidden \sunhideused \sqformat Normal Table;}}{\*\rsidtbl \rsid10968920}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\operator jsvoboda}
-{\creatim\yr2010\mo7\dy2\hr20\min15}{\revtim\yr2010\mo7\dy2\hr20\min16}{\version2}{\edmins1}{\nofpages3}{\nofwords148}{\nofchars1572}{\nofcharsws1717}{\vern32771}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}
-\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect
-\widowctrl\ftnbj\aenddoc\trackmoves1\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\horzdoc\dghspace120\dgvspace120\dghorigin1701
-\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale100\rsidroot10968920 \fet0{\*\wgrffmtfilter 2450}\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2
-\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6
-\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang
-{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe2052\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp2052 {
-\rtlch\fcs1 \af244\afs20 \ltrch\fcs0 \f244\fs20\insrsid10968920
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par }\pard \ltrpar\qc \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \ab\af245\afs36 \ltrch\fcs0 \b\f245\fs36\insrsid10968920
-\hich\af245\dbch\af31505\loch\f245 T\loch\af245\dbch\af31505\hich\f245 \u253\'3f\hich\af245\dbch\af31505\loch\f245 m iFolder 3
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af244\afs20 \ltrch\fcs0 \f244\fs20\insrsid10968920
-\par
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \ab\af245\afs24 \ltrch\fcs0 \b\f245\fs24\insrsid10968920
-\hich\af245\dbch\af31505\loch\f245 V\loch\af245\dbch\af31505\hich\f245 \u253\'3f\hich\af245\dbch\af31505\loch\f245 \hich\f245 voj\'87\loch\af245\dbch\af31505\hich\f245 \u345\'3f\hich\af245\dbch\af31505\loch\f245 i
-\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin0\lin0\itap0\pararsid10968920 {\rtlch\fcs1 \ab\af39\afs24 \ltrch\fcs0 \b\f39\fs24\insrsid10968920 \tab }{
-\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\insrsid10968920 \hich\af4\dbch\af31505\loch\f4 Abhilash Gupta
-\par \tab \hich\af4\dbch\af31505\loch\f4 Anil Kumar
-\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin0\lin0\itap0\pararsid10968920 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\insrsid10968920 \tab
-\hich\af4\dbch\af31505\loch\f4 Arul Selvan
-\par \tab \hich\af4\dbch\af31505\loch\f4 GG Hegde
-\par \tab \hich\af4\dbch\af31505\loch\f4 Kalidas Balakrishnan
-\par \tab \hich\af4\dbch\af31505\loch\f4 Mahabaleshwar Asundi
-\par \tab \hich\af4\dbch\af31505\loch\f4 Ramesh Sunder
-\par \tab \hich\af4\dbch\af31505\loch\f4 Ravi Kumar
-\par \tab \hich\af4\dbch\af31505\loch\f4 Satyanarayana SVV
-\par \tab \hich\af4\dbch\af31505\loch\f4 Vikash Mehta}{\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af244\afs20 \ltrch\fcs0 \f244\fs20\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \ab\af245\afs24 \ltrch\fcs0 \b\f245\fs24\insrsid10968920
-\hich\af245\dbch\af31505\loch\f245 Kontrola kvality
-\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin0\lin0\itap0\pararsid10968920 {\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920 \tab
-\hich\af39\dbch\af31505\loch\f39 Eswara Satya
-\par \tab \hich\af39\dbch\af31505\loch\f39 Nitin Purswani
-\par \tab \hich\af39\dbch\af31505\loch\f39 Prabhudas Varadarajan
-\par \tab \hich\af39\dbch\af31505\loch\f39 Shailja Khare
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af244\afs20 \ltrch\fcs0 \f244\fs20\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \ab\af245\afs24 \ltrch\fcs0 \b\f245\fs24\insrsid10968920
-\hich\af245\dbch\af31505\loch\f245 Produktov\loch\af245\dbch\af31505\hich\f245 \u253\'3f\hich\af245\dbch\af31505\loch\f245 management
-\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin0\lin0\itap0\pararsid10968920 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\insrsid10968920 \tab
-\hich\af4\dbch\af31505\loch\f4 Annapurna Lolla
-\par \tab \hich\af4\dbch\af31505\loch\f4 Bindu Sastry}{\rtlch\fcs1 \ab\af39\afs24 \ltrch\fcs0 \b\f39\fs24\insrsid10968920
-\par }{\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920 \tab \hich\af39\dbch\af31505\loch\f39 Biswajeet Mahapatra
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af244\afs20 \ltrch\fcs0 \f244\fs20\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \ab\af245\afs24 \ltrch\fcs0 \b\f245\fs24\insrsid10968920
-\hich\af245\dbch\af31505\loch\f245 Dokumentace}{\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920 \tab \hich\af39\dbch\af31505\loch\f39 Shaju John}{\rtlch\fcs1 \af244\afs20 \ltrch\fcs0
-\f244\fs20\insrsid10968920
-\par
-\par }\pard \ltrpar\qc \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \ab\af245\afs24 \ltrch\fcs0 \b\f245\fs24\insrsid10968920
-\hich\af245\dbch\af31505\loch\f245 \hich\f245 Zvl\'87\loch\af245\dbch\af31505\hich\f245 \u353\'3f\hich\af245\dbch\af31505\loch\f245 \hich\f245 tn\'92\loch\f245 pod\loch\af245\dbch\af31505\hich\f245 \u283\'3f\hich\af245\dbch\af31505\loch\f245 \hich\f245
-kov\'87\loch\f245 \hich\f245 n\'92
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af244\afs20 \ltrch\fcs0 \f244\fs20\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\insrsid10968920 \tab \hich\af4\dbch\af31505\loch\f4
-Jerry Griffis (Novell Production Deployment)
-\par \tab }{\rtlch\fcs1 \ab\af245\afs24 \ltrch\fcs0 \b\f245\fs24\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \ab\af245\afs24 \ltrch\fcs0 \b\f245\fs24\insrsid10968920
-\hich\af245\dbch\af31505\loch\f245 P\loch\af245\dbch\af31505\hich\f245 \u345\'3f\hich\af245\dbch\af31505\loch\f245 isp\loch\af245\dbch\af31505\hich\f245 \u283\'3f\hich\af245\dbch\af31505\loch\f245 \hich\f245 vatel\'8e\loch\f245 , kte
-\loch\af245\dbch\af31505\hich\f245 \u345\'3f\loch\af245\dbch\af31505\hich\f245 \'92\loch\f245 ji\loch\af245\dbch\af31505\hich\f245 \u382\'3f\hich\af245\dbch\af31505\loch\f245 \hich\f245 v organizaci nepracuj\'92
-\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin0\lin0\itap0\pararsid10968920 {\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920 \tab
-\hich\af39\dbch\af31505\loch\f39 Ashok Singh
-\par \tab \hich\af39\dbch\af31505\loch\f39 Boyd Timothy
-\par \tab \hich\af39\dbch\af31505\loch\f39 Brady Anderson
-\par \tab \hich\af39\dbch\af31505\loch\f39 Bruce Bergeson
-\par \tab \hich\af39\dbch\af31505\loch\f39 Bruce Getter
-\par \tab \hich\af39\dbch\af31505\loch\f39 Calvin Gaisford
-\par \tab \hich\af39\dbch\af31505\loch\f39 Catherine Craft
-\par \tab \hich\af39\dbch\af31505\loch\f39 Dale Olds
-\par \tab \hich\af39\dbch\af31505\loch\f39 Dough Eddy
-\par \tab \hich\af39\dbch\af31505\loch\f39 Eric Ward
-\par \tab \hich\af39\dbch\af31505\loch\f39 James Bell
-\par \tab \hich\af39\dbch\af31505\loch\f39 Jared Allen
-\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin0\lin0\itap0\pararsid10968920 {\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920 \tab
-\hich\af39\dbch\af31505\loch\f39 Joe Stark
-\par \tab \hich\af39\dbch\af31505\loch\f39 Johnny Jacob
-\par \tab \hich\af39\dbch\af31505\loch\f39 Mkie Lasky
-\par \tab \hich\af39\dbch\af31505\loch\f39 Paul Thomas
-\par \tab \hich\af39\dbch\af31505\loch\f39 Pete Mimmack
-\par \tab \hich\af39\dbch\af31505\loch\f39 Radhika P.C.
-\par \tab \hich\af39\dbch\af31505\loch\f39 Rob Lyon
-\par \tab \hich\af39\dbch\af31505\loch\f39 Russ Young
-\par \tab \hich\af39\dbch\af31505\loch\f39 Scott Reeves
-\par \tab \hich\af39\dbch\af31505\loch\f39 Sharon Smith
-\par \tab \hich\af39\dbch\af31505\loch\f39 Sujatha Narasimhan
-\par \tab \hich\af39\dbch\af31505\loch\f39 Tm Mellor
-\par \tab \hich\af39\dbch\af31505\loch\f39 Trent Badger
-\par \tab \hich\af39\dbch\af31505\loch\f39 Uma Shankar
-\par \tab \hich\af39\dbch\af31505\loch\f39 Victor Billings
-\par \tab \hich\af39\dbch\af31505\loch\f39 Vipul Kothari
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af244\afs20 \ltrch\fcs0 \f244\fs20\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \ab\af245\afs24 \ltrch\fcs0 \b\f245\fs24\insrsid10968920
-\hich\af245\dbch\af31505\loch\f245 Organizace
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920 \tab
-\hich\af39\dbch\af31505\loch\f39 Mono Team
-\par \tab \hich\af39\dbch\af31505\loch\f39 Novell, Inc.
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af244\afs20 \ltrch\fcs0 \f244\fs20\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \ab\af245\afs24 \ltrch\fcs0 \b\f245\fs24\insrsid10968920
-\hich\af245\dbch\af31505\loch\f245 P\loch\af245\dbch\af31505\hich\f245 \u345\'3f\hich\af245\dbch\af31505\loch\f245 isp\loch\af245\dbch\af31505\hich\f245 \u283\'3f\hich\af245\dbch\af31505\loch\f245 \hich\f245 vatel\'8e\loch\f245 \hich\f245 k\'97
-\loch\f245 \hich\f245 dov\'87\loch\f245 \hich\f245 n\'92
-\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin0\lin0\itap0\pararsid10968920 {\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920 \tab
-\hich\af39\dbch\af31505\loch\f39 Dave Camp
-\par \tab \hich\af39\dbch\af31505\loch\f39 Edd Dumbill
-\par \tab \hich\af39\dbch\af31505\loch\f39 Martin Meredith
-\par \tab \hich\af39\dbch\af31505\loch\f39 Nat Friedman
-\par \tab \hich\af39\dbch\af31505\loch\f39 Niel M. Bornstein
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af244\afs20 \ltrch\fcs0 \f244\fs20\insrsid10968920
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2600\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \ab\af245\afs24 \ltrch\fcs0 \b\f245\fs24\insrsid10968920
-\hich\af245\dbch\af31505\loch\f245 Dal\loch\af245\dbch\af31505\hich\f245 \u353\'3f\loch\af245\dbch\af31505\hich\f245 \'92\loch\f245 p\loch\af245\dbch\af31505\hich\f245 \u345\'3f\hich\af245\dbch\af31505\loch\f245 isp\loch\af245\dbch\af31505\hich\f245
-\u283\'3f\hich\af245\dbch\af31505\loch\f245 \hich\f245 vatel\'8e
-\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\wrapdefault\faauto\rin0\lin0\itap0\pararsid10968920 {\rtlch\fcs1 \af39\afs24 \ltrch\fcs0 \f39\fs24\insrsid10968920 \tab
-\hich\af39\dbch\af31505\loch\f39 Bipin Sivaraman
-\par \tab \hich\af39\dbch\af31505\loch\f39 Jakub Steiner
-\par \tab \hich\af39\dbch\af31505\loch\f39 Jorge Mauricio
-\par \tab \hich\af39\dbch\af31505\loch\f39 Martin Meredith
-\par \tab \hich\af39\dbch\af31505\loch\f39 Sandeep Gaddam
-\par \tab \hich\af39\dbch\af31505\loch\f39 Seb Payne
-\par \tab \hich\af39\dbch\af31505\loch\f39 Srinidhi B
-\par }\pard \ltrpar\ql \li0\ri-962\nowidctlpar\wrapdefault\faauto\rin-962\lin0\itap0 {\rtlch\fcs1 \af244\afs20 \ltrch\fcs0 \f244\fs20\insrsid10968920
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par
-\par \hich\af244\dbch\af31505\loch\f244
-\par \hich\af244\dbch\af31505\loch\f244
-\par \hich\af244\dbch\af31505\loch\f244
-\par
-\par
-\par
-\par
-\par
-\par
-\par \hich\af244\dbch\af31505\loch\f244 \hich\af244\dbch\af31505\loch\f244
-\par \hich\af244\dbch\af31505\loch\f244
-\par
-\par
-\par
-\par
-\par
-\par
-\par }{\*\themedata 504b030414000600080000002100828abc13fa0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb6ac3301045f785fe83d0b6d8
-72ba28a5d8cea249777d2cd20f18e4b12d6a8f843409c9df77ecb850ba082d74231062ce997b55ae8fe3a00e1893f354e9555e6885647de3a8abf4fbee29bbd7
-2a3150038327acf409935ed7d757e5ee14302999a654e99e393c18936c8f23a4dc072479697d1c81e51a3b13c07e4087e6b628ee8cf5c4489cf1c4d075f92a0b
-44d7a07a83c82f308ac7b0a0f0fbf90c2480980b58abc733615aa2d210c2e02cb04430076a7ee833dfb6ce62e3ed7e14693e8317d8cd0433bf5c60f53fea2fe7
-065bd80facb647e9e25c7fc421fd2ddb526b2e9373fed4bb902e182e97b7b461e6bfad3f010000ffff0300504b030414000600080000002100a5d6a7e7c00000
-00360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4fc7060abb08
-84a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b63095120f88d94fbc
-52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462a1a82fe353
-bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f7468656d652f7468
-656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b4b0d592c9c
-070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b4757e8d3f7
-29e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f7468656d65
-312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87615b8116d8
-a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad79482a9c04
-98f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b5d8a314d3c
-94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab999fb7b471
-7509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9699640f671
-9e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd5868b37a088d1
-e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d60cf03ac1a5
-193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f9e7ef3f2d1
-17d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be15c308d3f2
-8acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a99793849c26ae6
-6252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d32a423279a
-668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2af074481847
-bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86e877f0034e
-16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb44f95d843b
-5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a6409fb44d0
-8741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c3d9058edf2
-c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db02565e85f3b966
-0d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276b9f7dec44b
-7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8c33585b5fb
-9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e51440ca2e0
-088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95b21be5ceaf
-8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff6dce591a26
-ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec69ffb9e65d0
-28d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239b75a5bb1e6
-345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a44959d366ad93
-b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e82db8df9f30
-254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f74
-68656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f24
-51eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198
-720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528
-a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100828abc13fa0000001c0200001300000000000000000000000000
-000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b000000000000000000000000
-002b0100005f72656c732f2e72656c73504b01022d00140006000800000021006b79961...
[truncated message content] |
|
From: <spr...@us...> - 2010-08-09 08:44:44
|
Revision: 7428
http://ifolder.svn.sourceforge.net/ifolder/?rev=7428&view=rev
Author: spratima
Date: 2010-08-09 08:44:38 +0000 (Mon, 09 Aug 2010)
Log Message:
-----------
provided an option to check client upgrade :fix for bug : Bug 625049 - Option to Check, client,updates from server is not availabe in MAC client
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/src/AccountsController.m
trunk/ifolder/src/UI/Mac/OSXClient/src/LoginWindowController.m
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.h
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.h
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-08-05 03:17:44 UTC (rev 7427)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-08-09 08:44:38 UTC (rev 7428)
@@ -867,6 +867,18 @@
/*UpgradeAvailableTitle*/
"Would you like to upgrade your client to %@? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation." = "Would you like to upgrade your client to %@? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation.";
+/*clientstatuslatestTitle*/
+"Client status is latest" = "Client status is latest";
+
+/*clientstatus*/
+"Client status"= "Client status";
+
+/*notconnectedTitle*/
+"Not connected"="Not connected";
+
+/*notconnectedMessage*/
+"Unable to search for updates as you are not connected to a domain. Ensure that you are connected to a domain and try again"= "Unable to search for updates as you are not connected to a domain. Ensure that you are connected to a domain and try again";
+
/*Download latest client title*/
"Browse the Location" = "Browse the Location";
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/classes.nib 2010-08-05 03:17:44 UTC (rev 7427)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/classes.nib 2010-08-09 08:44:38 UTC (rev 7428)
@@ -98,6 +98,7 @@
showPrefs = id;
showSyncLog = id;
showiFolderWindow = id;
+ update = id;
};
CLASS = iFolderApplication;
LANGUAGE = ObjC;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/info.nib 2010-08-05 03:17:44 UTC (rev 7427)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/info.nib 2010-08-09 08:44:38 UTC (rev 7428)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>84 124 514 533 0 0 1440 878 </string>
+ <string>537 187 514 533 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>29</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/AccountsController.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/AccountsController.m 2010-08-05 03:17:44 UTC (rev 7427)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/AccountsController.m 2010-08-09 08:44:38 UTC (rev 7428)
@@ -218,7 +218,7 @@
[authStatus release];
authStatus = nil;
}
- [[iFolderData sharedInstance] clientUpdates:[selectedDomain ID]]; //Check for new client available or not
+ [[iFolderData sharedInstance] clientUpdates:[selectedDomain ID] showstatus:NO]; //Check for new client available or not
[[iFolderData sharedInstance] checkForEncryption:[selectedDomain ID] atLogin:YES];
break;
@@ -498,7 +498,7 @@
[NSString stringWithFormat:NSLocalizedString(@"Your password has expired. You have %d grace logins remaining.",
@"Grace Login Warning Dialog message"), [[newDomain remainingGraceLogins] intValue] ]);
}
- [[iFolderData sharedInstance] clientUpdates:[selectedDomain ID]]; //Check for new client available or not
+ [[iFolderData sharedInstance] clientUpdates:[selectedDomain ID] showstatus:NO]; //Check for new client available or not
[[iFolderData sharedInstance] checkForEncryption:[newDomain ID] atLogin:YES];
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/LoginWindowController.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/LoginWindowController.m 2010-08-05 03:17:44 UTC (rev 7427)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/LoginWindowController.m 2010-08-09 08:44:38 UTC (rev 7428)
@@ -175,7 +175,7 @@
NSLocalizedString(@"OK", nil), nil, nil);
}
- [[iFolderData sharedInstance] clientUpdates:authDomainID]; //Check for new client available or not
+ [[iFolderData sharedInstance] clientUpdates:authDomainID showstatus:NO]; //Check for new client available or not
//Check for Encryption
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.h
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.h 2010-08-05 03:17:44 UTC (rev 7427)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.h 2010-08-09 08:44:38 UTC (rev 7428)
@@ -89,6 +89,7 @@
- (IBAction)showPrefs:(id)sender;
- (IBAction)showiFolderWindow:(id)sender;
- (IBAction)showHelp:(id)sender;
+- (IBAction)update:(id)sender;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m 2010-08-05 03:17:44 UTC (rev 7427)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m 2010-08-09 08:44:38 UTC (rev 7428)
@@ -179,8 +179,51 @@
+//===================================================================
+// update
+// check for updates
+//===================================================================
+- (IBAction)update:(id)sender
+{
+ int counter;
+ ifconlog1(@"update..");
+ SimiasService *simiasService = [[SimiasService alloc] init];
+
+ NSArray *domains = [simiasService GetDomains:NO];
+ BOOL connectPrompt=YES;
+ if(domains != nil )
+ {
+ for(counter=0;counter<[domains count];counter++)
+ {
+ iFolderDomain *dom = [domains objectAtIndex:counter];
+ ifconlog1(@"**update");
+
+ if([dom authenticated]){
+ connectPrompt=NO;
+ [[iFolderData sharedInstance] clientUpdates:[dom ID] showstatus:YES];
+ }
+
+ }
+ if(connectPrompt){ //not logged in to any domain
+ NSRunAlertPanel(NSLocalizedString(@"Not connected",@"notconnectedTitle"),
+ NSLocalizedString(@"You are not connected . Please connect to a domain To find updates ",@"notconnectedMessage"),
+ NSLocalizedString(@"OK",@"OK Button"), nil,nil);
+ }
+ }
+ else
+ { //no domain added yet
+ NSRunAlertPanel(NSLocalizedString(@"Not connected",@"notconnectedTitle"),
+ NSLocalizedString(@"You are not connected . Please connect to a domain To find updates ",@"notconnectedMessage"),
+ NSLocalizedString(@"OK",@"OK Button"), nil,nil);
+ }
+
+
+
+}
+
+
//===================================================================
// initializeSimiasEvents
// Initializes the Simias Event client
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.h
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.h 2010-08-05 03:17:44 UTC (rev 7427)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.h 2010-08-09 08:44:38 UTC (rev 7428)
@@ -149,7 +149,7 @@
-(BOOL)getRememberPassphraseOption: (NSString*) domainID;
-(BOOL)canOwnerBeChanged:(NSString*)newUserID forDomain:(NSString*)domainID;
-(BOOL) isPassPhraseSet:(NSString*)domainID;
--(void)clientUpdates:(NSString*)domID;
+-(void)clientUpdates:(NSString*)domID showstatus:(BOOL)show;
//- (void)runUpdates:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo; // This method is to handle NSBeginAlertSheet to handle the upgrade client
-(NSNumber*)changeUserPassword:(NSString*)domainID changePassword:(NSString*)oldPasswd withNewPassword:(NSString*)newPasswd;
-(void)setDomainPassword:(NSString*)domainID withPassword:(NSString*)newPasswd;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m 2010-08-05 03:17:44 UTC (rev 7427)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m 2010-08-09 08:44:38 UTC (rev 7428)
@@ -1538,7 +1538,7 @@
// This method will check for latest client updates.
// Note: need to handle the download and run latest updates.
//=====================================================================
--(void)clientUpdates:(NSString*)domID
+-(void)clientUpdates:(NSString*)domID showstatus:(BOOL)show
{
cliUpdate = nil;
//forceQuit = NO;
@@ -1550,7 +1550,7 @@
BOOL updateStatus;
int answer;
-
+ ifconlog2(@"clientupdate..%@",domID );
NSDictionary *infoDictionary;
infoDictionary = [[NSBundle mainBundle] infoDictionary];
NSString* currentVersion = [infoDictionary objectForKey:@"CFBundleVersion"];
@@ -1593,6 +1593,7 @@
}
@catch(NSException* ex)
{
+ NSLog(@"Exception : show server old ");
NSLog(@"Exception is name:%@ reason:%@",[ex name],[ex reason] );
NSRunAlertPanel(NSLocalizedString(@"Old Server",@"ServerOldTitle"),
NSLocalizedString(@"Server is old. Cannot connect to the server",@"ServerOldMessage"),
@@ -1603,6 +1604,11 @@
{
case Latest:
NSLog(@"Client status is latest");
+ if(show) {
+ NSRunAlertPanel(NSLocalizedString(@"Client status",@"clientstatus"),
+ NSLocalizedString(@"Client status is latest",@"clientstatuslatestTitle"),
+ NSLocalizedString(@"OK",@"OK Button"), nil,nil);
+ }
//Client is latest and not necessary to handle
break;
@@ -1693,6 +1699,7 @@
break;
case ServerOld:
+ NSLog(@"case server old ");
//Server is old and cannot continue, so terminate the application
NSRunAlertPanel(NSLocalizedString(@"Old Server",@"ServerOldTitle"),
NSLocalizedString(@"Server is old. Cannot connect to the server",@"ServerOldMessage"),
@@ -1789,6 +1796,8 @@
}
+
+
/* This method is to handle NSBeginAlertSheet to handle the upgrade client
- (void)runUpdates:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sb...@us...> - 2010-08-16 07:01:14
|
Revision: 7445
http://ifolder.svn.sourceforge.net/ifolder/?rev=7445&view=rev
Author: sbipin
Date: 2010-08-16 07:01:04 +0000 (Mon, 16 Aug 2010)
Log Message:
-----------
ID: #00000
Reviewer: Shane
Localization Required: No
Documentation Required: No
Description: Localized files included.
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LogWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LogWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/InfoPlist.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/InfoPlist.strings
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LogWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LogWindow.nib/info.nib 2010-08-16 06:48:38 UTC (rev 7444)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LogWindow.nib/info.nib 2010-08-16 07:01:04 UTC (rev 7445)
@@ -3,9 +3,13 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>52 315 356 240 0 0 1280 1002 </string>
+ <string>61 264 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>8</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LogWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LogWindow.nib/info.nib 2010-08-16 06:48:38 UTC (rev 7444)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LogWindow.nib/info.nib 2010-08-16 07:01:04 UTC (rev 7445)
@@ -3,9 +3,13 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>52 315 356 240 0 0 1280 1002 </string>
+ <string>61 264 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>8</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/info.nib 2010-08-16 06:48:38 UTC (rev 7444)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/info.nib 2010-08-16 07:01:04 UTC (rev 7445)
@@ -15,7 +15,7 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>429 422 582 376 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
<string>446.1</string>
@@ -23,6 +23,10 @@
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>8</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>targetFramework</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib 2010-08-16 06:48:38 UTC (rev 7444)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib 2010-08-16 07:01:04 UTC (rev 7445)
@@ -17,6 +17,11 @@
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>575</integer>
+ <integer>618</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LogWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LogWindow.nib/info.nib 2010-08-16 06:48:38 UTC (rev 7444)
+++ trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LogWindow.nib/info.nib 2010-08-16 07:01:04 UTC (rev 7445)
@@ -3,9 +3,13 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>52 315 356 240 0 0 1280 1002 </string>
+ <string>61 264 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>8</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LogWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LogWindow.nib/info.nib 2010-08-16 06:48:38 UTC (rev 7444)
+++ trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LogWindow.nib/info.nib 2010-08-16 07:01:04 UTC (rev 7445)
@@ -3,9 +3,13 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>52 315 356 240 0 0 1280 1002 </string>
+ <string>61 264 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>8</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LogWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LogWindow.nib/info.nib 2010-08-16 06:48:38 UTC (rev 7444)
+++ trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LogWindow.nib/info.nib 2010-08-16 07:01:04 UTC (rev 7445)
@@ -3,9 +3,13 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>52 315 356 240 0 0 1280 1002 </string>
+ <string>61 264 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>8</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LogWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LogWindow.nib/info.nib 2010-08-16 06:48:38 UTC (rev 7444)
+++ trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LogWindow.nib/info.nib 2010-08-16 07:01:04 UTC (rev 7445)
@@ -3,9 +3,13 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>52 315 356 240 0 0 1280 1002 </string>
+ <string>61 264 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>8</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LogWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LogWindow.nib/info.nib 2010-08-16 06:48:38 UTC (rev 7444)
+++ trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LogWindow.nib/info.nib 2010-08-16 07:01:04 UTC (rev 7445)
@@ -3,9 +3,13 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>52 315 356 240 0 0 1280 1002 </string>
+ <string>61 264 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>8</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/LogWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sb...@us...> - 2010-08-18 03:29:57
|
Revision: 7447
http://ifolder.svn.sourceforge.net/ifolder/?rev=7447&view=rev
Author: sbipin
Date: 2010-08-18 03:29:50 +0000 (Wed, 18 Aug 2010)
Log Message:
-----------
ID: #628599
Reviewer: Shane
Localization Required: No
Documentation Required: No
Description: All languages, fix for badly laid out Verify Passphrase
dialog.
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/VerifyPassPhrase.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/VerifyPassPhrase.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/VerifyPassPhrase.nib/keyedobjects.nib
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -6,6 +6,10 @@
<string>59 257 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/VerifyPassPhrase.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/VerifyPassPhrase.nib/info.nib 2010-08-16 11:28:23 UTC (rev 7446)
+++ trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/VerifyPassPhrase.nib/info.nib 2010-08-18 03:29:50 UTC (rev 7447)
@@ -3,9 +3,13 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>59 257 356 240 0 0 1440 878 </string>
+ <string>91 296 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>5</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/VerifyPassPhrase.nib/keyedobjects.nib
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <spr...@us...> - 2010-08-24 08:05:07
|
Revision: 7462
http://ifolder.svn.sourceforge.net/ifolder/?rev=7462&view=rev
Author: spratima
Date: 2010-08-24 08:05:01 +0000 (Tue, 24 Aug 2010)
Log Message:
-----------
fix for bug 625049: when multiple domains are configured
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.h
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-08-20 13:20:33 UTC (rev 7461)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-08-24 08:05:01 UTC (rev 7462)
@@ -867,18 +867,18 @@
/*UpgradeAvailableTitle*/
"Would you like to upgrade your client to %@? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation." = "Would you like to upgrade your client to %@? If you click Yes, the latest DMG is downloaded to your system and client is closed automatically.\nYou must then click the downloaded DMG to proceed with the installation.";
-/*clientstatuslatestTitle*/
-"Client status is latest" = "Client status is latest";
+/*iFolderClientUpgradeTitle */
+"iFolder client upgarde" = "iFolder client upgarde";
/*clientstatus*/
-"Client status"= "Client status";
+"You are using the latest available version"= "You are using the latest available version";
-/*notconnectedTitle*/
-"Not connected"="Not connected";
-
/*notconnectedMessage*/
"Unable to search for updates as you are not connected to a domain. Ensure that you are connected to a domain and try again"= "Unable to search for updates as you are not connected to a domain. Ensure that you are connected to a domain and try again";
+/*Unable to complete the operation message*/
+"Unable to complete the operation .Try again"= "Unable to complete the operation .Try again";
+
/*Download latest client title*/
"Browse the Location" = "Browse the Location";
@@ -888,6 +888,7 @@
/*Stop upgrade message*/
"Cannot upgrade to the latest client" = "Cannot upgrade to the latest client";
+
/*Upgrade exception title*/
"Upgrade Failed" = "Upgrade Failed";
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/info.nib 2010-08-20 13:20:33 UTC (rev 7461)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/MainMenu.nib/info.nib 2010-08-24 08:05:01 UTC (rev 7462)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>537 187 514 533 0 0 1440 878 </string>
+ <string>219 188 514 533 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>29</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m 2010-08-20 13:20:33 UTC (rev 7461)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m 2010-08-24 08:05:01 UTC (rev 7462)
@@ -191,30 +191,58 @@
NSArray *domains = [simiasService GetDomains:NO];
BOOL connectPrompt=YES;
+ BOOL latestClient= YES;
+ clientUpdate *cliUpdate= Nil;
+ // NSString status;
if(domains != nil )
{
+ NSDictionary *infoDictionary;
+ infoDictionary = [[NSBundle mainBundle] infoDictionary];
+ NSString* currentVersion = [infoDictionary objectForKey:@"CFBundleVersion"];
+ NSLog(@"currentVersion%@", currentVersion);
+ iFolderService *ifService = [[iFolderService alloc] init];
+
for(counter=0;counter<[domains count];counter++)
{
- iFolderDomain *dom = [domains objectAtIndex:counter];
- ifconlog1(@"**update");
-
- if([dom authenticated]){
- connectPrompt=NO;
- [[iFolderData sharedInstance] clientUpdates:[dom ID] showstatus:YES];
- }
+ iFolderDomain *dom = [domains objectAtIndex:counter];
+ NSLog(@"domain ID %@", [dom ID]);
+ if([dom authenticated]){
+ connectPrompt=NO;
+ @try
+ {
+ cliUpdate = [ ifService CheckForMacUpdate:[dom ID] forCurrentVersion:currentVersion];
+ if([cliUpdate Status] != Latest){
+ cliUpdate=Nil;
+ [[iFolderData sharedInstance] clientUpdates:[dom ID] ];
+ latestClient= NO; //atleast one of the domain has update
+ }
+ }@catch(NSException* ex){
+ ifexconlog(@"Upgrade :Exception ", ex);
+ NSRunAlertPanel(NSLocalizedString(@"iFolder client upgarde",@"iFolderClientUpgradeTitle"),
+ NSLocalizedString(@"Unable to complete the operation .Try again",@"Unable to complete the operation message"),
+ NSLocalizedString(@"OK",@"OK Button"), nil,nil);
+ } @finally {
+ [iFolderService dealloc];
+ }
+ }
}
if(connectPrompt){ //not logged in to any domain
- NSRunAlertPanel(NSLocalizedString(@"Not connected",@"notconnectedTitle"),
- NSLocalizedString(@"You are not connected . Please connect to a domain To find updates ",@"notconnectedMessage"),
- NSLocalizedString(@"OK",@"OK Button"), nil,nil);
+ NSRunAlertPanel(NSLocalizedString(@"iFolder client upgarde",@"iFolderClientUpgradeTitle"),
+ NSLocalizedString(@"Unable to search for updates as you are not connected to a domain. Ensure that you are connected to a domain and try again",@"notconnectedMessage"),
+ NSLocalizedString(@"OK",@"OK Button"), nil,nil);
+ } else if(latestClient){
+ NSRunAlertPanel(NSLocalizedString(@"iFolder client upgarde",@"iFolderClientUpgradeTitle"),
+ NSLocalizedString(@"You are using the latest available version",@"clientstatus"),
+ NSLocalizedString(@"OK",@"OK Button"), nil,nil);
+
}
}
else
- { //no domain added yet
- NSRunAlertPanel(NSLocalizedString(@"Not connected",@"notconnectedTitle"),
- NSLocalizedString(@"You are not connected . Please connect to a domain To find updates ",@"notconnectedMessage"),
- NSLocalizedString(@"OK",@"OK Button"), nil,nil);
+ { //no domain/account added yet
+ NSRunAlertPanel(NSLocalizedString(@"iFolder client upgarde",@"iFolderClientUpgradeTitle"),
+ NSLocalizedString(@"Unable to search for updates as you are not connected to a domain. Ensure that you are connected to a domain and try again",@"notconnectedMessage"),
+ NSLocalizedString(@"OK",@"OK Button"), nil,nil);
}
@@ -816,7 +844,6 @@
//Check for encryption & passphrase
iFolderService *ifService = [[iFolderService alloc] init];
- [[iFolderData sharedInstance] clientUpdates:[dom ID]]; //Check for new client available or not
int secPolicy = 0;
secPolicy = [ifService GetSecurityPolicy:[smne message]];
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.h
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.h 2010-08-20 13:20:33 UTC (rev 7461)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.h 2010-08-24 08:05:01 UTC (rev 7462)
@@ -149,7 +149,7 @@
-(BOOL)getRememberPassphraseOption: (NSString*) domainID;
-(BOOL)canOwnerBeChanged:(NSString*)newUserID forDomain:(NSString*)domainID;
-(BOOL) isPassPhraseSet:(NSString*)domainID;
--(void)clientUpdates:(NSString*)domID showstatus:(BOOL)show;
+-(void)clientUpdates:(NSString*)domID;
//- (void)runUpdates:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo; // This method is to handle NSBeginAlertSheet to handle the upgrade client
-(NSNumber*)changeUserPassword:(NSString*)domainID changePassword:(NSString*)oldPasswd withNewPassword:(NSString*)newPasswd;
-(void)setDomainPassword:(NSString*)domainID withPassword:(NSString*)newPasswd;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m 2010-08-20 13:20:33 UTC (rev 7461)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m 2010-08-24 08:05:01 UTC (rev 7462)
@@ -1538,7 +1538,7 @@
// This method will check for latest client updates.
// Note: need to handle the download and run latest updates.
//=====================================================================
--(void)clientUpdates:(NSString*)domID showstatus:(BOOL)show
+-(void)clientUpdates:(NSString*)domID
{
cliUpdate = nil;
//forceQuit = NO;
@@ -1604,11 +1604,7 @@
{
case Latest:
NSLog(@"Client status is latest");
- if(show) {
- NSRunAlertPanel(NSLocalizedString(@"Client status",@"clientstatus"),
- NSLocalizedString(@"Client status is latest",@"clientstatuslatestTitle"),
- NSLocalizedString(@"OK",@"OK Button"), nil,nil);
- }
+
//Client is latest and not necessary to handle
break;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <spr...@us...> - 2010-09-21 14:50:41
|
Revision: 7491
http://ifolder.svn.sourceforge.net/ifolder/?rev=7491&view=rev
Author: spratima
Date: 2010-09-21 14:50:32 +0000 (Tue, 21 Sep 2010)
Log Message:
-----------
undeleting folders
Added Paths:
-----------
trunk/ifolder/src/UI/Mac/OSXClient/pt-BR.lproj/
trunk/ifolder/src/UI/Mac/OSXClient/zh-CN.lproj/
trunk/ifolder/src/UI/Mac/OSXClient/zh-TW.lproj/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <spr...@us...> - 2010-09-22 11:59:12
|
Revision: 7498
http://ifolder.svn.sourceforge.net/ifolder/?rev=7498&view=rev
Author: spratima
Date: 2010-09-22 11:59:05 +0000 (Wed, 22 Sep 2010)
Log Message:
-----------
bug fix for 532335
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-09-22 11:48:24 UTC (rev 7497)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-09-22 11:59:05 UTC (rev 7498)
@@ -581,12 +581,9 @@
/* iFolder Status Message */
"Server unavailable" = "Server unavailable";
-/* Initial Setup Dialog Title */
-"Set Up an iFolder Account" = "Set Up an iFolder Account";
+/* Set Up an iFolder Account message */
+"Set up an iFolder account" = "Set up an iFolder account";
-/* Error dialog Title new iFolder */
-"Set Up an iFolder Account" = "Set Up an iFolder Account";
-
/* iFolderWin Toolbar Share Selector Button */
"Share" = "Share";
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m 2010-09-22 11:48:24 UTC (rev 7497)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderApplication.m 2010-09-22 11:59:05 UTC (rev 7498)
@@ -512,7 +512,7 @@
{
int rc;
- rc = NSRunAlertPanel(NSLocalizedString(@"Set Up iFolder Account", @"Initial Setup Dialog Title"),
+ rc = NSRunAlertPanel(NSLocalizedString(@"Set up an iFolder account", @"Set Up an iFolder Account message"),
NSLocalizedString(@"To begin using iFolder, you must first set up an iFolder account.", @"Initial Setup Dialog Message"),
NSLocalizedString(@"Yes", @"Initial Setup Dialog Button"),
NSLocalizedString(@"No", @"Initial Setup Dialog Button"),
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.m 2010-09-22 11:48:24 UTC (rev 7497)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderWindowController.m 2010-09-22 11:59:05 UTC (rev 7498)
@@ -271,7 +271,7 @@
{
if([[iFolderData sharedInstance] getDomainCount] < 1)
{
- NSBeginAlertSheet(NSLocalizedString(@"Set Up iFolder Account", @"Error dialog Title new iFolder"), NSLocalizedString(@"OK", @"Error dialog button new iFolder"), nil, nil,
+ NSBeginAlertSheet(NSLocalizedString(@"Set up an iFolder account", @"Set Up an iFolder Account message"), NSLocalizedString(@"OK", @"Error dialog button new iFolder"), nil, nil,
[self window], self, nil, nil, NULL,
NSLocalizedString(@"To begin using iFolder, you must first set up an iFolder account.", @"Error dialog message new iFolder"));
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <spr...@us...> - 2010-09-24 13:22:44
|
Revision: 7511
http://ifolder.svn.sourceforge.net/ifolder/?rev=7511&view=rev
Author: spratima
Date: 2010-09-24 13:22:38 +0000 (Fri, 24 Sep 2010)
Log Message:
-----------
passphrase set dialog title changed
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderEncryptController.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-09-24 12:38:22 UTC (rev 7510)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-09-24 13:22:38 UTC (rev 7511)
@@ -169,6 +169,9 @@
/* Passphrase success title */
"Enter Passphrase" = "Enter Passphrase";
+/* Passphrase set */
+"Passphrase set" = "Passphrase set";
+
/* ResetPP Failure Message */
"Error changing the Passphrase" = "Error changing the Passphrase";
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderEncryptController.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderEncryptController.m 2010-09-24 12:38:22 UTC (rev 7510)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderEncryptController.m 2010-09-24 13:22:38 UTC (rev 7511)
@@ -172,9 +172,9 @@
[simiasServiceHolder StorePassPhrase:domainIDHolder PassPhrase:[enterPassPhrase stringValue] Type:Basic andRememberPP:[rememberPassPhrase state]];
if( [simiasServiceHolder IsPassPhraseSet:domainIDHolder] == YES )
{
- NSRunAlertPanel(NSLocalizedString(@"Enter Passphrase",@"Passphrase success title"),
+ NSRunAlertPanel(NSLocalizedString(@"Passphrase set",@"Passphrase set"),
NSLocalizedString(@"Successfully set the passphrase.",@"Passphrase success message"),
- NSLocalizedString(@"Yes",@"Passphrase successfully set button"),
+ NSLocalizedString(@"OK",@"OKButton Text"),
nil,nil);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <spr...@us...> - 2010-10-06 13:48:48
|
Revision: 7523
http://ifolder.svn.sourceforge.net/ifolder/?rev=7523&view=rev
Author: spratima
Date: 2010-10-06 13:48:38 +0000 (Wed, 06 Oct 2010)
Log Message:
-----------
creates folder if the specified folder does not exists , while ctreating iFolder
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/src/CreateiFolderSheetController.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-10-06 13:01:49 UTC (rev 7522)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2010-10-06 13:48:38 UTC (rev 7523)
@@ -357,8 +357,11 @@
"Invalid PassPhrase Status" = "Invalid PassPhrase Status";
/* Create iFolder Exception Message */
-"Invalid Path. Please check the path that you entered" = "Invalid Path. Please check the path that you entered";
+"Path is invalid. Please check the path that you entered" = "Invalid Path. Please check the path that you entered";
+/* Create iFolder Exception Message */
+"The selected location is inside iFolder \"%@\", iFolder cannot exist inside other iFolders.please select a different location and try again"="The selected location is inside another iFolder, iFolder cannot exist inside other iFolders. Select a different location and try again.";
+
/* iFolder Member Status */
"Invited User" = "Invited User";
@@ -935,7 +938,7 @@
"Select Directory" = "Select Directory";
/*Select directory message*/
-"Either the selected item is not a directory or the selected path does not exist. Select an available directory to upload" = "Either the selected item is not a directory or the selected path does not exist. Select an available directory to upload";
+"The specified location does not exists. Do you want t o create it?" = "The specified location does not exists. Do you want t o create it?";
/*Cannot share iFolder title*/
"Cannot share iFolder" = "Cannot share iFolder";
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/CreateiFolderSheetController.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/CreateiFolderSheetController.m 2010-10-06 13:01:49 UTC (rev 7522)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/CreateiFolderSheetController.m 2010-10-06 13:48:38 UTC (rev 7523)
@@ -32,6 +32,7 @@
#import "iFolderWindowController.h"
#import "iFolderData.h"
#import "iFolderApplication.h"
+#include "applog.h"
@implementation CreateiFolderSheetController
@@ -99,10 +100,73 @@
if (([fileManager fileExistsAtPath:[pathField stringValue] isDirectory:&isDir] == NO) || !isDir)
{
- NSRunAlertPanel(NSLocalizedString(@"Select Directory",@"Select directory title"),NSLocalizedString(@"Either the selected item is not a directory or the selected path does not exist. Select an available directory to upload",@"Select directory message"),NSLocalizedString(@"OK",@"OK"),nil,nil);
- return;
+ int selection= NSRunAlertPanel(NSLocalizedString(@"Select Directory",@"Select directory title"),NSLocalizedString(@"The specified location does not exists .Do you want to create it?",@"Select directory message"),NSLocalizedString(@"OK",@"OK"),NSLocalizedString(@"CANCEL",@"CANCEL"),nil);
+ if(1 != selection) //selected cancel
+ return;
+ else{ //create dir
+
+ if(![[pathField stringValue] isAbsolutePath]){
+ NSRunAlertPanel(NSLocalizedString(@"Exception in Create iFolder",@"Create iFolder Exception Title"),
+ NSLocalizedString(@"Path is invalid. Please check the path that you entered",@"Create iFolder Exception Message"),
+ NSLocalizedString(@"OK",@"OK Button"),nil,nil);
+ return ;
+ }
+
+ //find exsitng ifolder in path
+ NSString* parent=[[pathField stringValue] stringByDeletingLastPathComponent];
+ while (parent!= NULL)
+ {
+ if (([fileManager fileExistsAtPath: parent isDirectory:&isDir] == NO) || !isDir)
+ {
+ parent=[parent stringByDeletingLastPathComponent];
+ }
+ else
+ {
+ //parent exists
+ break;
+ }
+ }
+
+ NSString* temp =parent;
+ //check if its already a iFolder or inside a iFolder
+ while(temp != NULL && ![temp isEqualToString:@"/"]){
+ if([[iFolderData sharedInstance] isiFolderByPath:temp]){
+ NSRunAlertPanel(NSLocalizedString(@"Exception in Create iFolder",@"Create iFolder Exception Title"),
+ [NSString stringWithFormat:NSLocalizedString(@"The selected location is inside iFolder \"%@\", iFolder cannot exist inside other iFolders.please select a different location and try again",@"Create iFolder Exception Message"), temp],
+ NSLocalizedString(@"OK",@"OK Button"),nil,nil);
+ return ;
+ }
+
+ temp=[temp stringByDeletingLastPathComponent];
+ }
+
+ NSArray* pathComponents=[[pathField stringValue] pathComponents];
+ NSArray* parentComponents=[parent pathComponents];
+ int i=[parentComponents count];
+ //recursivly create directories
+ while( i< [pathComponents count] && [pathComponents objectAtIndex:i]!= NULL )
+ {
+ parent=[parent stringByAppendingPathComponent: [pathComponents objectAtIndex:i] ];
+
+ if([fileManager createDirectoryAtPath: parent attributes: nil ])
+ { //directory created
+ i++;
+ }
+ else{
+ ifconlog2(@"error creating path %@",parent);
+ NSRunAlertPanel(NSLocalizedString(@"Exception in Create iFolder",@"Create iFolder Exception Title"),
+ NSLocalizedString(@"Path is invalid. Please check the path that you entered",@"Create iFolder Exception Message"),
+ NSLocalizedString(@"OK",@"OK Button"),nil,nil);
+ return;
+ }
+ }
+ ifconlog2(@"created path %@",parent);
+ }
+
+ // [fileManager createDirectoryAtPath: [pathField stringValue] withIntermediateDirectories:YES attributes: nil error:NULL];// higher versions may use this instead of recursive creation
+
}
-
+
if( ( [ [domainIDField stringValue] length] > 0 ) &&
( [ [pathField stringValue] length] > 0 ) )
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sri...@us...> - 2010-10-14 10:05:17
|
Revision: 7530
http://ifolder.svn.sourceforge.net/ifolder/?rev=7530&view=rev
Author: srinidhi_bs
Date: 2010-10-14 10:05:09 +0000 (Thu, 14 Oct 2010)
Log Message:
-----------
ID: #643447
Reviewer: Shane Wims
Localization Required: No
Documentation Required: No
Description:
- Updated localized files for Mac client
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/MainMenu.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/MainMenu.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/MainMenu.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/MainMenu.nib/objects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/classes.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/keyedobjects.nib
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -98,6 +98,7 @@
showPrefs = id;
showSyncLog = id;
showiFolderWindow = id;
+ update = id;
};
CLASS = iFolderApplication;
LANGUAGE = ObjC;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/info.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>84 124 514 533 0 0 1440 878 </string>
+ <string>219 188 514 533 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>29</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/MainMenu.nib/objects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -8,6 +8,7 @@
enableConflictBin = id;
ifolderMatrixClicked = id;
localFileOpen = id;
+ renameFile = id;
saveFile = id;
serverFileOpen = id;
showWindow = id;
@@ -30,12 +31,16 @@
localFileDate = NSTextField;
localFileName = NSTextField;
localFileSize = NSTextField;
+ localVersionBox = NSBox;
locationName = NSTextField;
mainWindow = id;
nameColumn = NSTableColumn;
+ renameBox = NSBox;
+ renameNewFileName = NSTextField;
serverFileDate = NSTextField;
serverFileName = NSTextField;
serverFileSize = NSTextField;
+ serverVersionBox = NSBox;
setupSheet = id;
};
SUPERCLASS = NSWindowController;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/info.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>131 10 829 368 0 0 1440 878 </string>
+ <string>557 14 829 368 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>181</key>
@@ -21,6 +21,15 @@
<string>8S2167</string>
<key>IBUserGuides</key>
<dict>
+ <key>434</key>
+ <dict>
+ <key>guideLocations</key>
+ <array>
+ <string>Vertical:284.000000</string>
+ </array>
+ <key>guidesLocked</key>
+ <false/>
+ </dict>
<key>618</key>
<dict>
<key>guideLocations</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -98,6 +98,7 @@
showPrefs = id;
showSyncLog = id;
showiFolderWindow = id;
+ update = id;
};
CLASS = iFolderApplication;
LANGUAGE = ObjC;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/info.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>84 124 514 533 0 0 1440 878 </string>
+ <string>219 188 514 533 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>29</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/MainMenu.nib/objects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -8,6 +8,7 @@
enableConflictBin = id;
ifolderMatrixClicked = id;
localFileOpen = id;
+ renameFile = id;
saveFile = id;
serverFileOpen = id;
showWindow = id;
@@ -30,12 +31,16 @@
localFileDate = NSTextField;
localFileName = NSTextField;
localFileSize = NSTextField;
+ localVersionBox = NSBox;
locationName = NSTextField;
mainWindow = id;
nameColumn = NSTableColumn;
+ renameBox = NSBox;
+ renameNewFileName = NSTextField;
serverFileDate = NSTextField;
serverFileName = NSTextField;
serverFileSize = NSTextField;
+ serverVersionBox = NSBox;
setupSheet = id;
};
SUPERCLASS = NSWindowController;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>131 10 829 368 0 0 1440 878 </string>
+ <string>557 14 829 368 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>181</key>
@@ -17,15 +17,19 @@
<integer>258</integer>
<integer>321</integer>
</array>
- <key>IBOpenObjects</key>
- <array>
- <integer>575</integer>
- <integer>618</integer>
- </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
<dict>
+ <key>434</key>
+ <dict>
+ <key>guideLocations</key>
+ <array>
+ <string>Vertical:284.000000</string>
+ </array>
+ <key>guidesLocked</key>
+ <false/>
+ </dict>
<key>618</key>
<dict>
<key>guideLocations</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -98,6 +98,7 @@
showPrefs = id;
showSyncLog = id;
showiFolderWindow = id;
+ update = id;
};
CLASS = iFolderApplication;
LANGUAGE = ObjC;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/info.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>84 124 514 533 0 0 1440 878 </string>
+ <string>219 188 514 533 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>29</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/MainMenu.nib/objects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -8,6 +8,7 @@
enableConflictBin = id;
ifolderMatrixClicked = id;
localFileOpen = id;
+ renameFile = id;
saveFile = id;
serverFileOpen = id;
showWindow = id;
@@ -30,12 +31,16 @@
localFileDate = NSTextField;
localFileName = NSTextField;
localFileSize = NSTextField;
+ localVersionBox = NSBox;
locationName = NSTextField;
mainWindow = id;
nameColumn = NSTableColumn;
+ renameBox = NSBox;
+ renameNewFileName = NSTextField;
serverFileDate = NSTextField;
serverFileName = NSTextField;
serverFileSize = NSTextField;
+ serverVersionBox = NSBox;
setupSheet = id;
};
SUPERCLASS = NSWindowController;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/info.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>131 10 829 368 0 0 1440 878 </string>
+ <string>557 14 829 368 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>181</key>
@@ -21,6 +21,15 @@
<string>8S2167</string>
<key>IBUserGuides</key>
<dict>
+ <key>434</key>
+ <dict>
+ <key>guideLocations</key>
+ <array>
+ <string>Vertical:284.000000</string>
+ </array>
+ <key>guidesLocked</key>
+ <false/>
+ </dict>
<key>618</key>
<dict>
<key>guideLocations</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -98,6 +98,7 @@
showPrefs = id;
showSyncLog = id;
showiFolderWindow = id;
+ update = id;
};
CLASS = iFolderApplication;
LANGUAGE = ObjC;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/info.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>84 124 514 533 0 0 1440 878 </string>
+ <string>219 188 514 533 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>29</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/MainMenu.nib/objects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -8,6 +8,7 @@
enableConflictBin = id;
ifolderMatrixClicked = id;
localFileOpen = id;
+ renameFile = id;
saveFile = id;
serverFileOpen = id;
showWindow = id;
@@ -30,12 +31,16 @@
localFileDate = NSTextField;
localFileName = NSTextField;
localFileSize = NSTextField;
+ localVersionBox = NSBox;
locationName = NSTextField;
mainWindow = id;
nameColumn = NSTableColumn;
+ renameBox = NSBox;
+ renameNewFileName = NSTextField;
serverFileDate = NSTextField;
serverFileName = NSTextField;
serverFileSize = NSTextField;
+ serverVersionBox = NSBox;
setupSheet = id;
};
SUPERCLASS = NSWindowController;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/info.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>131 10 829 368 0 0 1440 878 </string>
+ <string>557 14 829 368 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>181</key>
@@ -21,6 +21,15 @@
<string>8S2167</string>
<key>IBUserGuides</key>
<dict>
+ <key>434</key>
+ <dict>
+ <key>guideLocations</key>
+ <array>
+ <string>Vertical:284.000000</string>
+ </array>
+ <key>guidesLocked</key>
+ <false/>
+ </dict>
<key>618</key>
<dict>
<key>guideLocations</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -98,6 +98,7 @@
showPrefs = id;
showSyncLog = id;
showiFolderWindow = id;
+ update = id;
};
CLASS = iFolderApplication;
LANGUAGE = ObjC;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/info.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>84 124 514 533 0 0 1440 878 </string>
+ <string>219 188 514 533 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>29</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/MainMenu.nib/objects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -8,6 +8,7 @@
enableConflictBin = id;
ifolderMatrixClicked = id;
localFileOpen = id;
+ renameFile = id;
saveFile = id;
serverFileOpen = id;
showWindow = id;
@@ -30,12 +31,16 @@
localFileDate = NSTextField;
localFileName = NSTextField;
localFileSize = NSTextField;
+ localVersionBox = NSBox;
locationName = NSTextField;
mainWindow = id;
nameColumn = NSTableColumn;
+ renameBox = NSBox;
+ renameNewFileName = NSTextField;
serverFileDate = NSTextField;
serverFileName = NSTextField;
serverFileSize = NSTextField;
+ serverVersionBox = NSBox;
setupSheet = id;
};
SUPERCLASS = NSWindowController;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/info.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
- <string>131 10 829 368 0 0 1440 878 </string>
+ <string>557 14 829 368 0 0 1440 878 </string>
<key>IBEditorPositions</key>
<dict>
<key>181</key>
@@ -21,6 +21,15 @@
<string>8S2167</string>
<key>IBUserGuides</key>
<dict>
+ <key>434</key>
+ <dict>
+ <key>guideLocations</key>
+ <array>
+ <string>Vertical:284.000000</string>
+ </array>
+ <key>guidesLocked</key>
+ <false/>
+ </dict>
<key>618</key>
<dict>
<key>guideLocations</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/classes.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/classes.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/classes.nib 2010-10-14 10:05:09 UTC (rev 7530)
@@ -98,6 +98,7 @@
showPrefs = id;
showSyncLog = id;
showiFolderWindow = id;
+ update = id;
};
CLASS = iFolderApplication;
LANGUAGE = ObjC;
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/MainMenu.nib/info.nib 2010-10-14 10:02:31 UTC (rev 7529)
+++ trunk/ifolder/src/UI/Mac/OSXC...
[truncated message content] |
|
From: <sri...@us...> - 2010-11-12 06:24:17
|
Revision: 7554
http://ifolder.svn.sourceforge.net/ifolder/?rev=7554&view=rev
Author: srinidhi_bs
Date: 2010-11-12 06:24:10 +0000 (Fri, 12 Nov 2010)
Log Message:
-----------
ID: #532367, #532353, #532335, #648220, #648015, #648028, #648012, #647996, #647985, #647984
Reviewer:
Localization Required: No
Documentation Required: No
Description:
- Updated Localizable.strings to fix untranslated strings in Mac UI.
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LoginWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LoginWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Localizable.strings
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LoginWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LoginWindow.nib/info.nib 2010-11-10 06:36:28 UTC (rev 7553)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LoginWindow.nib/info.nib 2010-11-12 06:24:10 UTC (rev 7554)
@@ -6,6 +6,10 @@
<string>453 202 356 240 0 0 1440 878 </string>
<key>IBFramework Version</key>
<string>446.1</string>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>6</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
</dict>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/LoginWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Localizable.strings
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sri...@us...> - 2011-06-08 15:14:23
|
Revision: 7598
http://ifolder.svn.sourceforge.net/ifolder/?rev=7598&view=rev
Author: srinidhi_bs
Date: 2011-06-08 15:14:14 +0000 (Wed, 08 Jun 2011)
Log Message:
-----------
ID: #696884
Reviewer: Shane Wims
Localization Required: No
Documentation Required: No
Description:
- Updated localization files for resizing controls properly in Mac
client
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Preferences.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Preferences.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Preferences.nib/keyedobjects.nib
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,17 +15,17 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>445 432 550 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -18,7 +18,7 @@
<string>429 422 582 376 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,17 +15,17 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>435 432 570 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,17 +15,17 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>405 432 630 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,17 +15,17 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>420 432 600 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,17 +15,17 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>460 432 520 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,17 +15,17 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>460 432 520 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,17 +15,17 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>435 432 570 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -13,19 +13,19 @@
<key>49</key>
<string>498 519 443 134 0 0 1440 878 </string>
<key>7</key>
- <string>459 488 522 196 0 0 1440 878 </string>
+ <string>414 515 612 189 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>410 432 620 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,17 +15,17 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>430 432 580 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,14 +15,18 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>420 432 600 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>8</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>targetFramework</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,17 +15,17 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>460 432 520 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Preferences.nib/info.nib 2011-05-25 09:26:58 UTC (rev 7597)
+++ trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Preferences.nib/info.nib 2011-06-08 15:14:14 UTC (rev 7598)
@@ -15,17 +15,17 @@
<key>7</key>
<string>459 488 522 196 0 0 1440 878 </string>
<key>8</key>
- <string>460 408 520 356 0 0 1440 878 </string>
+ <string>460 432 520 356 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../iFolder.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>45</integer>
+ <integer>8</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <spr...@us...> - 2011-07-13 15:26:59
|
Revision: 7605
http://ifolder.svn.sourceforge.net/ifolder/?rev=7605&view=rev
Author: spratima
Date: 2011-07-13 15:26:53 +0000 (Wed, 13 Jul 2011)
Log Message:
-----------
moved strings for localization
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/src/CreateiFolderSheetController.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2011-07-12 12:30:56 UTC (rev 7604)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2011-07-13 15:26:53 UTC (rev 7605)
@@ -357,10 +357,10 @@
"Invalid PassPhrase Status" = "Invalid PassPhrase Status";
/* Create iFolder Exception Message */
-"Path is invalid. Please check the path that you entered" = "Invalid Path. Please check the path that you entered";
+"Path is invalid. Please check the path that you entered" = "Path is invalid. Please check the path that you entered";
/* Create iFolder Exception Message */
-"The selected location is inside iFolder \"%@\", iFolder cannot exist inside other iFolders.please select a different location and try again"="The selected location is inside another iFolder, iFolder cannot exist inside other iFolders. Select a different location and try again.";
+"The selected location is inside iFolder \"%@\", iFolder cannot exist inside other iFolders. Select a different location and try again." = "The selected location is inside iFolder \"%@\", iFolder cannot exist inside other iFolders. Select a different location and try again.";
/* iFolder Member Status */
"Invited User" = "Invited User";
@@ -938,7 +938,7 @@
"Select Directory" = "Select Directory";
/*Select directory message*/
-"The specified location does not exists. Do you want t o create it?" = "The specified location does not exists. Do you want t o create it?";
+"The specified location does not exists. Do you want to create it?" = "The specified location does not exists. Do you want to create it?";
/*Cannot share iFolder title*/
"Cannot share iFolder" = "Cannot share iFolder";
@@ -970,6 +970,9 @@
/*Successful*/
"Successfuly changed password.Log on to the domain with new password" = "Successfuly changed password.Log on to the domain with new password";
+/*Successful message title*/
+"Successful" = "Successful";
+
/*Incorrect old password*/
"Incorrect old password" = "Incorrect old password";
@@ -1088,4 +1091,4 @@
"The specified name contains invalid characters" = "The specified name contains invalid characters"
/*Secondary message when filename contains invalid characters */
-"Ensure that the name does not contain these characters : '\\', ':', '*', '?', '\"', '<', '>', '|'" = "Ensure that the name does not contain these characters : '\\', ':', '*', '?', '\"', '<', '>', '|'"
\ No newline at end of file
+"Ensure that the name does not contain these characters : '\\', ':', '*', '?', '\"', '<', '>', '|'" = "Ensure that the name does not contain these characters : '\\', ':', '*', '?', '\"', '<', '>', '|'"
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/CreateiFolderSheetController.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/CreateiFolderSheetController.m 2011-07-12 12:30:56 UTC (rev 7604)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/CreateiFolderSheetController.m 2011-07-13 15:26:53 UTC (rev 7605)
@@ -100,7 +100,7 @@
if (([fileManager fileExistsAtPath:[pathField stringValue] isDirectory:&isDir] == NO) || !isDir)
{
- int selection= NSRunAlertPanel(NSLocalizedString(@"Select Directory",@"Select directory title"),NSLocalizedString(@"The specified location does not exists .Do you want to create it?",@"Select directory message"),NSLocalizedString(@"OK",@"OK"),NSLocalizedString(@"CANCEL",@"CANCEL"),nil);
+ int selection= NSRunAlertPanel(NSLocalizedString(@"Select Directory",@"Select directory title"),NSLocalizedString(@"The specified location does not exists. Do you want to create it?",@"Select directory message"),NSLocalizedString(@"OK",@"OK"),NSLocalizedString(@"Cancel",@"Cancel"),nil);
if(1 != selection) //selected cancel
return;
else{ //create dir
@@ -132,7 +132,7 @@
while(temp != NULL && ![temp isEqualToString:@"/"]){
if([[iFolderData sharedInstance] isiFolderByPath:temp]){
NSRunAlertPanel(NSLocalizedString(@"Exception in Create iFolder",@"Create iFolder Exception Title"),
- [NSString stringWithFormat:NSLocalizedString(@"The selected location is inside iFolder \"%@\", iFolder cannot exist inside other iFolders.please select a different location and try again",@"Create iFolder Exception Message"), temp],
+ [NSString stringWithFormat:NSLocalizedString(@"The selected location is inside iFolder \"%@\", iFolder cannot exist inside other iFolders. Select a different location and try again.",@"Create iFolder Exception Message"), temp],
NSLocalizedString(@"OK",@"OK Button"),nil,nil);
return ;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <spr...@us...> - 2011-07-21 12:57:37
|
Revision: 7606
http://ifolder.svn.sourceforge.net/ifolder/?rev=7606&view=rev
Author: spratima
Date: 2011-07-21 12:57:31 +0000 (Thu, 21 Jul 2011)
Log Message:
-----------
added missing semicolon and also corrected a missmatch in strings
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m
Modified: trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2011-07-13 15:26:53 UTC (rev 7605)
+++ trunk/ifolder/src/UI/Mac/OSXClient/English.lproj/Localizable.strings 2011-07-21 12:57:31 UTC (rev 7606)
@@ -1088,7 +1088,7 @@
"Synchronization disabled for %@" = "Synchronization disabled for %@";
/*Primary message when filename contains invalid characters */
-"The specified name contains invalid characters" = "The specified name contains invalid characters"
+"The specified name contains invalid characters" = "The specified name contains invalid characters";
/*Secondary message when filename contains invalid characters */
-"Ensure that the name does not contain these characters : '\\', ':', '*', '?', '\"', '<', '>', '|'" = "Ensure that the name does not contain these characters : '\\', ':', '*', '?', '\"', '<', '>', '|'"
+"Ensure that the name does not contain these characters : '\\', ':', '*', '?', '\"', '<', '>', '|'" = "Ensure that the name does not contain these characters : '\\', ':', '*', '?', '\"', '<', '>', '|'";
Modified: trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m 2011-07-13 15:26:53 UTC (rev 7605)
+++ trunk/ifolder/src/UI/Mac/OSXClient/src/iFolderData.m 2011-07-21 12:57:31 UTC (rev 7606)
@@ -536,7 +536,7 @@
{
ifexconlog(@"iFolderDate:createiFolder(encrypted)",ex);
NSRunAlertPanel(NSLocalizedString(@"Exception in Create iFolder",@"Create iFolder Exception Title"),
- NSLocalizedString(@"Invalid Path. Please check the path that you entered",@"Create iFolder Exception Message"),
+ NSLocalizedString(@"Path is invalid. Please check the path that you entered",@"Create iFolder Exception Message"),
NSLocalizedString(@"OK",@"OK Button"),nil,nil);
[instanceLock unlock];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sri...@us...> - 2011-07-21 21:56:38
|
Revision: 7609
http://ifolder.svn.sourceforge.net/ifolder/?rev=7609&view=rev
Author: srinidhi_bs
Date: 2011-07-21 21:56:31 +0000 (Thu, 21 Jul 2011)
Log Message:
-----------
ID: #0000
Reviewer: Shane Wims
Localization Required: No
Documentation Required: No
Description:
- Localized strings for Mac client
Modified Paths:
--------------
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/keyedobjects.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Localizable.strings
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/info.nib
trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/keyedobjects.nib
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/cs.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/de.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/es.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/fr.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/hu.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/it.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ja.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pl.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/pt_BR.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/ru.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/sk.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_CN.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/info.nib
===================================================================
--- trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:52:37 UTC (rev 7608)
+++ trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/info.nib 2011-07-21 21:56:31 UTC (rev 7609)
@@ -10,13 +10,17 @@
<string>140 466 206 275 0 0 1440 878 </string>
</dict>
<key>IBFramework Version</key>
- <string>446.1</string>
+ <string>437.0</string>
<key>IBLockedObjects</key>
<array>
<integer>50</integer>
<integer>258</integer>
<integer>321</integer>
</array>
+ <key>IBOpenObjects</key>
+ <array>
+ <integer>33</integer>
+ </array>
<key>IBSystem Version</key>
<string>8S2167</string>
<key>IBUserGuides</key>
Modified: trunk/ifolder/src/UI/Mac/OSXClient/zh_TW.lproj/iFolderWindow.nib/keyedobjects.nib
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|