diff --git a/.gitmodules b/.gitmodules index f2ad6f481..00f750f7d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "Quicksilver/Code-External/VDKQueue"] path = Quicksilver/Code-External/VDKQueue - url = git://github.com/bdkjones/VDKQueue.git + url = https://github.com/quicksilver/VDKQueue.git [submodule "Quicksilver/Code-External/DisableSubviews"] path = Quicksilver/Code-External/DisableSubviews url = git://github.com/ardalahmet/DisableSubviews.git diff --git a/Quicksilver/Code-App/QSApp.h b/Quicksilver/Code-App/QSApp.h index 5ce2c3bef..98c01f6fc 100644 --- a/Quicksilver/Code-App/QSApp.h +++ b/Quicksilver/Code-App/QSApp.h @@ -18,4 +18,6 @@ extern BOOL QSApplicationCompletedLaunch; - (void)setGlobalKeyEquivalentTarget:(NSResponder *)value; - (void)addEventDelegate:(id)eDelegate; - (void)removeEventDelegate:(id)eDelegate; + +- (void)qs_beginSheet:(NSWindow *)sheet modalForWindow:(NSWindow *)docWindow completionHandler:(void (^)(NSInteger result))completionHandler; @end diff --git a/Quicksilver/Code-App/QSApp.m b/Quicksilver/Code-App/QSApp.m index 6a4a3e295..fc95fdbc9 100644 --- a/Quicksilver/Code-App/QSApp.m +++ b/Quicksilver/Code-App/QSApp.m @@ -9,6 +9,8 @@ #import "QSProcessMonitor.h" #import "NSEvent+BLTRExtensions.h" +typedef void (^QSModalSessionBlock)(NSInteger result); + BOOL QSApplicationCompletedLaunch = NO; @interface NSObject (QSAppDelegateProtocols) @@ -158,4 +160,13 @@ - (BOOL)isPrerelease { return releaseLevel > 0; } +- (void)qs_sheetDidEnd:(NSWindow *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo { + QSModalSessionBlock completionHandler = (__bridge_transfer QSModalSessionBlock)contextInfo; + completionHandler(returnCode); +} + +- (void)qs_beginSheet:(NSWindow *)sheet modalForWindow:(NSWindow *)docWindow completionHandler:(QSModalSessionBlock)completionHandler { + [self beginSheet:sheet modalForWindow:docWindow modalDelegate:self didEndSelector:@selector(qs_sheetDidEnd:returnCode:contextInfo:) contextInfo:(__bridge_retained void *)([completionHandler copy])]; +} + @end diff --git a/Quicksilver/Code-App/QSController.m b/Quicksilver/Code-App/QSController.m index 115fad0b7..9cac49165 100644 --- a/Quicksilver/Code-App/QSController.m +++ b/Quicksilver/Code-App/QSController.m @@ -282,8 +282,7 @@ - (IBAction)unsureQuit:(id)sender { QSWindow *quitWindow = nil; if (!quitWindowController) { - quitWindowController = [NSWindowController alloc]; - [quitWindowController initWithWindowNibName:@"QuitConfirm" owner:quitWindowController]; + quitWindowController = [[NSWindowController alloc] initWithWindowNibName:@"QuitConfirm"]; quitWindow = (QSBorderlessWindow *)[quitWindowController window]; [quitWindow setLevel:kCGPopUpMenuWindowLevel+1]; @@ -1113,6 +1112,7 @@ - (void)registerForErrors { } - (BOOL)exceptionHandler:(NSExceptionHandler *)sender shouldLogException:(NSException *)exception mask:(NSUInteger)aMask { + NSLog(@"Exception raised: %@", exception); [exception printStackTrace]; return NO; } // mask is NSLogMask, exception's userInfo has stack trace for key NSStackTraceKey diff --git a/Quicksilver/Code-App/QSModifierKeyEvents.m b/Quicksilver/Code-App/QSModifierKeyEvents.m index 345a8ca47..42046f666 100644 --- a/Quicksilver/Code-App/QSModifierKeyEvents.m +++ b/Quicksilver/Code-App/QSModifierKeyEvents.m @@ -270,7 +270,10 @@ - (void)setModifierActivationMask:(NSUInteger)value { - (void)sendAction { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" [self.target performSelector:self.action withObject:nil]; +#pragma clang diagnostic pop } - (BOOL)checkForModifierTap { diff --git a/Quicksilver/Code-App/QSTriggersPrefPane.h b/Quicksilver/Code-App/QSTriggersPrefPane.h index c48f3d677..a88497abc 100644 --- a/Quicksilver/Code-App/QSTriggersPrefPane.h +++ b/Quicksilver/Code-App/QSTriggersPrefPane.h @@ -75,7 +75,6 @@ - (void)reloadFilters; - (void)showTrigger:(QSTrigger *)trigger; -- (BOOL)editTriggerCommand:(QSTrigger *)trigger callback:(SEL)aSelector; - (void)showTriggerGroupWithIdentifier:(NSString *)groupID; - (id)preferencesSplitView; diff --git a/Quicksilver/Code-App/QSTriggersPrefPane.m b/Quicksilver/Code-App/QSTriggersPrefPane.m index 35cda95ba..2bbf0cafd 100644 --- a/Quicksilver/Code-App/QSTriggersPrefPane.m +++ b/Quicksilver/Code-App/QSTriggersPrefPane.m @@ -24,6 +24,8 @@ #import "QSTableView.h" #import "QSOutlineView.h" +#import "QSApp.h" + @implementation QSTriggersArrayController - (void)prepareContent {} @end @@ -275,7 +277,15 @@ - (void)setSelectedTrigger:(QSTrigger *)newSelectedTrigger { // Enabling/disabling of the 'edit' button is done programmatically within the outlineClicked: method - (IBAction)editCommand:(id)sender { - [self editTriggerCommand:selectedTrigger callback:@selector(editSheetDidEnd:returnCode:contextInfo:)]; + [commandEditor setCommand:[selectedTrigger command]]; + [NSApp qs_beginSheet:commandEditor.window modalForWindow:self.mainView.window completionHandler:^(NSInteger result) { + QSCommand *command = [commandEditor representedCommand]; + if (command) { + [selectedTrigger setCommand:command]; + [[QSTriggerCenter sharedInstance] triggerChanged:selectedTrigger]; + } + [commandEditor.window orderOut:self]; + }]; } - (IBAction)showTriggerInfo:(id)sender { @@ -288,41 +298,6 @@ - (IBAction)hideTriggerInfo:(id)sender { [optionsDrawer close:sender]; } -- (BOOL)editTriggerCommand:(QSTrigger *)trigger callback:(SEL)aSelector { - //[[optionsDrawer contentView] window] // - [commandEditor setCommand:[trigger command]]; - [NSApp beginSheet:[commandEditor window] modalForWindow:[[self mainView] window] modalDelegate:self didEndSelector:aSelector contextInfo:CFBridgingRetain(trigger)]; - return YES; -} - -- (void)editSheetDidEnd:(NSWindow *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo { - QSCommand *command = [commandEditor representedCommand]; - QSTrigger *trigger = (__bridge QSTrigger *)contextInfo; - if (command) { - [trigger setCommand:command]; - [[QSTriggerCenter sharedInstance] triggerChanged:trigger]; - } - [sheet orderOut:self]; -} - -- (void)addSheetDidEnd:(NSWindow *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo { - QSCommand *command = [commandEditor representedCommand]; - QSTrigger *trigger = (__bridge QSTrigger*)contextInfo; - if (command) { - // if (VERBOSE) NSLog(@"command %@", command); - [trigger setCommand:command]; - [[QSTriggerCenter sharedInstance] triggerChanged:trigger]; - } else { - [[QSTriggerCenter sharedInstance] removeTrigger:trigger]; -// [self updateTriggerArray]; - } - // select the trigger (its position has changed since adding the trigger) - NSUInteger selectTriggerIndex = [[triggerArrayController arrangedObjects] indexOfObject:trigger]; - if (selectTriggerIndex != NSNotFound) { - [triggerTable selectRowIndexes:[NSIndexSet indexSetWithIndex:selectTriggerIndex] byExtendingSelection:NO]; - } - [sheet orderOut:self]; -} - (IBAction)addTrigger:(id)sender { if (!mOptionKeyIsDown) @@ -358,14 +333,38 @@ - (IBAction)addTrigger:(id)sender { [triggerTable editColumn:[triggerTable columnWithIdentifier:@"command"] row:row withEvent:[NSApp currentEvent] select:YES]; } else if (!mOptionKeyIsDown) { - [self editTriggerCommand:trigger - callback:@selector(addSheetDidEnd:returnCode:contextInfo:)]; + [commandEditor setCommand:[selectedTrigger command]]; + [NSApp qs_beginSheet:commandEditor.window modalForWindow:self.mainView.window completionHandler:^(NSInteger result) { + QSCommand *command = [commandEditor representedCommand]; + if (command) { + [selectedTrigger setCommand:command]; + [[QSTriggerCenter sharedInstance] triggerChanged:selectedTrigger]; + } else { + [[QSTriggerCenter sharedInstance] removeTrigger:selectedTrigger]; + // [self updateTriggerArray]; + } + // select the trigger (its position has changed since adding the trigger) + NSUInteger selectTriggerIndex = [[triggerArrayController arrangedObjects] indexOfObject:selectedTrigger]; + if (selectTriggerIndex != NSNotFound) { + [triggerTable selectRowIndexes:[NSIndexSet indexSetWithIndex:selectTriggerIndex] byExtendingSelection:NO]; + } + [commandEditor.window orderOut:self]; + }]; } } - (IBAction)editTrigger:(id)sender { if ([triggerTable selectedRow] >= 0) { - [self editTriggerCommand:[triggerArray objectAtIndex:[triggerTable selectedRow]] callback:@selector(editSheetDidEnd:returnCode:contextInfo:) ]; + QSTrigger *editedTrigger = [triggerArray objectAtIndex:[triggerTable selectedRow]]; + [commandEditor setCommand:[editedTrigger command]]; + [NSApp qs_beginSheet:commandEditor.window modalForWindow:self.mainView.window completionHandler:^(NSInteger result) { + QSCommand *command = [commandEditor representedCommand]; + if (command) { + [editedTrigger setCommand:command]; + [[QSTriggerCenter sharedInstance] triggerChanged:editedTrigger]; + } + [commandEditor.window orderOut:self]; + }]; } } @@ -517,8 +516,16 @@ - (BOOL)outlineView:(NSOutlineView *)outlineView shouldEditTableColumn:(NSTableC return YES; } if ([[theSelectedTrigger type] isEqualToString:@"QSGroupTrigger"]) return YES; + [commandEditor setCommand:[theSelectedTrigger command]]; + [NSApp qs_beginSheet:commandEditor.window modalForWindow:self.mainView.window completionHandler:^(NSInteger result) { + QSCommand *command = [commandEditor representedCommand]; + if (command) { + [theSelectedTrigger setCommand:command]; + [[QSTriggerCenter sharedInstance] triggerChanged:theSelectedTrigger]; + } + [commandEditor.window orderOut:self]; + }]; - [self editTriggerCommand:theSelectedTrigger callback:@selector(editSheetDidEnd:returnCode:contextInfo:)]; return NO; } return NO; diff --git a/Quicksilver/Code-External/VDKQueue b/Quicksilver/Code-External/VDKQueue index 9e2523271..4879a00b5 160000 --- a/Quicksilver/Code-External/VDKQueue +++ b/Quicksilver/Code-External/VDKQueue @@ -1 +1 @@ -Subproject commit 9e2523271b0a8b6bfb3fb904f10a021253311fd4 +Subproject commit 4879a00b5436b043a3644c655a51cf0adce3e828 diff --git a/Quicksilver/Code-QuickStepCore/QSAction.m b/Quicksilver/Code-QuickStepCore/QSAction.m index f7ae098a3..742a7f9a3 100644 --- a/Quicksilver/Code-QuickStepCore/QSAction.m +++ b/Quicksilver/Code-QuickStepCore/QSAction.m @@ -333,7 +333,9 @@ - (QSObject *)performOnDirectObject:(QSObject *)dObject indirectObject:(QSObject BOOL reverseArgs = [[dict objectForKey:kActionReverseArguments] boolValue]; SEL selector = NSSelectorFromString([dict objectForKey:kActionSelector]); - + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" if (!selector) return [provider performAction:(QSAction *)self directObject:dObject indirectObject:iObject]; else if ([self argumentCount] == 2) @@ -342,6 +344,7 @@ - (QSObject *)performOnDirectObject:(QSObject *)dObject indirectObject:(QSObject return [provider performSelector:selector withObject:dObject]; else return [provider performSelector:selector]; +#pragma clang diagnostic pop } return nil; } diff --git a/Quicksilver/Code-QuickStepCore/QSMacros.h b/Quicksilver/Code-QuickStepCore/QSMacros.h index 816f6155c..9dc41e875 100644 --- a/Quicksilver/Code-QuickStepCore/QSMacros.h +++ b/Quicksilver/Code-QuickStepCore/QSMacros.h @@ -1,6 +1,5 @@ #import -#define ESS(x) (x == 1?@"":@"s") //#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 // #define foreach(x, y) id x; NSEnumerator *rwEnum = [y objectEnumerator]; while(x = [rwEnum nextObject]) //#else @@ -14,7 +13,6 @@ #define DAYS 86400.0f #define MINUTES 60.0f #define HOURS 3600.0f -#define mSHARED_INSTANCE_CLASS_METHOD + (id)sharedInstance {static id _sharedInstance; if (!_sharedInstance) _sharedInstance = [[[self class] alloc] init]; return _sharedInstance;} #define QSLog(s, ...) \ [MLog logFile:__FILE__ lineNumber:__LINE__ \ format:(s), ##__VA_ARGS__] diff --git a/Quicksilver/Code-QuickStepCore/QSObjCMessageSource.m b/Quicksilver/Code-QuickStepCore/QSObjCMessageSource.m index 4f10d9301..0378ab2ab 100644 --- a/Quicksilver/Code-QuickStepCore/QSObjCMessageSource.m +++ b/Quicksilver/Code-QuickStepCore/QSObjCMessageSource.m @@ -89,11 +89,14 @@ - (QSObject *)sendMessage:(QSObject *)dObject { id result; id argument = nil; +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" if (argument = messageInfo[kActionArgument]) { result = [target performSelector:selector withObject:argument]; } else { result = [target performSelector:selector]; } +#pragma clang diagnostic pop if (returnsObject && [result isKindOfClass:[QSBasicObject class]]) return result; return nil; } diff --git a/Quicksilver/Code-QuickStepCore/QSObject.h b/Quicksilver/Code-QuickStepCore/QSObject.h index 8b49c272a..9f8634591 100644 --- a/Quicksilver/Code-QuickStepCore/QSObject.h +++ b/Quicksilver/Code-QuickStepCore/QSObject.h @@ -135,6 +135,7 @@ typedef struct _QSObjectFlags { - (void)setCache:(NSMutableDictionary *)aCache; - (BOOL)isProxyObject; - (QSObject *)resolvedObject; + // This private method is required for QSProxyObject.m - (id)_safeObjectForType:(id)aKey; diff --git a/Quicksilver/Code-QuickStepCore/QSObject.m b/Quicksilver/Code-QuickStepCore/QSObject.m index dc93496dc..bb372da20 100644 --- a/Quicksilver/Code-QuickStepCore/QSObject.m +++ b/Quicksilver/Code-QuickStepCore/QSObject.m @@ -611,11 +611,11 @@ @implementation QSObject (Hierarchy) - (QSObject *)parent { QSObject * parent = nil; - + id handler = nil; if (handler = [self handlerForSelector:@selector(parentOfObject:)]) parent = [handler parentOfObject:self]; - + if (!parent) parent = [objectDictionary objectForKey:[meta objectForKey:kQSObjectParentID]]; return parent; diff --git a/Quicksilver/Code-QuickStepCore/QSRegistry.m b/Quicksilver/Code-QuickStepCore/QSRegistry.m index b38ea6d22..c157de967 100644 --- a/Quicksilver/Code-QuickStepCore/QSRegistry.m +++ b/Quicksilver/Code-QuickStepCore/QSRegistry.m @@ -182,6 +182,7 @@ + (void)setObject:(id)object forKey:(NSString *)key inTable:(NSString *)table { - (void)setObject:(id)object forKey:(NSString *)key inTable:(NSString *)table { [[self tableNamed:table] setObject:object forKey:key]; } + - (id)valueForKey:(NSString *)key inTable:(NSString *)table { if (key == nil) return nil; return [[self tableNamed:table] objectForKey:key]; @@ -430,7 +431,12 @@ - (NSMutableDictionary *)objectHandlers {return [self retainedTableNamed:kQSObje @end @implementation NSObject (InstancePerform) -+ (id)performSelectorWithInstance:(SEL)selector {return [[QSReg getClassInstance:NSStringFromClass([self class])] performSelector:selector];} ++ (id)performSelectorWithInstance:(SEL)selector { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" + return [[QSReg getClassInstance:NSStringFromClass([self class])] performSelector:selector]; +#pragma clang diagnostic pop +} @end @implementation QSRegistry (Mediators) @@ -440,7 +446,10 @@ - (id)getMediator:(NSString *)name { NSBundle *bundle = [NSBundle bundleWithIdentifier:[header objectForKey:@"bundle"]]; if (bundle && ![bundle isLoaded]) [bundle load]; SEL sel = NSSelectorFromString(selector); +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" return (sel) ? [self performSelector:sel withObject:name] : nil; +#pragma clang diagnostic pop } - (id)getMediatorID:(NSString *)name { NSDictionary *header = [[self tableNamed:@"QSRegistryHeaders"] objectForKey:name]; @@ -448,5 +457,9 @@ - (id)getMediatorID:(NSString *)name { NSBundle *bundle = [NSBundle bundleWithIdentifier:[header objectForKey:@"bundle"]]; if (bundle && ![bundle isLoaded]) [bundle load]; SEL sel = NSSelectorFromString(selector); - return (sel && [name respondsToSelector:@selector(sel)]) ? [self performSelector:sel withObject:name] : nil;} +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" + return (sel && [name respondsToSelector:@selector(sel)]) ? [self performSelector:sel withObject:name] : nil; +#pragma clang diagnostic pop +} @end diff --git a/Quicksilver/Code-QuickStepCore/QSTask.m b/Quicksilver/Code-QuickStepCore/QSTask.m index 405e59d77..5134d9f1a 100644 --- a/Quicksilver/Code-QuickStepCore/QSTask.m +++ b/Quicksilver/Code-QuickStepCore/QSTask.m @@ -98,7 +98,10 @@ - (void)dealloc { - (void)cancel:(id)sender { if (cancelTarget) { NSLog(@"Cancel Task: %@", self); +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" [cancelTarget performSelector:cancelAction withObject:sender]; +#pragma clang diagnostic pop } } diff --git a/Quicksilver/Code-QuickStepCore/QSTriggerCenter.m b/Quicksilver/Code-QuickStepCore/QSTriggerCenter.m index 6c4e8e4c1..82cd27908 100644 --- a/Quicksilver/Code-QuickStepCore/QSTriggerCenter.m +++ b/Quicksilver/Code-QuickStepCore/QSTriggerCenter.m @@ -63,8 +63,7 @@ - (void)dealloc { [nc removeObserver:self name:@"InterfaceActivated" object:nil]; [nc removeObserver:self name:@"InterfaceDeactivated" object:nil]; triggers = nil; - triggersDict, triggersDict = nil, - self; + triggersDict = nil; } - (void)loadTriggers { diff --git a/Quicksilver/Code-QuickStepEffects/QSMoveHelper.m b/Quicksilver/Code-QuickStepEffects/QSMoveHelper.m index b4b1e73e0..fe047a21e 100644 --- a/Quicksilver/Code-QuickStepEffects/QSMoveHelper.m +++ b/Quicksilver/Code-QuickStepEffects/QSMoveHelper.m @@ -53,7 +53,10 @@ - (void)_doAnimation { if (_percent == 1.0f) { [self _stopAnimation]; [self _finishAnimation]; +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" [[self target] performSelector:[self action]]; +#pragma clang diagnostic pop } else { usleep(10000); } @@ -100,7 +103,10 @@ - (void)_doAnimation { [_window setAlphaValue:_endAlpha]; [_window setFrame:_endFrame display:YES]; [self _stopAnimation]; +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" [[self target] performSelector:[self action]]; +#pragma clang diagnostic pop } else { [_window setFrame:QSBlendRects(_startFrame, _endFrame, _percent) display:NO]; [_window setAlphaValue: _startAlpha+_percent*(_endAlpha-_startAlpha)]; diff --git a/Quicksilver/Code-QuickStepFoundation/NSArray_BLTRExtensions.m b/Quicksilver/Code-QuickStepFoundation/NSArray_BLTRExtensions.m index 633cab573..fed48c07c 100644 --- a/Quicksilver/Code-QuickStepFoundation/NSArray_BLTRExtensions.m +++ b/Quicksilver/Code-QuickStepFoundation/NSArray_BLTRExtensions.m @@ -45,7 +45,10 @@ - (NSMutableArray *)arrayByPerformingSelector:(SEL)aSelector { @synchronized(self) { resultArray = [NSMutableArray arrayWithCapacity:[self count]]; [self enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" result = [obj performSelector:aSelector]; +#pragma clang diagnostic pop [resultArray addObject:(result?result:[NSNull null])]; }]; } @@ -58,7 +61,10 @@ - (NSMutableArray *)arrayByPerformingSelector:(SEL)aSelector withObject:(id)obje @synchronized(self) { resultArray = [NSMutableArray arrayWithCapacity:[self count]]; [self enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" result = [obj performSelector:aSelector withObject:object]; +#pragma clang diagnostic pop [resultArray addObject:(result?result:[NSNull null])]; }]; } @@ -83,7 +89,9 @@ @implementation NSObject (BLTRArrayPerform) + (NSMutableArray *)performSelector:(SEL)aSelector onObjectsInArray:(id)array returnValues:(BOOL)flag { NSMutableArray *resultArray = nil; __block id result; - + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" @synchronized(array) { if (flag) resultArray = [NSMutableArray arrayWithCapacity:[(NSArray *)array count]]; @@ -97,14 +105,17 @@ + (NSMutableArray *)performSelector:(SEL)aSelector onObjectsInArray:(id)array re } }]; } - +#pragma clang diagnostic pop + return resultArray; } - (NSMutableArray *)performSelector:(SEL)aSelector onObjectsInArray:(id)array returnValues:(BOOL)flag { NSMutableArray *resultArray = nil; __block id result; - + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" @synchronized(array) { if (flag) resultArray = [NSMutableArray arrayWithCapacity:[(NSArray *)array count]]; @@ -118,12 +129,13 @@ - (NSMutableArray *)performSelector:(SEL)aSelector onObjectsInArray:(id)array re } }]; } - +#pragma clang diagnostic pop + return resultArray; } - (NSMutableArray *)performSelector:(SEL)aSelector onObjectsInArray:(id)array { - return [self performSelector:(SEL)aSelector onObjectsInArray:(id)array returnValues:YES]; + return [self performSelector:aSelector onObjectsInArray:array returnValues:YES]; } @end diff --git a/Quicksilver/Code-QuickStepFoundation/NSSortDescriptor+BLTRExtensions.m b/Quicksilver/Code-QuickStepFoundation/NSSortDescriptor+BLTRExtensions.m index 064272ef4..3eaa73f76 100644 --- a/Quicksilver/Code-QuickStepFoundation/NSSortDescriptor+BLTRExtensions.m +++ b/Quicksilver/Code-QuickStepFoundation/NSSortDescriptor+BLTRExtensions.m @@ -13,12 +13,12 @@ + (id)descriptorWithKey:(NSString *)key ascending:(BOOL)ascending { return[[NSSortDescriptor alloc] initWithKey:key ascending:ascending]; } + (id)descriptorWithKey:(NSString *)key ascending:(BOOL)ascending selector:(SEL)selector { - return[[NSSortDescriptor alloc] initWithKey:key ascending:ascending selector:(SEL) selector]; + return[[NSSortDescriptor alloc] initWithKey:key ascending:ascending selector:selector]; } + (NSArray *)descriptorArrayWithKey:(NSString *)key ascending:(BOOL)ascending { return [NSArray arrayWithObject:[[NSSortDescriptor alloc] initWithKey:key ascending:ascending]]; } + (NSArray *)descriptorArrayWithKey:(NSString *)key ascending:(BOOL)ascending selector:(SEL)selector { - return [NSArray arrayWithObject:[[NSSortDescriptor alloc] initWithKey:key ascending:ascending selector:(SEL) selector]]; + return [NSArray arrayWithObject:[[NSSortDescriptor alloc] initWithKey:key ascending:ascending selector:selector]]; } @end diff --git a/Quicksilver/Code-QuickStepInterface/QSInterfaceController.m b/Quicksilver/Code-QuickStepInterface/QSInterfaceController.m index a4382bff9..8bed1724f 100644 --- a/Quicksilver/Code-QuickStepInterface/QSInterfaceController.m +++ b/Quicksilver/Code-QuickStepInterface/QSInterfaceController.m @@ -355,7 +355,7 @@ - (void)updateIndirectObjects { // If the validIndirectObjectsForAction... method hasn't been implemented, attempt to get valid indirects from the action's 'indirectTypes' if(!indirects) { if ([aObj indirectTypes]) { - __weak NSMutableArray *indirectsForAllTypes = [[NSMutableArray alloc] initWithCapacity:0]; + NSMutableArray *indirectsForAllTypes = [[NSMutableArray alloc] initWithCapacity:0]; [[aObj indirectTypes] enumerateObjectsWithOptions:NSEnumerationConcurrent usingBlock:^(NSString *eachType, NSUInteger idx, BOOL *stop) { [indirectsForAllTypes addObjectsFromArray:[QSLib arrayForType:eachType]]; }]; diff --git a/Quicksilver/Configuration/Common.xcconfig b/Quicksilver/Configuration/Common.xcconfig index 8da0224fd..fc6dce7d4 100644 --- a/Quicksilver/Configuration/Common.xcconfig +++ b/Quicksilver/Configuration/Common.xcconfig @@ -9,7 +9,6 @@ SDKROOT = macosx SYMROOT = $(QS_BUILD_ROOT)/build MACOSX_DEPLOYMENT_TARGET = 10.7 -PREBINDING = NO INFOPLIST_PREPROCESS = YES diff --git a/Quicksilver/Configuration/Debug.xcconfig b/Quicksilver/Configuration/Debug.xcconfig index 5e1239de1..ff32c6bfc 100644 --- a/Quicksilver/Configuration/Debug.xcconfig +++ b/Quicksilver/Configuration/Debug.xcconfig @@ -6,8 +6,6 @@ STRIP_INSTALLED_PRODUCT = NO COPY_PHASE_STRIP = NO -GCC_ENABLE_FIX_AND_CONTINUE = YES - GCC_GENERATE_DEBUGGING_SYMBOLS = YES GCC_OPTIMIZATION_LEVEL = 0 diff --git a/Quicksilver/Localized/ca-ES.lproj/About.strings b/Quicksilver/Localized/ca-ES.lproj/About.strings index 035a0b9db..524991c88 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/About.strings and b/Quicksilver/Localized/ca-ES.lproj/About.strings differ diff --git a/Quicksilver/Localized/ca-ES.lproj/Catalog.strings b/Quicksilver/Localized/ca-ES.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/ca-ES.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/ca-ES.lproj/Localizable.strings b/Quicksilver/Localized/ca-ES.lproj/Localizable.strings index 2a9a54c2b..43326be90 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/Localizable.strings and b/Quicksilver/Localized/ca-ES.lproj/Localizable.strings differ diff --git a/Quicksilver/Localized/ca-ES.lproj/Preferences.strings b/Quicksilver/Localized/ca-ES.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/ca-ES.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/ca-ES.lproj/QSActionsPrefPane.strings b/Quicksilver/Localized/ca-ES.lproj/QSActionsPrefPane.strings index b7d59116e..c3883d717 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/QSActionsPrefPane.strings and b/Quicksilver/Localized/ca-ES.lproj/QSActionsPrefPane.strings differ diff --git a/Quicksilver/Localized/ca-ES.lproj/QSAdvancedPrefPane.strings b/Quicksilver/Localized/ca-ES.lproj/QSAdvancedPrefPane.strings index 531cb1eae..51532f256 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/QSAdvancedPrefPane.strings and b/Quicksilver/Localized/ca-ES.lproj/QSAdvancedPrefPane.strings differ diff --git a/Quicksilver/Localized/ca-ES.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/ca-ES.lproj/QSAppearancePrefPane.strings index 38d0be7c9..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/ca-ES.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/ca-ES.lproj/QSApplicationPrefPane.strings b/Quicksilver/Localized/ca-ES.lproj/QSApplicationPrefPane.strings index 159abe7eb..c5ba09f88 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/QSApplicationPrefPane.strings and b/Quicksilver/Localized/ca-ES.lproj/QSApplicationPrefPane.strings differ diff --git a/Quicksilver/Localized/ca-ES.lproj/QSCatalog.strings b/Quicksilver/Localized/ca-ES.lproj/QSCatalog.strings index 5384885b8..62a25b799 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/QSCatalog.strings and b/Quicksilver/Localized/ca-ES.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/ca-ES.lproj/QSHelpersPrefPane.strings b/Quicksilver/Localized/ca-ES.lproj/QSHelpersPrefPane.strings index f69dff7a9..23217517e 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/QSHelpersPrefPane.strings and b/Quicksilver/Localized/ca-ES.lproj/QSHelpersPrefPane.strings differ diff --git a/Quicksilver/Localized/ca-ES.lproj/QSPlugInsPrefPane.strings b/Quicksilver/Localized/ca-ES.lproj/QSPlugInsPrefPane.strings index f201a4a75..fbbd84f8b 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/QSPlugInsPrefPane.strings and b/Quicksilver/Localized/ca-ES.lproj/QSPlugInsPrefPane.strings differ diff --git a/Quicksilver/Localized/ca-ES.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/ca-ES.lproj/QSSearchPrefPane.strings index 22454b35d..558ad10ec 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/ca-ES.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/ca-ES.lproj/QSTriggersPrefPane.strings b/Quicksilver/Localized/ca-ES.lproj/QSTriggersPrefPane.strings index 6fbeeec0c..239740beb 100644 Binary files a/Quicksilver/Localized/ca-ES.lproj/QSTriggersPrefPane.strings and b/Quicksilver/Localized/ca-ES.lproj/QSTriggersPrefPane.strings differ diff --git a/Quicksilver/Localized/cs.lproj/Catalog.strings b/Quicksilver/Localized/cs.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/cs.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/cs.lproj/Preferences.strings b/Quicksilver/Localized/cs.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/cs.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/cy.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/cy.lproj/QSAppearancePrefPane.strings index e52efc669..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/cy.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/cy.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/cy.lproj/QSCatalog.strings b/Quicksilver/Localized/cy.lproj/QSCatalog.strings index 5bbf50dfe..62a25b799 100644 Binary files a/Quicksilver/Localized/cy.lproj/QSCatalog.strings and b/Quicksilver/Localized/cy.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/de.lproj/Catalog.strings b/Quicksilver/Localized/de.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/de.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/de.lproj/Preferences.strings b/Quicksilver/Localized/de.lproj/Preferences.strings deleted file mode 100644 index b2aa74964..000000000 --- a/Quicksilver/Localized/de.lproj/Preferences.strings +++ /dev/null @@ -1,433 +0,0 @@ -/* NSTextField (0.00) : (oid:2137) */ -"0.00" = "0.00"; - -/* NSTextField (10) : (oid:2129) */ -"10" = "10"; - -/* NSMenuItem : > (oid:2201) */ -"" = ""; - -/* NSMenuItem : (oid:2145) */ -"Accurate" = "Präzision"; - -/* NSTabViewItem : (oid:2184) */ -"Actions" = "Aktionen"; - -/* NSTextField (Activation:) : (oid:2087) */ -"Activation:" = "Aktivierung:\n)"; - -/* NSIBHelpConnector : (oid:2182) */ -"Add Quicksilver to your login items" = "Quicksilver der Anmeldeliste hinzufügen"; - -/* NSIBHelpConnector : (oid:2203) */ -"Add actions from the services menu" = "Aktionen des Service-Menüs hinzufügen"; - -/* NSMenuItem : (oid:2072) */ -"All Items" = "Alle Elemente"; - -/* NSButtonCell (Alpha) : (oid:2098) */ -"Alpha" = "Alpha"; - -/* NSTabViewItem : (oid:2082) */ -"Application" = "Programm"; - -/* NSMenuItem : (oid:2123) */ -"Application Selection" = "Programm Auswahl"; - -/* NSTextField (Automatically show other matches) : (oid:2120) */ -"Automatically show other matches\n" = "Zeige weitere Funde automatisch"; - -/* NSIBHelpConnector : (oid:2313) */ -"Automatically show shelf" = "Öffne die Ablage automatisch"; - -/* NSButtonCell (Beta) : (oid:2135) */ -"Beta" = "Beta"; - -/* NSButton (CC myself in Direct Email) : (oid:1073) */ -"CC myself in Direct Email" = "CC an mich bei Direktmail"; - -/* NSButton (Check Now) : (oid:2095) */ -"Cancel" = "Abbruch"; - -/* NSButton (Capitalized keys modify action) : (oid:2043) */ -"Capitalized keys modify action" = "Hochgestellte Tasten modifizieren die Aktion"; - -/* NSButton (Capture History:) : (oid:2102) */ -"Capture History:" = "Erfassungsverlauf"; - -/* NSButton (Check Now) : (oid:2095) */ -"Check Now" = "Überprüfen"; - -/* NSIBHelpConnector : (oid:2158) */ -"Check for update immediately" = "Überprüfe sofort auf Updates"; - -/* NSButton (Check for updates:) : (oid:2056) */ -"Check for updates:" = "Auf Updates überprüfen"; - -/* NSTabViewItem : (oid:2058) */ -"Clipboard" = "Zwischenablage"; - -/* NSTabViewItem : (oid:2097) */ -"Command" = "Befehl"; - -/* NSBox : (oid:2084) */ -"Command Line Tool" = "Kommandozeilenprogramm"; - -/* NSButton (Contact Actions) : (oid:2200) */ -"Contact Actions" = "Kontakt Aktionen"; - -/* NSIBHelpConnector : (oid:2168) */ -"Create new threads for tasks" = "Erstelle neue 'Threads' für Aufgaben"; - -/* NSMenuItem : (oid:2048) */ -"Daily" = "Täglich"; - -/* NSMenuItem : (oid:506) */ -"Default Chat Client" = "Messagerie instantanée par défaut"; - -/* NSMenuItem : (oid:507) */ -"Default Email Client" = "Messagerie par défaut"; - -/* NSIBHelpConnector : (oid:2183) */ -"Delay before searching to improve performance on slow machines" = "Delay before searching to improve performance on slow machines"; - -/* NSIBHelpConnector : (oid:2155) */ -"Delay before showing alternatives" = "Delay before showing alternatives"; - -/* NSMenuItem : (oid:2133) */ -"Delayed" = "Après coup"; - -/* NSIBHelpConnector : (oid:2161) */ -"Destination for opened/dropped files" = "Destination for opened/dropped files"; - -/* NSIBHelpConnector : (oid:2164) */ -"Destination for results" = "Destination for results"; - -/* NSTextField (Development versions check daily regardless of these settings) : (oid:2126) */ -"Development versions check daily regardless of these settings" = "Les versions de développement vérifient quotidiennement sans tenir compte de ces réglages"; - -/* NSIBHelpConnector : (oid:2315) */ -"Do not show command window on startup" = "Do not show command window on startup"; - -/* NSButton (Don't activate on startup) : (oid:2118) */ -"Don't activate on startup" = "Ne pas activater au démarrage"; - -/* NSIBHelpConnector : (oid:2298) */ -"Don't perform automatic rescan every 10 minutes" = "Don't perform automatic rescan every 10 minutes"; - -/* NSButton (Don't rescan catalog automatically) : (oid:2294) */ -"Don't rescan catalog automatically" = "Ne pas rescanner le catalogue automatiquement"; - -/* NSButton (Don't show status menu item) : (oid:2121) */ -"Don't show status menu item" = "Ne pas afficher l'icône du menu des statuts"; - -/* NSTextField (Dropped items go to:) : (oid:2051) */ -"Dropped items go to:" = "Les éléments tombés vers :"; - -/* NSButton (Enable Rendezvous) : (oid:2075) */ -"Enable Rendezvous" = "Activer Rendezvous"; - -/* NSButton (Enable Services) : (oid:2187) */ -"Enable Services" = "Activer les services"; - -/* NSIBHelpConnector : (oid:2160) */ -"Enable eye-candy" = "Enable eye-candy"; - -/* NSIBHelpConnector : (oid:2172) */ -"Enable update checking" = "Enable update checking"; - -/* NSTabViewItem : (oid:2152) */ -"Extras" = "Extras"; - -/* NSMenuItem : (oid:2039) */ -"Fast" = "Rapide"; - -/* NSBox : (oid:2114) */ -"Features & Stability" = "Fonctions & Stabilité"; - -/* NSIBHelpConnector : (oid:2204) */ -"Finder or finder replacement to use" = "Finder or finder replacement to use"; - -/* NSIBHelpConnector : (oid:2170) */ -"Global activation hotkey" = "Global activation hotkey"; - -/* NSButton (Hide after pasting) : (oid:2285) */ -"Hide after pasting" = "Masquer après collage"; - -/* NSIBHelpConnector : (oid:2316) */ -"Hide clipboard automatically after pasting" = "Hide clipboard automatically after pasting"; - -/* NSButton (Hide menus and dock icon) : (oid:2131) */ -"Hide menus and dock icon" = "Enlever l'icône du dock et les menus de la barre"; - -/* NSIBHelpConnector : (oid:2174) */ -"Hide status item too" = "Hide status item too"; - -/* NSIBHelpConnector : (oid:2314) */ -"Holding shift causes the action to change" = "Holding shift causes the action to change"; - -/* NSIBHelpConnector : (oid:2311) */ -"Ignore global HotKeys when command is active" = "Ignore global HotKeys when command is active"; - -/* NSTextField (Ignore items larger than:) : (oid:2083) */ -"Ignore items larger than:" = "Ignorer les éléments plus large que :"; - -/* NSMenuItem : (oid:2066) */ -"Immediately" = "Immédiatement"; - -/* NSButton (Inline Contents) : (oid:1199) */ -"Inline Contents" = "Contenu en ligne"; - -/* NSButton (Install) : (oid:2070) */ -"Install" = "Installer"; - -/* NSIBHelpConnector : (oid:2179) */ -"Install the command line tool" = "Install the command line tool"; - -/* NSIBHelpConnector : (oid:2157) */ -"Interface type" = "Interface type"; - -/* NSTextField (Interface:) : (oid:2050) */ -"Interface:" = "Interface:"; - -/* NSMenuItem : (oid:2190) */ -"Item1" = "Item1"; - -/* NSMenuItem : (oid:2197) */ -"Item2" = "Item2"; - -/* NSMenuItem : (oid:2199) */ -"Item3" = "Item3"; - -/* NSIBHelpConnector : (oid:2167) */ -"Items that should load their icons" = "Items that should load their icons"; - -/* NSTextField (Kind:) : (oid:525) */ -"Kind:" = "Genre :"; - -/* NSTextField (Last Check:) : (oid:2062) */ -"Last Check:" = "Dernière mise à jour:"; - -/* NSMenuItem : (oid:2139) */ -"Last Used Item" = "Dernier élément utilisé"; - -/* NSTextField (Load icons for) : (oid:2094) */ -"Load icons for" = "Charger les icones pour :"; - -/* NSButton (Maintain aliases to file Items) : (oid:2092) */ -"Maintain aliases to file Items" = "Maintenir les liens pour classer les éléments"; - -/* NSIBHelpConnector : (oid:2163) */ -"Match letters typed with the wrong hand" = "Match letters typed with the wrong hand"; - -/* NSTabViewItem : (oid:2116) */ -"Matching" = "Résultas"; - -/* NSMenuItem : (oid:2096) */ -"Menu Bar" = "Menu barre"; - -/* NSTableColumn : (oid:2205) */ -"Module" = "Module"; - -/* NSMenuItem : (oid:2064) */ -"Monthly" = "Chaque mois"; - -/* NSNibBindingConnector : (oid:2253) */ -"NSIsNotNil" = "NSIsNotNil"; - -/* NSNibBindingConnector : (oid:2236) */ -"NSNegateBoolean" = "NSNegateBoolean"; - -/* NSTabViewItem : (oid:2041) */ -"Networking" = "Réseau"; - -/* NSNibBindingConnector : (oid:2310) */ -"Never" = "Never"; - -/* NSIBHelpConnector : (oid:2169) */ -"New, lightly tested features " = "New, lightly tested features "; - -/* NSIBHelpConnector : (oid:2159) */ -"Number of items to save" = "Number of items to save"; - -/* NSMenuItem : (oid:2040) */ -"On Launch" = "Au lancement"; - -/* NSButton (One-hand matching) : (oid:2042) */ -"One-hand matching" = "Résultat en un coup"; - -/* NSIBHelpConnector : (oid:2317) */ -"Only list applications that support the selected file" = "Only list applications that support the selected file"; - -/* NSMenu : (oid:2275) */ -"OtherViews" = "OtherViews"; - -/* NSPanel (Panel) : (oid:501) */ -"Panel" = "Panel"; - -/* QSWindow (Preferences) : (oid:12) */ -"Preferences" = "Préférences"; - -/* NSIBHelpConnector : (oid:2162) */ -"Prevent accidental quitting" = "Prevent accidental quitting"; - -/* NSButton (Recieve Items) : (oid:2130) */ -"Recieve Items" = "Réception des éléments"; - -/* NSIBHelpConnector : (oid:2308) */ -"Remove large (128x128) icons from memory. Will make Bezel interface blurry" = "Remove large (128x128) icons from memory. Will make Bezel interface blurry"; - -/* NSTextField (Reopening an application) : (oid:2276) */ -"Reopening an application" = "Réouvrir une application"; - -/* NSIBHelpConnector : (oid:2312) */ -"Reopening behavior" = "Reopening behavior"; - -/* NSTextField (Reopening the current application shows all windows) : (oid:2284) */ -"Reopening the current application shows all windows" = "Reopening the current application shows all windows"; - -/* NSTextField (Reset search after) : (oid:2140) */ -"Reset search after" = "Initialiser après"; - -/* NSBox : (oid:2078) */ -"Routing" = "Aiguillage"; - -/* NSButton (Run tasks in background) : (oid:2144) */ -"Run tasks in background" = "Exécutez les tâches en fond"; - -/* NSIBHelpConnector : (oid:2173) */ -"Save items copied to the clipboard" = "Save items copied to the clipboard"; - -/* NSTextField (Search Ranking:) : (oid:2149) */ -"Search Ranking:" = "Search Ranking:"; - -/* NSTextField (Searchable items are controlled by the catalog) : (oid:2301) */ -"Searchable items are controlled by the catalog" = "Les éléments recherchables sont contrôlés par le catalogue"; - -/* NSMenuItem : (oid:2052) */ -"Selected Item Only" = "Les éléments sélectionnés"; - -/* NSTextField (Send Files With:) : (oid:508) */ -"Send Files With:" = "Envoyer les fichiers avec:"; - -/* NSTextField (Send results to:) : (oid:2085) */ -"Send results to:" = "Envoyer les résultats vers :"; - -/* NSButton (Share Clip History) : (oid:2101) */ -"Share Clip History" = "Partager l'historique"; - -/* NSButton (Share Clipboard) : (oid:2111) */ -"Share Clipboard" = "Partager le presse-papiers"; - -/* NSMenuItem : (oid:2088) */ -"Shelf" = "l'étagère"; - -/* NSButton (Show Catalog) : (oid:2300) */ -"Show Catalog" = "Show Catalog"; - -/* NSButton (Show Task Viewer automatically) : (oid:2141) */ -"Show Task Viewer automatically" = "Montrez le visualisateur de tâche automatiquement"; - -/* NSButton (Show children) : (oid:1200) */ -"Show children" = "Montrer les enfants"; - -/* NSButton (Show only valid applications for Open With...) : (oid:2303) */ -"Show only valid applications for Open With..." = "Afficher que les applis valides pour Ouvrir avec..."; - -/* NSTextField (Show other matches) : (oid:2061) */ -"Show other matches" = "Montrer d'autres résultats"; - -/* NSButton (Show shelf on launch) : (oid:2054) */ -"Show shelf on launch" = "Montrez l'étagère au lancement"; - -/* NSIBHelpConnector : (oid:2180) */ -"Show task viewer whenever there is activity" = "Show task viewer whenever there is activity"; - -/* NSButton (Shrink icons to save memory) : (oid:2128) */ -"Shrink icons to save memory" = "Rétrécir des icônes pour épargner la mémoire"; - -/* NSButtonCell (Stable) : (oid:2109) */ -"Stable" = "Stable"; - -/* NSIBHelpConnector : (oid:2171) */ -"Stable features only" = "Stable features only"; - -/* NSButton (Start at login) : (oid:2148) */ -"Start at login" = "Lancement au démarrage de session"; - -/* NSButton (Superfluous visual effects) : (oid:2045) */ -"Superfluous visual effects" = "Effets visuels superflus"; - -/* NSButton (Suppress HotKeys in Command) : (oid:2106) */ -"Suppress HotKeys in Command" = "Supprimez les racourcis-clavier aux commandes"; - -/* NSMenuItem : (oid:2080) */ -"Task Viewer" = "Le visualisateur de tâches"; - -/* NSTextField (Temporary pref - Requires relaunch) : (oid:2297) */ -"Temporary pref - Requires relaunch" = "Préf temporaire - Nécésite un redémarrage"; - -/* NSIBHelpConnector : (oid:2181) */ -"This might not be a good idea" = "This might not be a good idea"; - -/* NSIBHelpConnector : (oid:2166) */ -"Time to wait before new letters typed are considered a new search" = "Time to wait before new letters typed are considered a new search"; - -/* NSBox : (oid:2209) */ -"Title" = "Title"; - -/* NSIBHelpConnector : (oid:2177) */ -"Toggle dock icon and menu visibility. (Requires relaunch)" = "Toggle dock icon and menu visibility. (Requires relaunch)"; - -/* NSButton (0) : (oid:2154) */ -"Type a HotKey" = "Type a HotKey"; - -/* NSIBHelpConnector : (oid:2178) */ -"Untested and possibly dangerous features" = "Untested and possibly dangerous features"; - -/* NSTabViewItem : (oid:2147) */ -"Update" = "Mise à jour"; - -/* NSIBHelpConnector : (oid:2176) */ -"Update frequency" = "Update frequency"; - -/* NSTextField (Use) : (oid:2195) */ -"Use" = "Utiliser"; - -/* NSButtonCell (Volatile) : (oid:2110) */ -"Volatile" = "Volatile"; - -/* NSTextField (Wait for) : (oid:2122) */ -"Wait for" = "Attendre"; - -/* NSButton (Warn before quitting) : (oid:2107) */ -"Warn before quitting" = "Retard avant de quitter"; - -/* NSMenuItem : (oid:2146) */ -"Weekly" = "Chaque semaine"; - -/* NSMenuItem : (oid:2046) */ -"Window" = "Fenêtre"; - -/* NSMenuItem : (oid:2273) */ -"activates" = "Activations"; - -/* NSTextField (for selections and reveals) : (oid:2193) */ -"for selections and reveals" = "pour les sélections et ouvertures"; - -/* NSTextField (qs is not installed) : (oid:2086) */ -"qs is not installed" = "QS n'est pas installé"; - -/* NSTextField (seconds) : (oid:2127) */ -"seconds" = "secondes"; - -/* NSTextField (seconds before searching) : (oid:2081) */ -"seconds before searching" = "secondes après la recherche"; - -/* NSMenuItem : (oid:2272) */ -"shows all windows" = "Affiche toutes les fenêtres"; - -/* NSMenuItem : (oid:2274) */ -"shows front window" = "Affiche les fenêtres du premier plan"; - diff --git a/Quicksilver/Localized/en.lproj/About.strings b/Quicksilver/Localized/en.lproj/About.strings index 6e7298531..524991c88 100644 Binary files a/Quicksilver/Localized/en.lproj/About.strings and b/Quicksilver/Localized/en.lproj/About.strings differ diff --git a/Quicksilver/Localized/en.lproj/Catalog.strings b/Quicksilver/Localized/en.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/en.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/en.lproj/Localizable.strings b/Quicksilver/Localized/en.lproj/Localizable.strings index 9e33b45e4..d60a1664e 100644 Binary files a/Quicksilver/Localized/en.lproj/Localizable.strings and b/Quicksilver/Localized/en.lproj/Localizable.strings differ diff --git a/Quicksilver/Localized/en.lproj/Preferences.strings b/Quicksilver/Localized/en.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/en.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/en.lproj/QSActionsPrefPane.strings b/Quicksilver/Localized/en.lproj/QSActionsPrefPane.strings index b6d63b79e..c3883d717 100644 Binary files a/Quicksilver/Localized/en.lproj/QSActionsPrefPane.strings and b/Quicksilver/Localized/en.lproj/QSActionsPrefPane.strings differ diff --git a/Quicksilver/Localized/en.lproj/QSAdvancedPrefPane.strings b/Quicksilver/Localized/en.lproj/QSAdvancedPrefPane.strings index bf72d1ab9..51532f256 100644 Binary files a/Quicksilver/Localized/en.lproj/QSAdvancedPrefPane.strings and b/Quicksilver/Localized/en.lproj/QSAdvancedPrefPane.strings differ diff --git a/Quicksilver/Localized/en.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/en.lproj/QSAppearancePrefPane.strings index e52efc669..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/en.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/en.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/en.lproj/QSApplicationPrefPane.strings b/Quicksilver/Localized/en.lproj/QSApplicationPrefPane.strings index 6cc186ceb..c5ba09f88 100644 Binary files a/Quicksilver/Localized/en.lproj/QSApplicationPrefPane.strings and b/Quicksilver/Localized/en.lproj/QSApplicationPrefPane.strings differ diff --git a/Quicksilver/Localized/en.lproj/QSCatalog.strings b/Quicksilver/Localized/en.lproj/QSCatalog.strings index 5bbf50dfe..62a25b799 100644 Binary files a/Quicksilver/Localized/en.lproj/QSCatalog.strings and b/Quicksilver/Localized/en.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/en.lproj/QSHelpersPrefPane.strings b/Quicksilver/Localized/en.lproj/QSHelpersPrefPane.strings index e1bc14bed..23217517e 100644 Binary files a/Quicksilver/Localized/en.lproj/QSHelpersPrefPane.strings and b/Quicksilver/Localized/en.lproj/QSHelpersPrefPane.strings differ diff --git a/Quicksilver/Localized/en.lproj/QSMainMenuPrefPane.strings b/Quicksilver/Localized/en.lproj/QSMainMenuPrefPane.strings index ecbf4629a..da341e880 100644 Binary files a/Quicksilver/Localized/en.lproj/QSMainMenuPrefPane.strings and b/Quicksilver/Localized/en.lproj/QSMainMenuPrefPane.strings differ diff --git a/Quicksilver/Localized/en.lproj/QSPlugInsPrefPane.strings b/Quicksilver/Localized/en.lproj/QSPlugInsPrefPane.strings index 32a70aad0..fbbd84f8b 100644 Binary files a/Quicksilver/Localized/en.lproj/QSPlugInsPrefPane.strings and b/Quicksilver/Localized/en.lproj/QSPlugInsPrefPane.strings differ diff --git a/Quicksilver/Localized/en.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/en.lproj/QSSearchPrefPane.strings index 7c941b33f..558ad10ec 100644 Binary files a/Quicksilver/Localized/en.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/en.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/en.lproj/QSTriggersPrefPane.strings b/Quicksilver/Localized/en.lproj/QSTriggersPrefPane.strings index f8d38fd16..239740beb 100644 Binary files a/Quicksilver/Localized/en.lproj/QSTriggersPrefPane.strings and b/Quicksilver/Localized/en.lproj/QSTriggersPrefPane.strings differ diff --git a/Quicksilver/Localized/es-ES.lproj/Catalog.strings b/Quicksilver/Localized/es-ES.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/es-ES.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/es-ES.lproj/Preferences.strings b/Quicksilver/Localized/es-ES.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/es-ES.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/es-MX.lproj/About.strings b/Quicksilver/Localized/es-MX.lproj/About.strings index 6e7298531..524991c88 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/About.strings and b/Quicksilver/Localized/es-MX.lproj/About.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/Catalog.strings b/Quicksilver/Localized/es-MX.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/es-MX.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/es-MX.lproj/Localizable.strings b/Quicksilver/Localized/es-MX.lproj/Localizable.strings index 43ab45214..43326be90 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/Localizable.strings and b/Quicksilver/Localized/es-MX.lproj/Localizable.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/Preferences.strings b/Quicksilver/Localized/es-MX.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/es-MX.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/es-MX.lproj/QSActionsPrefPane.strings b/Quicksilver/Localized/es-MX.lproj/QSActionsPrefPane.strings index b6d63b79e..c3883d717 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/QSActionsPrefPane.strings and b/Quicksilver/Localized/es-MX.lproj/QSActionsPrefPane.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/QSAdvancedPrefPane.strings b/Quicksilver/Localized/es-MX.lproj/QSAdvancedPrefPane.strings index bf72d1ab9..51532f256 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/QSAdvancedPrefPane.strings and b/Quicksilver/Localized/es-MX.lproj/QSAdvancedPrefPane.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/es-MX.lproj/QSAppearancePrefPane.strings index e52efc669..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/es-MX.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/QSApplicationPrefPane.strings b/Quicksilver/Localized/es-MX.lproj/QSApplicationPrefPane.strings index 6cc186ceb..c5ba09f88 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/QSApplicationPrefPane.strings and b/Quicksilver/Localized/es-MX.lproj/QSApplicationPrefPane.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/QSCatalog.strings b/Quicksilver/Localized/es-MX.lproj/QSCatalog.strings index 5bbf50dfe..62a25b799 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/QSCatalog.strings and b/Quicksilver/Localized/es-MX.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/QSHelpersPrefPane.strings b/Quicksilver/Localized/es-MX.lproj/QSHelpersPrefPane.strings index e1bc14bed..23217517e 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/QSHelpersPrefPane.strings and b/Quicksilver/Localized/es-MX.lproj/QSHelpersPrefPane.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/QSMainMenuPrefPane.strings b/Quicksilver/Localized/es-MX.lproj/QSMainMenuPrefPane.strings index ecbf4629a..da341e880 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/QSMainMenuPrefPane.strings and b/Quicksilver/Localized/es-MX.lproj/QSMainMenuPrefPane.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/QSPlugInsPrefPane.strings b/Quicksilver/Localized/es-MX.lproj/QSPlugInsPrefPane.strings index 32a70aad0..fbbd84f8b 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/QSPlugInsPrefPane.strings and b/Quicksilver/Localized/es-MX.lproj/QSPlugInsPrefPane.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/es-MX.lproj/QSSearchPrefPane.strings index 7c941b33f..558ad10ec 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/es-MX.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/es-MX.lproj/QSTriggersPrefPane.strings b/Quicksilver/Localized/es-MX.lproj/QSTriggersPrefPane.strings index f8d38fd16..239740beb 100644 Binary files a/Quicksilver/Localized/es-MX.lproj/QSTriggersPrefPane.strings and b/Quicksilver/Localized/es-MX.lproj/QSTriggersPrefPane.strings differ diff --git a/Quicksilver/Localized/es.lproj/Catalog.strings b/Quicksilver/Localized/es.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/es.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/es.lproj/Preferences.strings b/Quicksilver/Localized/es.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/es.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/et.lproj/About.strings b/Quicksilver/Localized/et.lproj/About.strings index 6e7298531..524991c88 100644 Binary files a/Quicksilver/Localized/et.lproj/About.strings and b/Quicksilver/Localized/et.lproj/About.strings differ diff --git a/Quicksilver/Localized/et.lproj/Catalog.strings b/Quicksilver/Localized/et.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/et.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/et.lproj/Preferences.strings b/Quicksilver/Localized/et.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/et.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/et.lproj/QSActionsPrefPane.strings b/Quicksilver/Localized/et.lproj/QSActionsPrefPane.strings index b6d63b79e..c3883d717 100644 Binary files a/Quicksilver/Localized/et.lproj/QSActionsPrefPane.strings and b/Quicksilver/Localized/et.lproj/QSActionsPrefPane.strings differ diff --git a/Quicksilver/Localized/et.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/et.lproj/QSAppearancePrefPane.strings index e52efc669..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/et.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/et.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/et.lproj/QSApplicationPrefPane.strings b/Quicksilver/Localized/et.lproj/QSApplicationPrefPane.strings index 6cc186ceb..c5ba09f88 100644 Binary files a/Quicksilver/Localized/et.lproj/QSApplicationPrefPane.strings and b/Quicksilver/Localized/et.lproj/QSApplicationPrefPane.strings differ diff --git a/Quicksilver/Localized/et.lproj/QSCatalog.strings b/Quicksilver/Localized/et.lproj/QSCatalog.strings index 5bbf50dfe..62a25b799 100644 Binary files a/Quicksilver/Localized/et.lproj/QSCatalog.strings and b/Quicksilver/Localized/et.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/et.lproj/QSHelpersPrefPane.strings b/Quicksilver/Localized/et.lproj/QSHelpersPrefPane.strings index e1bc14bed..23217517e 100644 Binary files a/Quicksilver/Localized/et.lproj/QSHelpersPrefPane.strings and b/Quicksilver/Localized/et.lproj/QSHelpersPrefPane.strings differ diff --git a/Quicksilver/Localized/et.lproj/QSMainMenuPrefPane.strings b/Quicksilver/Localized/et.lproj/QSMainMenuPrefPane.strings index ecbf4629a..da341e880 100644 Binary files a/Quicksilver/Localized/et.lproj/QSMainMenuPrefPane.strings and b/Quicksilver/Localized/et.lproj/QSMainMenuPrefPane.strings differ diff --git a/Quicksilver/Localized/et.lproj/QSPlugInsPrefPane.strings b/Quicksilver/Localized/et.lproj/QSPlugInsPrefPane.strings index 32a70aad0..fbbd84f8b 100644 Binary files a/Quicksilver/Localized/et.lproj/QSPlugInsPrefPane.strings and b/Quicksilver/Localized/et.lproj/QSPlugInsPrefPane.strings differ diff --git a/Quicksilver/Localized/et.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/et.lproj/QSSearchPrefPane.strings index 7c941b33f..558ad10ec 100644 Binary files a/Quicksilver/Localized/et.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/et.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/et.lproj/QSTriggersPrefPane.strings b/Quicksilver/Localized/et.lproj/QSTriggersPrefPane.strings index f8d38fd16..239740beb 100644 Binary files a/Quicksilver/Localized/et.lproj/QSTriggersPrefPane.strings and b/Quicksilver/Localized/et.lproj/QSTriggersPrefPane.strings differ diff --git a/Quicksilver/Localized/fi.lproj/About.strings b/Quicksilver/Localized/fi.lproj/About.strings index 825f4d347..83e261269 100644 Binary files a/Quicksilver/Localized/fi.lproj/About.strings and b/Quicksilver/Localized/fi.lproj/About.strings differ diff --git a/Quicksilver/Localized/fi.lproj/Catalog.strings b/Quicksilver/Localized/fi.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/fi.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/fi.lproj/Localizable.strings b/Quicksilver/Localized/fi.lproj/Localizable.strings index 00d1a683a..14dabe69e 100644 Binary files a/Quicksilver/Localized/fi.lproj/Localizable.strings and b/Quicksilver/Localized/fi.lproj/Localizable.strings differ diff --git a/Quicksilver/Localized/fi.lproj/Preferences.strings b/Quicksilver/Localized/fi.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/fi.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/fi.lproj/QSActionsPrefPane.strings b/Quicksilver/Localized/fi.lproj/QSActionsPrefPane.strings index b6d63b79e..c3883d717 100644 Binary files a/Quicksilver/Localized/fi.lproj/QSActionsPrefPane.strings and b/Quicksilver/Localized/fi.lproj/QSActionsPrefPane.strings differ diff --git a/Quicksilver/Localized/fi.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/fi.lproj/QSAppearancePrefPane.strings index e52efc669..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/fi.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/fi.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/fi.lproj/QSApplicationPrefPane.strings b/Quicksilver/Localized/fi.lproj/QSApplicationPrefPane.strings index 6cc186ceb..c5ba09f88 100644 Binary files a/Quicksilver/Localized/fi.lproj/QSApplicationPrefPane.strings and b/Quicksilver/Localized/fi.lproj/QSApplicationPrefPane.strings differ diff --git a/Quicksilver/Localized/fi.lproj/QSCatalog.strings b/Quicksilver/Localized/fi.lproj/QSCatalog.strings index 5bbf50dfe..62a25b799 100644 Binary files a/Quicksilver/Localized/fi.lproj/QSCatalog.strings and b/Quicksilver/Localized/fi.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/fi.lproj/QSHelpersPrefPane.strings b/Quicksilver/Localized/fi.lproj/QSHelpersPrefPane.strings index e1bc14bed..23217517e 100644 Binary files a/Quicksilver/Localized/fi.lproj/QSHelpersPrefPane.strings and b/Quicksilver/Localized/fi.lproj/QSHelpersPrefPane.strings differ diff --git a/Quicksilver/Localized/fi.lproj/QSMainMenuPrefPane.strings b/Quicksilver/Localized/fi.lproj/QSMainMenuPrefPane.strings index ecbf4629a..da341e880 100644 Binary files a/Quicksilver/Localized/fi.lproj/QSMainMenuPrefPane.strings and b/Quicksilver/Localized/fi.lproj/QSMainMenuPrefPane.strings differ diff --git a/Quicksilver/Localized/fi.lproj/QSPlugInsPrefPane.strings b/Quicksilver/Localized/fi.lproj/QSPlugInsPrefPane.strings index 32a70aad0..fbbd84f8b 100644 Binary files a/Quicksilver/Localized/fi.lproj/QSPlugInsPrefPane.strings and b/Quicksilver/Localized/fi.lproj/QSPlugInsPrefPane.strings differ diff --git a/Quicksilver/Localized/fi.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/fi.lproj/QSSearchPrefPane.strings index 7c941b33f..558ad10ec 100644 Binary files a/Quicksilver/Localized/fi.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/fi.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/fi.lproj/QSTriggersPrefPane.strings b/Quicksilver/Localized/fi.lproj/QSTriggersPrefPane.strings index f8d38fd16..239740beb 100644 Binary files a/Quicksilver/Localized/fi.lproj/QSTriggersPrefPane.strings and b/Quicksilver/Localized/fi.lproj/QSTriggersPrefPane.strings differ diff --git a/Quicksilver/Localized/fr.lproj/Catalog.strings b/Quicksilver/Localized/fr.lproj/Catalog.strings deleted file mode 100644 index e69de29bb..000000000 diff --git a/Quicksilver/Localized/fr.lproj/Preferences.strings b/Quicksilver/Localized/fr.lproj/Preferences.strings deleted file mode 100644 index 24a899c34..000000000 --- a/Quicksilver/Localized/fr.lproj/Preferences.strings +++ /dev/null @@ -1,433 +0,0 @@ -/* NSTextField (0.00) : (oid:2137) */ -"0.00" = "0.00"; - -/* NSTextField (10) : (oid:2129) */ -"10" = "10"; - -/* NSMenuItem : > (oid:2201) */ -"" = ""; - -/* NSMenuItem : (oid:2145) */ -"Accurate" = "Précis"; - -/* NSTabViewItem : (oid:2184) */ -"Actions" = "Actions"; - -/* NSTextField (Activation:) : (oid:2087) */ -"Activation:" = "Raccourci clavier :\n)"; - -/* NSIBHelpConnector : (oid:2182) */ -"Add Quicksilver to your login items" = "Add Quicksilver to your login items"; - -/* NSIBHelpConnector : (oid:2203) */ -"Add actions from the services menu" = "Add actions from the services menu"; - -/* NSMenuItem : (oid:2072) */ -"All Items" = "Tous les éléments"; - -/* NSButtonCell (Alpha) : (oid:2098) */ -"Alpha" = "Alpha"; - -/* NSTabViewItem : (oid:2082) */ -"Application" = "Application"; - -/* NSMenuItem : (oid:2123) */ -"Application Selection" = "Sélection d'application"; - -/* NSTextField (Automatically show other matches) : (oid:2120) */ -"Automatically show other matches\n" = "Afficher automatiquement les autres résultats"; - -/* NSIBHelpConnector : (oid:2313) */ -"Automatically show shelf" = "Automatically show shelf"; - -/* NSButtonCell (Beta) : (oid:2135) */ -"Beta" = "Beta"; - -/* NSButton (CC myself in Direct Email) : (oid:1073) */ -"CC myself in Direct Email" = "Joindre un CC à soit-même au message"; - -/* NSButton (Check Now) : (oid:2095) */ -"Cancel" = "Cancel"; - -/* NSButton (Capitalized keys modify action) : (oid:2043) */ -"Capitalized keys modify action" = "Les touches majuscules modifie l'action"; - -/* NSButton (Capture History:) : (oid:2102) */ -"Capture History:" = "Historique de Saisie :"; - -/* NSButton (Check Now) : (oid:2095) */ -"Check Now" = "Vérifier maintenant"; - -/* NSIBHelpConnector : (oid:2158) */ -"Check for update immediately" = "Check for update immediately"; - -/* NSButton (Check for updates:) : (oid:2056) */ -"Check for updates:" = "Vérifier si mise à jour:"; - -/* NSTabViewItem : (oid:2058) */ -"Clipboard" = "Press-papiers"; - -/* NSTabViewItem : (oid:2097) */ -"Command" = "Commande"; - -/* NSBox : (oid:2084) */ -"Command Line Tool" = "Outil de ligne de commande"; - -/* NSButton (Contact Actions) : (oid:2200) */ -"Contact Actions" = "Actions de Contact"; - -/* NSIBHelpConnector : (oid:2168) */ -"Create new threads for tasks" = "Create new threads for tasks"; - -/* NSMenuItem : (oid:2048) */ -"Daily" = "Chaque jour"; - -/* NSMenuItem : (oid:506) */ -"Default Chat Client" = "Messagerie instantanée par défaut"; - -/* NSMenuItem : (oid:507) */ -"Default Email Client" = "Messagerie par défaut"; - -/* NSIBHelpConnector : (oid:2183) */ -"Delay before searching to improve performance on slow machines" = "Delay before searching to improve performance on slow machines"; - -/* NSIBHelpConnector : (oid:2155) */ -"Delay before showing alternatives" = "Delay before showing alternatives"; - -/* NSMenuItem : (oid:2133) */ -"Delayed" = "Après coup"; - -/* NSIBHelpConnector : (oid:2161) */ -"Destination for opened/dropped files" = "Destination for opened/dropped files"; - -/* NSIBHelpConnector : (oid:2164) */ -"Destination for results" = "Destination for results"; - -/* NSTextField (Development versions check daily regardless of these settings) : (oid:2126) */ -"Development versions check daily regardless of these settings" = "Les versions de développement vérifient quotidiennement sans tenir compte de ces réglages"; - -/* NSIBHelpConnector : (oid:2315) */ -"Do not show command window on startup" = "Do not show command window on startup"; - -/* NSButton (Don't activate on startup) : (oid:2118) */ -"Don't activate on startup" = "Ne pas activater au démarrage"; - -/* NSIBHelpConnector : (oid:2298) */ -"Don't perform automatic rescan every 10 minutes" = "Don't perform automatic rescan every 10 minutes"; - -/* NSButton (Don't rescan catalog automatically) : (oid:2294) */ -"Don't rescan catalog automatically" = "Ne pas rescanner le catalogue automatiquement"; - -/* NSButton (Don't show status menu item) : (oid:2121) */ -"Don't show status menu item" = "Ne pas afficher l'icône du menu des statuts"; - -/* NSTextField (Dropped items go to:) : (oid:2051) */ -"Dropped items go to:" = "Les éléments tombés vers :"; - -/* NSButton (Enable Rendezvous) : (oid:2075) */ -"Enable Rendezvous" = "Activer Rendezvous"; - -/* NSButton (Enable Services) : (oid:2187) */ -"Enable Services" = "Activer les services"; - -/* NSIBHelpConnector : (oid:2160) */ -"Enable eye-candy" = "Enable eye-candy"; - -/* NSIBHelpConnector : (oid:2172) */ -"Enable update checking" = "Enable update checking"; - -/* NSTabViewItem : (oid:2152) */ -"Extras" = "Extras"; - -/* NSMenuItem : (oid:2039) */ -"Fast" = "Rapide"; - -/* NSBox : (oid:2114) */ -"Features & Stability" = "Fonctions & Stabilité"; - -/* NSIBHelpConnector : (oid:2204) */ -"Finder or finder replacement to use" = "Finder or finder replacement to use"; - -/* NSIBHelpConnector : (oid:2170) */ -"Global activation hotkey" = "Global activation hotkey"; - -/* NSButton (Hide after pasting) : (oid:2285) */ -"Hide after pasting" = "Masquer après collage"; - -/* NSIBHelpConnector : (oid:2316) */ -"Hide clipboard automatically after pasting" = "Hide clipboard automatically after pasting"; - -/* NSButton (Hide menus and dock icon) : (oid:2131) */ -"Hide menus and dock icon" = "Enlever l'icône du dock et les menus de la barre"; - -/* NSIBHelpConnector : (oid:2174) */ -"Hide status item too" = "Hide status item too"; - -/* NSIBHelpConnector : (oid:2314) */ -"Holding shift causes the action to change" = "Holding shift causes the action to change"; - -/* NSIBHelpConnector : (oid:2311) */ -"Ignore global HotKeys when command is active" = "Ignore global HotKeys when command is active"; - -/* NSTextField (Ignore items larger than:) : (oid:2083) */ -"Ignore items larger than:" = "Ignorer les éléments plus large que :"; - -/* NSMenuItem : (oid:2066) */ -"Immediately" = "Immédiatement"; - -/* NSButton (Inline Contents) : (oid:1199) */ -"Inline Contents" = "Contenu en ligne"; - -/* NSButton (Install) : (oid:2070) */ -"Install" = "Installer"; - -/* NSIBHelpConnector : (oid:2179) */ -"Install the command line tool" = "Install the command line tool"; - -/* NSIBHelpConnector : (oid:2157) */ -"Interface type" = "Interface type"; - -/* NSTextField (Interface:) : (oid:2050) */ -"Interface:" = "Interface:"; - -/* NSMenuItem : (oid:2190) */ -"Item1" = "Item1"; - -/* NSMenuItem : (oid:2197) */ -"Item2" = "Item2"; - -/* NSMenuItem : (oid:2199) */ -"Item3" = "Item3"; - -/* NSIBHelpConnector : (oid:2167) */ -"Items that should load their icons" = "Items that should load their icons"; - -/* NSTextField (Kind:) : (oid:525) */ -"Kind:" = "Genre :"; - -/* NSTextField (Last Check:) : (oid:2062) */ -"Last Check:" = "Dernière mise à jour:"; - -/* NSMenuItem : (oid:2139) */ -"Last Used Item" = "Dernier élément utilisé"; - -/* NSTextField (Load icons for) : (oid:2094) */ -"Load icons for" = "Charger les icones pour :"; - -/* NSButton (Maintain aliases to file Items) : (oid:2092) */ -"Maintain aliases to file Items" = "Maintenir les liens pour classer les éléments"; - -/* NSIBHelpConnector : (oid:2163) */ -"Match letters typed with the wrong hand" = "Match letters typed with the wrong hand"; - -/* NSTabViewItem : (oid:2116) */ -"Matching" = "Résultas"; - -/* NSMenuItem : (oid:2096) */ -"Menu Bar" = "Menu barre"; - -/* NSTableColumn : (oid:2205) */ -"Module" = "Module"; - -/* NSMenuItem : (oid:2064) */ -"Monthly" = "Chaque mois"; - -/* NSNibBindingConnector : (oid:2253) */ -"NSIsNotNil" = "NSIsNotNil"; - -/* NSNibBindingConnector : (oid:2236) */ -"NSNegateBoolean" = "NSNegateBoolean"; - -/* NSTabViewItem : (oid:2041) */ -"Networking" = "Réseau"; - -/* NSNibBindingConnector : (oid:2310) */ -"Never" = "Never"; - -/* NSIBHelpConnector : (oid:2169) */ -"New, lightly tested features " = "New, lightly tested features "; - -/* NSIBHelpConnector : (oid:2159) */ -"Number of items to save" = "Number of items to save"; - -/* NSMenuItem : (oid:2040) */ -"On Launch" = "Au lancement"; - -/* NSButton (One-hand matching) : (oid:2042) */ -"One-hand matching" = "Résultat en un coup"; - -/* NSIBHelpConnector : (oid:2317) */ -"Only list applications that support the selected file" = "Only list applications that support the selected file"; - -/* NSMenu : (oid:2275) */ -"OtherViews" = "OtherViews"; - -/* NSPanel (Panel) : (oid:501) */ -"Panel" = "Panel"; - -/* QSWindow (Preferences) : (oid:12) */ -"Preferences" = "Préférences"; - -/* NSIBHelpConnector : (oid:2162) */ -"Prevent accidental quitting" = "Prevent accidental quitting"; - -/* NSButton (Recieve Items) : (oid:2130) */ -"Recieve Items" = "Réception des éléments"; - -/* NSIBHelpConnector : (oid:2308) */ -"Remove large (128x128) icons from memory. Will make Bezel interface blurry" = "Remove large (128x128) icons from memory. Will make Bezel interface blurry"; - -/* NSTextField (Reopening an application) : (oid:2276) */ -"Reopening an application" = "Réouvrir une application"; - -/* NSIBHelpConnector : (oid:2312) */ -"Reopening behavior" = "Reopening behavior"; - -/* NSTextField (Reopening the current application shows all windows) : (oid:2284) */ -"Reopening the current application shows all windows" = "Reopening the current application shows all windows"; - -/* NSTextField (Reset search after) : (oid:2140) */ -"Reset search after" = "Initialiser après"; - -/* NSBox : (oid:2078) */ -"Routing" = "Aiguillage"; - -/* NSButton (Run tasks in background) : (oid:2144) */ -"Run tasks in background" = "Exécutez les tâches en fond"; - -/* NSIBHelpConnector : (oid:2173) */ -"Save items copied to the clipboard" = "Save items copied to the clipboard"; - -/* NSTextField (Search Ranking:) : (oid:2149) */ -"Search Ranking:" = "Search Ranking:"; - -/* NSTextField (Searchable items are controlled by the catalog) : (oid:2301) */ -"Searchable items are controlled by the catalog" = "Les éléments recherchables sont contrôlés par le catalogue"; - -/* NSMenuItem : (oid:2052) */ -"Selected Item Only" = "Les éléments sélectionnés"; - -/* NSTextField (Send Files With:) : (oid:508) */ -"Send Files With:" = "Envoyer les fichiers avec:"; - -/* NSTextField (Send results to:) : (oid:2085) */ -"Send results to:" = "Envoyer les résultats vers :"; - -/* NSButton (Share Clip History) : (oid:2101) */ -"Share Clip History" = "Partager l'historique"; - -/* NSButton (Share Clipboard) : (oid:2111) */ -"Share Clipboard" = "Partager le presse-papiers"; - -/* NSMenuItem : (oid:2088) */ -"Shelf" = "l'étagère"; - -/* NSButton (Show Catalog) : (oid:2300) */ -"Show Catalog" = "Show Catalog"; - -/* NSButton (Show Task Viewer automatically) : (oid:2141) */ -"Show Task Viewer automatically" = "Montrez le visualisateur de tâche automatiquement"; - -/* NSButton (Show children) : (oid:1200) */ -"Show children" = "Montrer les enfants"; - -/* NSButton (Show only valid applications for Open With...) : (oid:2303) */ -"Show only valid applications for Open With..." = "Afficher que les applis valides pour Ouvrir avec..."; - -/* NSTextField (Show other matches) : (oid:2061) */ -"Show other matches" = "Montrer d'autres résultats"; - -/* NSButton (Show shelf on launch) : (oid:2054) */ -"Show shelf on launch" = "Montrez l'étagère au lancement"; - -/* NSIBHelpConnector : (oid:2180) */ -"Show task viewer whenever there is activity" = "Show task viewer whenever there is activity"; - -/* NSButton (Shrink icons to save memory) : (oid:2128) */ -"Shrink icons to save memory" = "Rétrécir des icônes pour épargner la mémoire"; - -/* NSButtonCell (Stable) : (oid:2109) */ -"Stable" = "Stable"; - -/* NSIBHelpConnector : (oid:2171) */ -"Stable features only" = "Stable features only"; - -/* NSButton (Start at login) : (oid:2148) */ -"Start at login" = "Lancement au démarrage de session"; - -/* NSButton (Superfluous visual effects) : (oid:2045) */ -"Superfluous visual effects" = "Effets visuels superflus"; - -/* NSButton (Suppress HotKeys in Command) : (oid:2106) */ -"Suppress HotKeys in Command" = "Supprimez les racourcis-clavier aux commandes"; - -/* NSMenuItem : (oid:2080) */ -"Task Viewer" = "Le visualisateur de tâches"; - -/* NSTextField (Temporary pref - Requires relaunch) : (oid:2297) */ -"Temporary pref - Requires relaunch" = "Préf temporaire - Nécésite un redémarrage"; - -/* NSIBHelpConnector : (oid:2181) */ -"This might not be a good idea" = "This might not be a good idea"; - -/* NSIBHelpConnector : (oid:2166) */ -"Time to wait before new letters typed are considered a new search" = "Time to wait before new letters typed are considered a new search"; - -/* NSBox : (oid:2209) */ -"Title" = "Title"; - -/* NSIBHelpConnector : (oid:2177) */ -"Toggle dock icon and menu visibility. (Requires relaunch)" = "Toggle dock icon and menu visibility. (Requires relaunch)"; - -/* NSButton (0) : (oid:2154) */ -"Type a HotKey" = "Type a HotKey"; - -/* NSIBHelpConnector : (oid:2178) */ -"Untested and possibly dangerous features" = "Untested and possibly dangerous features"; - -/* NSTabViewItem : (oid:2147) */ -"Update" = "Mise à jour"; - -/* NSIBHelpConnector : (oid:2176) */ -"Update frequency" = "Update frequency"; - -/* NSTextField (Use) : (oid:2195) */ -"Use" = "Utiliser"; - -/* NSButtonCell (Volatile) : (oid:2110) */ -"Volatile" = "Volatile"; - -/* NSTextField (Wait for) : (oid:2122) */ -"Wait for" = "Attendre"; - -/* NSButton (Warn before quitting) : (oid:2107) */ -"Warn before quitting" = "Retard avant de quitter"; - -/* NSMenuItem : (oid:2146) */ -"Weekly" = "Chaque semaine"; - -/* NSMenuItem : (oid:2046) */ -"Window" = "Fenêtre"; - -/* NSMenuItem : (oid:2273) */ -"activates" = "Activations"; - -/* NSTextField (for selections and reveals) : (oid:2193) */ -"for selections and reveals" = "pour les sélections et ouvertures"; - -/* NSTextField (qs is not installed) : (oid:2086) */ -"qs is not installed" = "QS n'est pas installé"; - -/* NSTextField (seconds) : (oid:2127) */ -"seconds" = "secondes"; - -/* NSTextField (seconds before searching) : (oid:2081) */ -"seconds before searching" = "secondes après la recherche"; - -/* NSMenuItem : (oid:2272) */ -"shows all windows" = "Affiche toutes les fenêtres"; - -/* NSMenuItem : (oid:2274) */ -"shows front window" = "Affiche les fenêtres du premier plan"; - diff --git a/Quicksilver/Localized/id.lproj/Preferences.strings b/Quicksilver/Localized/id.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/id.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/it.lproj/Catalog.strings b/Quicksilver/Localized/it.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/it.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/it.lproj/Preferences.strings b/Quicksilver/Localized/it.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/it.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/ja.lproj/Catalog.strings b/Quicksilver/Localized/ja.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/ja.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/ja.lproj/Preferences.strings b/Quicksilver/Localized/ja.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/ja.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/ja.lproj/QSActionsPrefPane.strings b/Quicksilver/Localized/ja.lproj/QSActionsPrefPane.strings index b6d63b79e..c3883d717 100644 Binary files a/Quicksilver/Localized/ja.lproj/QSActionsPrefPane.strings and b/Quicksilver/Localized/ja.lproj/QSActionsPrefPane.strings differ diff --git a/Quicksilver/Localized/ja.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/ja.lproj/QSAppearancePrefPane.strings index e52efc669..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/ja.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/ja.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/ja.lproj/QSApplicationPrefPane.strings b/Quicksilver/Localized/ja.lproj/QSApplicationPrefPane.strings index 6cc186ceb..c5ba09f88 100644 Binary files a/Quicksilver/Localized/ja.lproj/QSApplicationPrefPane.strings and b/Quicksilver/Localized/ja.lproj/QSApplicationPrefPane.strings differ diff --git a/Quicksilver/Localized/ja.lproj/QSCatalog.strings b/Quicksilver/Localized/ja.lproj/QSCatalog.strings index 5bbf50dfe..62a25b799 100644 Binary files a/Quicksilver/Localized/ja.lproj/QSCatalog.strings and b/Quicksilver/Localized/ja.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/ja.lproj/QSHelpersPrefPane.strings b/Quicksilver/Localized/ja.lproj/QSHelpersPrefPane.strings index e1bc14bed..23217517e 100644 Binary files a/Quicksilver/Localized/ja.lproj/QSHelpersPrefPane.strings and b/Quicksilver/Localized/ja.lproj/QSHelpersPrefPane.strings differ diff --git a/Quicksilver/Localized/ja.lproj/QSMainMenuPrefPane.strings b/Quicksilver/Localized/ja.lproj/QSMainMenuPrefPane.strings index ecbf4629a..da341e880 100644 Binary files a/Quicksilver/Localized/ja.lproj/QSMainMenuPrefPane.strings and b/Quicksilver/Localized/ja.lproj/QSMainMenuPrefPane.strings differ diff --git a/Quicksilver/Localized/ja.lproj/QSPlugInsPrefPane.strings b/Quicksilver/Localized/ja.lproj/QSPlugInsPrefPane.strings index 32a70aad0..fbbd84f8b 100644 Binary files a/Quicksilver/Localized/ja.lproj/QSPlugInsPrefPane.strings and b/Quicksilver/Localized/ja.lproj/QSPlugInsPrefPane.strings differ diff --git a/Quicksilver/Localized/ja.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/ja.lproj/QSSearchPrefPane.strings index 7c941b33f..558ad10ec 100644 Binary files a/Quicksilver/Localized/ja.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/ja.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/ja.lproj/QSTriggersPrefPane.strings b/Quicksilver/Localized/ja.lproj/QSTriggersPrefPane.strings index f8d38fd16..239740beb 100644 Binary files a/Quicksilver/Localized/ja.lproj/QSTriggersPrefPane.strings and b/Quicksilver/Localized/ja.lproj/QSTriggersPrefPane.strings differ diff --git a/Quicksilver/Localized/ko.lproj/Catalog.strings b/Quicksilver/Localized/ko.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/ko.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/ko.lproj/Preferences.strings b/Quicksilver/Localized/ko.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/ko.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/nb-NO.lproj/About.strings b/Quicksilver/Localized/nb-NO.lproj/About.strings index 6e7298531..524991c88 100644 Binary files a/Quicksilver/Localized/nb-NO.lproj/About.strings and b/Quicksilver/Localized/nb-NO.lproj/About.strings differ diff --git a/Quicksilver/Localized/nb-NO.lproj/Catalog.strings b/Quicksilver/Localized/nb-NO.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/nb-NO.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/nb-NO.lproj/Localizable.strings b/Quicksilver/Localized/nb-NO.lproj/Localizable.strings index 43ab45214..43326be90 100644 Binary files a/Quicksilver/Localized/nb-NO.lproj/Localizable.strings and b/Quicksilver/Localized/nb-NO.lproj/Localizable.strings differ diff --git a/Quicksilver/Localized/nb-NO.lproj/Preferences.strings b/Quicksilver/Localized/nb-NO.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/nb-NO.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/nb-NO.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/nb-NO.lproj/QSAppearancePrefPane.strings index e52efc669..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/nb-NO.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/nb-NO.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/nb-NO.lproj/QSCatalog.strings b/Quicksilver/Localized/nb-NO.lproj/QSCatalog.strings index 136dafb35..62a25b799 100644 Binary files a/Quicksilver/Localized/nb-NO.lproj/QSCatalog.strings and b/Quicksilver/Localized/nb-NO.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/nb-NO.lproj/QSHelpersPrefPane.strings b/Quicksilver/Localized/nb-NO.lproj/QSHelpersPrefPane.strings index e1bc14bed..23217517e 100644 Binary files a/Quicksilver/Localized/nb-NO.lproj/QSHelpersPrefPane.strings and b/Quicksilver/Localized/nb-NO.lproj/QSHelpersPrefPane.strings differ diff --git a/Quicksilver/Localized/nb-NO.lproj/QSPlugInsPrefPane.strings b/Quicksilver/Localized/nb-NO.lproj/QSPlugInsPrefPane.strings index 32a70aad0..fbbd84f8b 100644 Binary files a/Quicksilver/Localized/nb-NO.lproj/QSPlugInsPrefPane.strings and b/Quicksilver/Localized/nb-NO.lproj/QSPlugInsPrefPane.strings differ diff --git a/Quicksilver/Localized/nb-NO.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/nb-NO.lproj/QSSearchPrefPane.strings index 7c941b33f..558ad10ec 100644 Binary files a/Quicksilver/Localized/nb-NO.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/nb-NO.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/nb-NO.lproj/QSTriggersPrefPane.strings b/Quicksilver/Localized/nb-NO.lproj/QSTriggersPrefPane.strings index f8d38fd16..239740beb 100644 Binary files a/Quicksilver/Localized/nb-NO.lproj/QSTriggersPrefPane.strings and b/Quicksilver/Localized/nb-NO.lproj/QSTriggersPrefPane.strings differ diff --git a/Quicksilver/Localized/nl.lproj/About.strings b/Quicksilver/Localized/nl.lproj/About.strings index 825f4d347..83e261269 100644 Binary files a/Quicksilver/Localized/nl.lproj/About.strings and b/Quicksilver/Localized/nl.lproj/About.strings differ diff --git a/Quicksilver/Localized/nl.lproj/Catalog.strings b/Quicksilver/Localized/nl.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/nl.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/nl.lproj/Localizable.strings b/Quicksilver/Localized/nl.lproj/Localizable.strings index 00d1a683a..14dabe69e 100644 Binary files a/Quicksilver/Localized/nl.lproj/Localizable.strings and b/Quicksilver/Localized/nl.lproj/Localizable.strings differ diff --git a/Quicksilver/Localized/nl.lproj/Preferences.strings b/Quicksilver/Localized/nl.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/nl.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/nl.lproj/QSActionsPrefPane.strings b/Quicksilver/Localized/nl.lproj/QSActionsPrefPane.strings index b6d63b79e..c3883d717 100644 Binary files a/Quicksilver/Localized/nl.lproj/QSActionsPrefPane.strings and b/Quicksilver/Localized/nl.lproj/QSActionsPrefPane.strings differ diff --git a/Quicksilver/Localized/nl.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/nl.lproj/QSAppearancePrefPane.strings index e52efc669..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/nl.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/nl.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/nl.lproj/QSApplicationPrefPane.strings b/Quicksilver/Localized/nl.lproj/QSApplicationPrefPane.strings index 6cc186ceb..c5ba09f88 100644 Binary files a/Quicksilver/Localized/nl.lproj/QSApplicationPrefPane.strings and b/Quicksilver/Localized/nl.lproj/QSApplicationPrefPane.strings differ diff --git a/Quicksilver/Localized/nl.lproj/QSCatalog.strings b/Quicksilver/Localized/nl.lproj/QSCatalog.strings index 5bbf50dfe..62a25b799 100644 Binary files a/Quicksilver/Localized/nl.lproj/QSCatalog.strings and b/Quicksilver/Localized/nl.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/nl.lproj/QSHelpersPrefPane.strings b/Quicksilver/Localized/nl.lproj/QSHelpersPrefPane.strings index e1bc14bed..23217517e 100644 Binary files a/Quicksilver/Localized/nl.lproj/QSHelpersPrefPane.strings and b/Quicksilver/Localized/nl.lproj/QSHelpersPrefPane.strings differ diff --git a/Quicksilver/Localized/nl.lproj/QSMainMenuPrefPane.strings b/Quicksilver/Localized/nl.lproj/QSMainMenuPrefPane.strings index ecbf4629a..da341e880 100644 Binary files a/Quicksilver/Localized/nl.lproj/QSMainMenuPrefPane.strings and b/Quicksilver/Localized/nl.lproj/QSMainMenuPrefPane.strings differ diff --git a/Quicksilver/Localized/nl.lproj/QSPlugInsPrefPane.strings b/Quicksilver/Localized/nl.lproj/QSPlugInsPrefPane.strings index 32a70aad0..fbbd84f8b 100644 Binary files a/Quicksilver/Localized/nl.lproj/QSPlugInsPrefPane.strings and b/Quicksilver/Localized/nl.lproj/QSPlugInsPrefPane.strings differ diff --git a/Quicksilver/Localized/nl.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/nl.lproj/QSSearchPrefPane.strings index 7c941b33f..558ad10ec 100644 Binary files a/Quicksilver/Localized/nl.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/nl.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/nl.lproj/QSTriggersPrefPane.strings b/Quicksilver/Localized/nl.lproj/QSTriggersPrefPane.strings index f8d38fd16..239740beb 100644 Binary files a/Quicksilver/Localized/nl.lproj/QSTriggersPrefPane.strings and b/Quicksilver/Localized/nl.lproj/QSTriggersPrefPane.strings differ diff --git a/Quicksilver/Localized/no.lproj/About.strings b/Quicksilver/Localized/no.lproj/About.strings index 825f4d347..83e261269 100644 Binary files a/Quicksilver/Localized/no.lproj/About.strings and b/Quicksilver/Localized/no.lproj/About.strings differ diff --git a/Quicksilver/Localized/no.lproj/Catalog.strings b/Quicksilver/Localized/no.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/no.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/no.lproj/Localizable.strings b/Quicksilver/Localized/no.lproj/Localizable.strings index 00d1a683a..14dabe69e 100644 Binary files a/Quicksilver/Localized/no.lproj/Localizable.strings and b/Quicksilver/Localized/no.lproj/Localizable.strings differ diff --git a/Quicksilver/Localized/no.lproj/Preferences.strings b/Quicksilver/Localized/no.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/no.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/pl.lproj/Catalog.strings b/Quicksilver/Localized/pl.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/pl.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/pl.lproj/Preferences.strings b/Quicksilver/Localized/pl.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/pl.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/pt-BR.lproj/QSActionsPrefPane.strings b/Quicksilver/Localized/pt-BR.lproj/QSActionsPrefPane.strings index b6d63b79e..c3883d717 100644 Binary files a/Quicksilver/Localized/pt-BR.lproj/QSActionsPrefPane.strings and b/Quicksilver/Localized/pt-BR.lproj/QSActionsPrefPane.strings differ diff --git a/Quicksilver/Localized/pt-BR.lproj/QSApplicationPrefPane.strings b/Quicksilver/Localized/pt-BR.lproj/QSApplicationPrefPane.strings index 6cc186ceb..c5ba09f88 100644 Binary files a/Quicksilver/Localized/pt-BR.lproj/QSApplicationPrefPane.strings and b/Quicksilver/Localized/pt-BR.lproj/QSApplicationPrefPane.strings differ diff --git a/Quicksilver/Localized/pt-BR.lproj/QSCatalog.strings b/Quicksilver/Localized/pt-BR.lproj/QSCatalog.strings index 5bbf50dfe..62a25b799 100644 Binary files a/Quicksilver/Localized/pt-BR.lproj/QSCatalog.strings and b/Quicksilver/Localized/pt-BR.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/pt-BR.lproj/QSHelpersPrefPane.strings b/Quicksilver/Localized/pt-BR.lproj/QSHelpersPrefPane.strings index e1bc14bed..23217517e 100644 Binary files a/Quicksilver/Localized/pt-BR.lproj/QSHelpersPrefPane.strings and b/Quicksilver/Localized/pt-BR.lproj/QSHelpersPrefPane.strings differ diff --git a/Quicksilver/Localized/pt-BR.lproj/QSMainMenuPrefPane.strings b/Quicksilver/Localized/pt-BR.lproj/QSMainMenuPrefPane.strings index ecbf4629a..da341e880 100644 Binary files a/Quicksilver/Localized/pt-BR.lproj/QSMainMenuPrefPane.strings and b/Quicksilver/Localized/pt-BR.lproj/QSMainMenuPrefPane.strings differ diff --git a/Quicksilver/Localized/pt-BR.lproj/QSPlugInsPrefPane.strings b/Quicksilver/Localized/pt-BR.lproj/QSPlugInsPrefPane.strings index 32a70aad0..fbbd84f8b 100644 Binary files a/Quicksilver/Localized/pt-BR.lproj/QSPlugInsPrefPane.strings and b/Quicksilver/Localized/pt-BR.lproj/QSPlugInsPrefPane.strings differ diff --git a/Quicksilver/Localized/pt-BR.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/pt-BR.lproj/QSSearchPrefPane.strings index 7c941b33f..558ad10ec 100644 Binary files a/Quicksilver/Localized/pt-BR.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/pt-BR.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/pt-BR.lproj/QSTriggersPrefPane.strings b/Quicksilver/Localized/pt-BR.lproj/QSTriggersPrefPane.strings index f8d38fd16..239740beb 100644 Binary files a/Quicksilver/Localized/pt-BR.lproj/QSTriggersPrefPane.strings and b/Quicksilver/Localized/pt-BR.lproj/QSTriggersPrefPane.strings differ diff --git a/Quicksilver/Localized/ru.lproj/Preferences.strings b/Quicksilver/Localized/ru.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/ru.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/sv.lproj/Catalog.strings b/Quicksilver/Localized/sv.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/sv.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/sv.lproj/Preferences.strings b/Quicksilver/Localized/sv.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/sv.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/th.lproj/Localizable.strings b/Quicksilver/Localized/th.lproj/Localizable.strings index 9e33b45e4..d60a1664e 100644 Binary files a/Quicksilver/Localized/th.lproj/Localizable.strings and b/Quicksilver/Localized/th.lproj/Localizable.strings differ diff --git a/Quicksilver/Localized/th.lproj/Preferences.strings b/Quicksilver/Localized/th.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/th.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/th.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/th.lproj/QSAppearancePrefPane.strings index e52efc669..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/th.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/th.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/th.lproj/QSApplicationPrefPane.strings b/Quicksilver/Localized/th.lproj/QSApplicationPrefPane.strings index 6cc186ceb..c5ba09f88 100644 Binary files a/Quicksilver/Localized/th.lproj/QSApplicationPrefPane.strings and b/Quicksilver/Localized/th.lproj/QSApplicationPrefPane.strings differ diff --git a/Quicksilver/Localized/th.lproj/QSPlugInsPrefPane.strings b/Quicksilver/Localized/th.lproj/QSPlugInsPrefPane.strings index 32a70aad0..fbbd84f8b 100644 Binary files a/Quicksilver/Localized/th.lproj/QSPlugInsPrefPane.strings and b/Quicksilver/Localized/th.lproj/QSPlugInsPrefPane.strings differ diff --git a/Quicksilver/Localized/th.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/th.lproj/QSSearchPrefPane.strings index 7c941b33f..558ad10ec 100644 Binary files a/Quicksilver/Localized/th.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/th.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/th.lproj/QSTriggersPrefPane.strings b/Quicksilver/Localized/th.lproj/QSTriggersPrefPane.strings index f8d38fd16..239740beb 100644 Binary files a/Quicksilver/Localized/th.lproj/QSTriggersPrefPane.strings and b/Quicksilver/Localized/th.lproj/QSTriggersPrefPane.strings differ diff --git a/Quicksilver/Localized/tr.lproj/Catalog.strings b/Quicksilver/Localized/tr.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/tr.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/zh-Hans.lproj/Catalog.strings b/Quicksilver/Localized/zh-Hans.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/zh-Hans.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/zh-Hans.lproj/Localizable.strings b/Quicksilver/Localized/zh-Hans.lproj/Localizable.strings index d7387b368..43326be90 100644 Binary files a/Quicksilver/Localized/zh-Hans.lproj/Localizable.strings and b/Quicksilver/Localized/zh-Hans.lproj/Localizable.strings differ diff --git a/Quicksilver/Localized/zh-Hans.lproj/Preferences.strings b/Quicksilver/Localized/zh-Hans.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/zh-Hans.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/zh-Hans.lproj/QSAppearancePrefPane.strings b/Quicksilver/Localized/zh-Hans.lproj/QSAppearancePrefPane.strings index c2a335a65..7e38c7ff7 100644 Binary files a/Quicksilver/Localized/zh-Hans.lproj/QSAppearancePrefPane.strings and b/Quicksilver/Localized/zh-Hans.lproj/QSAppearancePrefPane.strings differ diff --git a/Quicksilver/Localized/zh-Hans.lproj/QSApplicationPrefPane.strings b/Quicksilver/Localized/zh-Hans.lproj/QSApplicationPrefPane.strings index 0584b9196..c5ba09f88 100644 Binary files a/Quicksilver/Localized/zh-Hans.lproj/QSApplicationPrefPane.strings and b/Quicksilver/Localized/zh-Hans.lproj/QSApplicationPrefPane.strings differ diff --git a/Quicksilver/Localized/zh-Hans.lproj/QSCatalog.strings b/Quicksilver/Localized/zh-Hans.lproj/QSCatalog.strings index aa4e3f305..62a25b799 100644 Binary files a/Quicksilver/Localized/zh-Hans.lproj/QSCatalog.strings and b/Quicksilver/Localized/zh-Hans.lproj/QSCatalog.strings differ diff --git a/Quicksilver/Localized/zh-Hans.lproj/QSSearchPrefPane.strings b/Quicksilver/Localized/zh-Hans.lproj/QSSearchPrefPane.strings index 125d3cc8e..558ad10ec 100644 Binary files a/Quicksilver/Localized/zh-Hans.lproj/QSSearchPrefPane.strings and b/Quicksilver/Localized/zh-Hans.lproj/QSSearchPrefPane.strings differ diff --git a/Quicksilver/Localized/zh-Hant.lproj/Catalog.strings b/Quicksilver/Localized/zh-Hant.lproj/Catalog.strings deleted file mode 100644 index 56effbb21..000000000 --- a/Quicksilver/Localized/zh-Hant.lproj/Catalog.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Catalog.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/zh-Hant.lproj/Preferences.strings b/Quicksilver/Localized/zh-Hant.lproj/Preferences.strings deleted file mode 100644 index 5aa8e4fd9..000000000 --- a/Quicksilver/Localized/zh-Hant.lproj/Preferences.strings +++ /dev/null @@ -1,7 +0,0 @@ -/* - Preferences.strings - Quicksilver - - Created by Andre Berg on 15.10.09. - Copyright 2009 Berg Media. All rights reserved. - */ diff --git a/Quicksilver/Localized/zh-Hant.lproj/QSAdvancedPrefPane.strings b/Quicksilver/Localized/zh-Hant.lproj/QSAdvancedPrefPane.strings index 591382a41..51532f256 100644 Binary files a/Quicksilver/Localized/zh-Hant.lproj/QSAdvancedPrefPane.strings and b/Quicksilver/Localized/zh-Hant.lproj/QSAdvancedPrefPane.strings differ diff --git a/Quicksilver/Nibs/QSPlugInsPrefPane.xib b/Quicksilver/Nibs/QSPlugInsPrefPane.xib index 813a2cdc1..83aad882b 100644 --- a/Quicksilver/Nibs/QSPlugInsPrefPane.xib +++ b/Quicksilver/Nibs/QSPlugInsPrefPane.xib @@ -2,10 +2,10 @@ 1070 - 12C3012 + 12E55 3084 - 1187.34 - 625.00 + 1187.39 + 626.00 3084 2053 @@ -353,7 +353,7 @@ - dd/MM/yyyy + dd/MM/yy NO @@ -1282,7 +1282,7 @@ 27 2 - {{206, 525}, {600, 400}} + {{304, 238}, {600, 400}} -461896704 Window NSPanel @@ -1314,6 +1314,7 @@ {600, 400} + _NS:51 @@ -1332,6 +1333,7 @@ {600, 400} + _NS:207 @@ -1346,7 +1348,7 @@ - dd/MM/yyyy + dd/MM/yy NO @@ -3090,7 +3092,301 @@ 632 - + + + + NSApplication + + relaunch: + id + + + relaunch: + + relaunch: + id + + + + IBProjectSource + ./Classes/NSApplication.h + + + + QSFancyOutlineView + QSOutlineView + + IBProjectSource + ./Classes/QSFancyOutlineView.h + + + + QSGlossyBarButton + NSButton + + IBProjectSource + ./Classes/QSGlossyBarButton.h + + + + QSGlossyBarMenuButton + QSMenuButton + + IBProjectSource + ./Classes/QSGlossyBarMenuButton.h + + + + QSGlossyBarView + NSView + + IBProjectSource + ./Classes/QSGlossyBarView.h + + + + QSHandledSplitView + NSSplitView + + IBProjectSource + ./Classes/QSHandledSplitView.h + + + + QSImageAndTextCell + NSTextFieldCell + + IBProjectSource + ./Classes/QSImageAndTextCell.h + + + + QSMenuButton + NSButton + + IBProjectSource + ./Classes/QSMenuButton.h + + + + QSOutlineView + NSOutlineView + + IBProjectSource + ./Classes/QSOutlineView.h + + + + QSPlugInsPrefPane + QSPreferencePane + + id + id + id + id + id + id + id + id + id + + + + copyInstallURL: + id + + + deleteSelection: + id + + + downloadInBrowser: + id + + + getInfo: + id + + + installSelectedPlugIns: + id + + + reloadPlugIns: + id + + + showHelp: + id + + + showPlugInsFolder: + id + + + updatePlugIns: + id + + + + NSArrayController + NSButton + NSButton + NSDrawer + NSTableView + id + NSPanel + NSTableView + NSButton + NSController + NSView + NSTextField + + + + arrayController + NSArrayController + + + docsButton + NSButton + + + infoButton + NSButton + + + infoDrawer + NSDrawer + + + plugInTable + NSTableView + + + plugInText + id + + + pluginInfoPanel + NSPanel + + + pluginSetsTable + NSTableView + + + refreshButton + NSButton + + + setsArrayController + NSController + + + sidebar + NSView + + + statusField + NSTextField + + + + IBProjectSource + ./Classes/QSPlugInsPrefPane.h + + + + QSPreferencePane + NSObject + + showPaneHelp: + id + + + showPaneHelp: + + showPaneHelp: + id + + + + NSView + NSView + NSView + NSWindow + + + + _firstKeyView + NSView + + + _initialKeyView + NSView + + + _lastKeyView + NSView + + + _window + NSWindow + + + + IBProjectSource + ./Classes/QSPreferencePane.h + + + + QSSplitHandleView + NSView + + splitView + QSHandledSplitView + + + splitView + + splitView + QSHandledSplitView + + + + IBProjectSource + ./Classes/QSSplitHandleView.h + + + + QSTableView + NSTableView + + IBProjectSource + ./Classes/QSTableView.h + + + + WebView + + reloadFromOrigin: + id + + + reloadFromOrigin: + + reloadFromOrigin: + id + + + + IBProjectSource + ./Classes/WebView.h + + + + 0 IBCocoaFramework @@ -3111,7 +3407,7 @@ {12, 12} {11, 11} {10, 3} - {128, 128} + {256, 256} diff --git a/Quicksilver/PlugIns-Main/Bezel/en.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/Bezel/en.lproj/Localizable.strings index 126898103..485602c5d 100644 Binary files a/Quicksilver/PlugIns-Main/Bezel/en.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/Bezel/en.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/Bezel/es-MX.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/Bezel/es-MX.lproj/Localizable.strings index 126898103..485602c5d 100644 Binary files a/Quicksilver/PlugIns-Main/Bezel/es-MX.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/Bezel/es-MX.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/Bezel/et.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/Bezel/et.lproj/Localizable.strings index 126898103..485602c5d 100644 Binary files a/Quicksilver/PlugIns-Main/Bezel/et.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/Bezel/et.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/Bezel/fi.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/Bezel/fi.lproj/Localizable.strings index 126898103..485602c5d 100644 Binary files a/Quicksilver/PlugIns-Main/Bezel/fi.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/Bezel/fi.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/Bezel/ja.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/Bezel/ja.lproj/Localizable.strings index 126898103..485602c5d 100644 Binary files a/Quicksilver/PlugIns-Main/Bezel/ja.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/Bezel/ja.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/Bezel/nl.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/Bezel/nl.lproj/Localizable.strings index 126898103..485602c5d 100644 Binary files a/Quicksilver/PlugIns-Main/Bezel/nl.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/Bezel/nl.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/Bezel/pt-BR.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/Bezel/pt-BR.lproj/Localizable.strings index 126898103..485602c5d 100644 Binary files a/Quicksilver/PlugIns-Main/Bezel/pt-BR.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/Bezel/pt-BR.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/Bezel/th.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/Bezel/th.lproj/Localizable.strings index 126898103..485602c5d 100644 Binary files a/Quicksilver/PlugIns-Main/Bezel/th.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/Bezel/th.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/PrimerInterface/QSPrimerInterfaceController.m b/Quicksilver/PlugIns-Main/PrimerInterface/QSPrimerInterfaceController.m index 07e63ec82..a6fc2ddee 100644 --- a/Quicksilver/PlugIns-Main/PrimerInterface/QSPrimerInterfaceController.m +++ b/Quicksilver/PlugIns-Main/PrimerInterface/QSPrimerInterfaceController.m @@ -184,8 +184,35 @@ - (void)searchView:(QSSearchObjectView *)view changedString:(NSString *)string { - (void)searchView:(QSSearchObjectView *)view changedResults:(NSArray *)array { // NSLog(@"string %@ %@", string, view); NSInteger count = [array count]; - NSString *string = [NSString stringWithFormat:@"%@ %@%@", count ? [[NSNumber numberWithInteger:count] description] : [@"No" description], view == aSelector?@"action":@"item", ESS(count)]; - //if (!count) string = @"No items"; + NSBundle *selfBundle = [NSBundle bundleForClass:[self class]]; + + NSString *string = nil; + if (view == aSelector) { + switch (count) { + case 0: + string = @"No actions"; + break; + case 1: + string = @"1 action"; + break; + default: + string = [NSString stringWithFormat:NSLocalizedStringFromTableInBundle(@"%@ actions", nil, selfBundle, @""), count]; + break; + } + } else { + switch (count) { + case 0: + string = @"No items"; + break; + case 1: + string = @"1 item"; + break; + default: + string = [NSString stringWithFormat:NSLocalizedStringFromTableInBundle(@"%@ items", nil, selfBundle, @""), count]; + break; + } + } + if (string) { if (view == dSelector) [dSearchCount setStringValue:string]; diff --git a/Quicksilver/PlugIns-Main/PrimerInterface/en.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/PrimerInterface/en.lproj/Localizable.strings index 90bc33ea8..340483593 100644 Binary files a/Quicksilver/PlugIns-Main/PrimerInterface/en.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/PrimerInterface/en.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/PrimerInterface/et.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/PrimerInterface/et.lproj/Localizable.strings index 90bc33ea8..340483593 100644 Binary files a/Quicksilver/PlugIns-Main/PrimerInterface/et.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/PrimerInterface/et.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/PrimerInterface/fi.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/PrimerInterface/fi.lproj/Localizable.strings index 90bc33ea8..340483593 100644 Binary files a/Quicksilver/PlugIns-Main/PrimerInterface/fi.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/PrimerInterface/fi.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/PrimerInterface/ja.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/PrimerInterface/ja.lproj/Localizable.strings index 90bc33ea8..340483593 100644 Binary files a/Quicksilver/PlugIns-Main/PrimerInterface/ja.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/PrimerInterface/ja.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/PrimerInterface/nl.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/PrimerInterface/nl.lproj/Localizable.strings index 90bc33ea8..340483593 100644 Binary files a/Quicksilver/PlugIns-Main/PrimerInterface/nl.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/PrimerInterface/nl.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/PrimerInterface/pt-BR.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/PrimerInterface/pt-BR.lproj/Localizable.strings index 90bc33ea8..340483593 100644 Binary files a/Quicksilver/PlugIns-Main/PrimerInterface/pt-BR.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/PrimerInterface/pt-BR.lproj/Localizable.strings differ diff --git a/Quicksilver/PlugIns-Main/PrimerInterface/th.lproj/Localizable.strings b/Quicksilver/PlugIns-Main/PrimerInterface/th.lproj/Localizable.strings index 90bc33ea8..340483593 100644 Binary files a/Quicksilver/PlugIns-Main/PrimerInterface/th.lproj/Localizable.strings and b/Quicksilver/PlugIns-Main/PrimerInterface/th.lproj/Localizable.strings differ diff --git a/Quicksilver/Quicksilver.xcodeproj/project.pbxproj b/Quicksilver/Quicksilver.xcodeproj/project.pbxproj index 3264e98d1..6acde71eb 100644 --- a/Quicksilver/Quicksilver.xcodeproj/project.pbxproj +++ b/Quicksilver/Quicksilver.xcodeproj/project.pbxproj @@ -181,8 +181,6 @@ 4DFE7DDA0E0821C0000B9AA3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; 6535A91A1086EF4D009D5C90 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6535A9191086EF4D009D5C90 /* Localizable.strings */; }; 6535A98A1086F627009D5C90 /* About.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6535A9891086F627009D5C90 /* About.strings */; }; - 6535A98C1086F627009D5C90 /* Catalog.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6535A98B1086F627009D5C90 /* Catalog.strings */; }; - 6535A98E1086F627009D5C90 /* Preferences.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6535A98D1086F627009D5C90 /* Preferences.strings */; }; 6615228414F43355006FDCB4 /* PathWildcardsData in Resources */ = {isa = PBXBuildFile; fileRef = 6615228314F43355006FDCB4 /* PathWildcardsData */; }; 66448DF214F427B8000FA2E2 /* QSFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E1E5F9AF07B1FCFC0044D6EF /* QSFoundation.framework */; }; 66448E1314F42A4E000FA2E2 /* TestPathWildcards.m in Sources */ = {isa = PBXBuildFile; fileRef = 66448E1214F42A4E000FA2E2 /* TestPathWildcards.m */; }; @@ -1036,10 +1034,8 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 1011467D14BEA45B000E7177 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = ""; }; - 1011467F14BEA6DA000E7177 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Catalog.strings; sourceTree = ""; }; - 1011468014BEA6EB000E7177 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Preferences.strings; sourceTree = ""; }; - 1011468114BEA6FF000E7177 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/About.strings; sourceTree = ""; }; + 1011467D14BEA45B000E7177 /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = ""; }; + 1011468114BEA6FF000E7177 /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/About.strings; sourceTree = ""; }; 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; @@ -1047,7 +1043,7 @@ 423DA027132F7A65005ED70F /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSAction.name.strings; sourceTree = ""; }; 423DA028132F7A6B005ED70F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/QSAction.name.strings; sourceTree = ""; }; 42ADF4FD1317237900C68070 /* QSClangAnalyzer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QSClangAnalyzer.h; sourceTree = ""; }; - 4D002C9E131145DD009040B7 /* en */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; + 4D002C9E131145DD009040B7 /* en */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; 4D002C9F131145DD009040B7 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 4D002CA0131145DD009040B7 /* QSBezelInterface.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = QSBezelInterface.xib; sourceTree = ""; }; 4D002CA1131145DD009040B7 /* QSBezelInterfaceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QSBezelInterfaceController.h; sourceTree = ""; }; @@ -1060,7 +1056,7 @@ 4D002CCB1311460B009040B7 /* QSFinderPlugIn_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QSFinderPlugIn_Prefix.pch; sourceTree = ""; }; 4D002CCC1311460B009040B7 /* QSFinderProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QSFinderProxy.h; sourceTree = ""; }; 4D002CCD1311460B009040B7 /* QSFinderProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QSFinderProxy.m; sourceTree = ""; }; - 4D002CE713114628009040B7 /* en */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; + 4D002CE713114628009040B7 /* en */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; 4D002CE813114628009040B7 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 4D002CE913114628009040B7 /* Primer.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = Primer.xib; sourceTree = ""; }; 4D002CEA13114628009040B7 /* QSPrimerInterfaceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QSPrimerInterfaceController.h; sourceTree = ""; }; @@ -1085,16 +1081,16 @@ 4D35B4DE143C7AB800E059A7 /* QuicksilverDMG.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = QuicksilverDMG.icns; sourceTree = ""; }; 4D4F32FC0E39EDE500668F94 /* QSEffects-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "QSEffects-Info.plist"; sourceTree = ""; }; 4D4F32FD0E39EDFD00668F94 /* QSFoundation-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "QSFoundation-Info.plist"; sourceTree = ""; }; - 4D62E30F1476919300362E9A /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - 4D62E3111476919300362E9A /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSCatalog.strings; sourceTree = ""; }; - 4D62E3131476919300362E9A /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - 4D62E3151476919300362E9A /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - 4D62E3171476919300362E9A /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - 4D62E31D147691B400362E9A /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - 4D62E31E147691C500362E9A /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSCatalog.strings; sourceTree = ""; }; - 4D62E31F147691CC00362E9A /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - 4D62E320147691D600362E9A /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - 4D62E321147691E000362E9A /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + 4D62E30F1476919300362E9A /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + 4D62E3111476919300362E9A /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSCatalog.strings; sourceTree = ""; }; + 4D62E3131476919300362E9A /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + 4D62E3151476919300362E9A /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + 4D62E3171476919300362E9A /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + 4D62E31D147691B400362E9A /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + 4D62E31E147691C500362E9A /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSCatalog.strings; sourceTree = ""; }; + 4D62E31F147691CC00362E9A /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + 4D62E320147691D600362E9A /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + 4D62E321147691E000362E9A /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; 4D62E325147694D800362E9A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = en; path = en.lproj/QSAction.description.plist; sourceTree = ""; }; 4D62E327147694E000362E9A /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = fr; path = fr.lproj/QSAction.description.plist; sourceTree = ""; }; 4D62E3291476A6BF00362E9A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; @@ -1144,20 +1140,20 @@ 4D66BC3B1487024500351C42 /* NSString+NDUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+NDUtilities.h"; sourceTree = ""; }; 4D66BC3C1487024500351C42 /* NSString+NDUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+NDUtilities.m"; sourceTree = ""; }; 4D7DF45316ADC7CA004BA4BE /* DefaultsMap.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = DefaultsMap.plist; sourceTree = ""; }; - 4D7DF45616ADCDEF004BA4BE /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; - 4D7DF45816ADD014004BA4BE /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; - 4D7DF45916ADD602004BA4BE /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; - 4D7DF45F16ADD6C0004BA4BE /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; - 4D7DF46116ADD989004BA4BE /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; - 4D7DF46316ADDAC2004BA4BE /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; - 4D89177614758620009C1C14 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - 4D89177814758641009C1C14 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - 4D89177C14758DC6009C1C14 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - 4D89177E14758DCD009C1C14 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - 4D891784147595A5009C1C14 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - 4D891786147595AB009C1C14 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - 4D891788147595AE009C1C14 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - 4D89178A147595C3009C1C14 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + 4D7DF45616ADCDEF004BA4BE /* en */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; + 4D7DF45816ADD014004BA4BE /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; + 4D7DF45916ADD602004BA4BE /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; + 4D7DF45F16ADD6C0004BA4BE /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; + 4D7DF46116ADD989004BA4BE /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; + 4D7DF46316ADDAC2004BA4BE /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; + 4D89177614758620009C1C14 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + 4D89177814758641009C1C14 /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + 4D89177C14758DC6009C1C14 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + 4D89177E14758DCD009C1C14 /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + 4D891784147595A5009C1C14 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + 4D891786147595AB009C1C14 /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + 4D891788147595AE009C1C14 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + 4D89178A147595C3009C1C14 /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; 4D8A0B3510AB23F7006AF163 /* Configuration */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Configuration; sourceTree = ""; }; 4DA1CCCF0E0BB61100CA6002 /* Developer.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Developer.xcconfig; sourceTree = ""; }; 4DB8915A0E13E93200F57EF7 /* QSDesktopBackgroundView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QSDesktopBackgroundView.h; sourceTree = ""; }; @@ -1185,46 +1181,26 @@ 4DFE7DA00E081A30000B9AA3 /* NSImage+QuickLook.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSImage+QuickLook.m"; sourceTree = ""; }; 4DFE7DA10E081A30000B9AA3 /* README.rtf */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; path = README.rtf; sourceTree = ""; }; 4DFE7DAD0E081BFD000B9AA3 /* QuickLook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLook.framework; path = /System/Library/Frameworks/QuickLook.framework; sourceTree = ""; }; - 6535A8DE1086EF23009D5C90 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/Localizable.strings; sourceTree = ""; }; - 6535A91C1086EF5F009D5C90 /* German */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = German; path = de.lproj/Localizable.strings; sourceTree = ""; }; - 6535A91D1086EF67009D5C90 /* French */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = French; path = fr.lproj/Localizable.strings; sourceTree = ""; }; - 6535A9341086F027009D5C90 /* Spanish */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Spanish; path = es.lproj/Localizable.strings; sourceTree = ""; }; - 6535A9361086F0BE009D5C90 /* Dutch */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Dutch; path = nl.lproj/Localizable.strings; sourceTree = ""; }; - 6535A9371086F0CA009D5C90 /* Italian */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Italian; path = it.lproj/Localizable.strings; sourceTree = ""; }; - 6535A9381086F0E2009D5C90 /* no */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = no; path = no.lproj/Localizable.strings; sourceTree = ""; }; - 6535A9391086F0E5009D5C90 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = ""; }; - 6535A93A1086F0E7009D5C90 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = ""; }; - 6535A9831086F5F9009D5C90 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/Catalog.strings; sourceTree = ""; }; - 6535A9851086F600009D5C90 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/Preferences.strings; sourceTree = ""; }; - 6535A9871086F61F009D5C90 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/About.strings; sourceTree = ""; }; - 6535A98F1086F63E009D5C90 /* German */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = German; path = de.lproj/Catalog.strings; sourceTree = ""; }; - 6535A9901086F642009D5C90 /* Italian */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Italian; path = it.lproj/Catalog.strings; sourceTree = ""; }; - 6535A9911086F645009D5C90 /* French */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = French; path = fr.lproj/Catalog.strings; sourceTree = ""; }; - 6535A9921086F648009D5C90 /* Spanish */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Spanish; path = es.lproj/Catalog.strings; sourceTree = ""; }; - 6535A9931086F64C009D5C90 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Catalog.strings; sourceTree = ""; }; - 6535A9941086F64E009D5C90 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Catalog.strings; sourceTree = ""; }; - 6535A9951086F651009D5C90 /* Dutch */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Dutch; path = nl.lproj/Catalog.strings; sourceTree = ""; }; - 6535A9961086F65F009D5C90 /* no */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = no; path = no.lproj/Catalog.strings; sourceTree = ""; }; - 6535A9971086F680009D5C90 /* German */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = German; path = de.lproj/Preferences.strings; sourceTree = ""; }; - 6535A9981086F683009D5C90 /* French */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = French; path = fr.lproj/Preferences.strings; sourceTree = ""; }; - 6535A9991086F689009D5C90 /* Italian */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Italian; path = it.lproj/Preferences.strings; sourceTree = ""; }; - 6535A99A1086F68C009D5C90 /* Spanish */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Spanish; path = es.lproj/Preferences.strings; sourceTree = ""; }; - 6535A99B1086F68F009D5C90 /* Dutch */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Dutch; path = nl.lproj/Preferences.strings; sourceTree = ""; }; - 6535A99C1086F693009D5C90 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Preferences.strings; sourceTree = ""; }; - 6535A99D1086F695009D5C90 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Preferences.strings; sourceTree = ""; }; - 6535A99E1086F697009D5C90 /* no */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = no; path = no.lproj/Preferences.strings; sourceTree = ""; }; - 6535A99F1086F69E009D5C90 /* German */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = German; path = de.lproj/About.strings; sourceTree = ""; }; - 6535A9A01086F6A0009D5C90 /* French */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = French; path = fr.lproj/About.strings; sourceTree = ""; }; - 6535A9A11086F6A4009D5C90 /* Italian */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Italian; path = it.lproj/About.strings; sourceTree = ""; }; - 6535A9A21086F6A7009D5C90 /* Spanish */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Spanish; path = es.lproj/About.strings; sourceTree = ""; }; - 6535A9A31086F6AA009D5C90 /* Dutch */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Dutch; path = nl.lproj/About.strings; sourceTree = ""; }; - 6535A9A41086F6AE009D5C90 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/About.strings; sourceTree = ""; }; - 6535A9A51086F6B0009D5C90 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/About.strings; sourceTree = ""; }; - 6535A9A61086F6B3009D5C90 /* no */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = no; path = no.lproj/About.strings; sourceTree = ""; }; - 6552BC9E109D0DDE003B4892 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = ""; }; - 6552BC9F109D0DED003B4892 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Catalog.strings; sourceTree = ""; }; - 6552BCA0109D0DF6003B4892 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Preferences.strings; sourceTree = ""; }; - 6552BCA1109D0E00003B4892 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/About.strings; sourceTree = ""; }; + 6535A8DE1086EF23009D5C90 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/Localizable.strings; sourceTree = ""; }; + 6535A91C1086EF5F009D5C90 /* German */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = German; path = de.lproj/Localizable.strings; sourceTree = ""; }; + 6535A91D1086EF67009D5C90 /* French */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = French; path = fr.lproj/Localizable.strings; sourceTree = ""; }; + 6535A9341086F027009D5C90 /* Spanish */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = Spanish; path = es.lproj/Localizable.strings; sourceTree = ""; }; + 6535A9361086F0BE009D5C90 /* Dutch */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = Dutch; path = nl.lproj/Localizable.strings; sourceTree = ""; }; + 6535A9371086F0CA009D5C90 /* Italian */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = Italian; path = it.lproj/Localizable.strings; sourceTree = ""; }; + 6535A9381086F0E2009D5C90 /* no */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = no; path = no.lproj/Localizable.strings; sourceTree = ""; }; + 6535A9391086F0E5009D5C90 /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = ""; }; + 6535A93A1086F0E7009D5C90 /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = ""; }; + 6535A9871086F61F009D5C90 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = en.lproj/About.strings; sourceTree = ""; }; + 6535A99F1086F69E009D5C90 /* German */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = German; path = de.lproj/About.strings; sourceTree = ""; }; + 6535A9A01086F6A0009D5C90 /* French */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = French; path = fr.lproj/About.strings; sourceTree = ""; }; + 6535A9A11086F6A4009D5C90 /* Italian */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = Italian; path = it.lproj/About.strings; sourceTree = ""; }; + 6535A9A21086F6A7009D5C90 /* Spanish */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = Spanish; path = es.lproj/About.strings; sourceTree = ""; }; + 6535A9A31086F6AA009D5C90 /* Dutch */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = Dutch; path = nl.lproj/About.strings; sourceTree = ""; }; + 6535A9A41086F6AE009D5C90 /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/About.strings; sourceTree = ""; }; + 6535A9A51086F6B0009D5C90 /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/About.strings; sourceTree = ""; }; + 6535A9A61086F6B3009D5C90 /* no */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = no; path = no.lproj/About.strings; sourceTree = ""; }; + 6552BC9E109D0DDE003B4892 /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = ""; }; + 6552BCA1109D0E00003B4892 /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/About.strings; sourceTree = ""; }; 6615228314F43355006FDCB4 /* PathWildcardsData */ = {isa = PBXFileReference; explicitFileType = folder; name = PathWildcardsData; path = Tests/TestData/PathWildcardsData; sourceTree = ""; }; 66448D9614F42790000FA2E2 /* QSFoundationTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = QSFoundationTests.octest; sourceTree = BUILT_PRODUCTS_DIR; }; 66448D9714F42790000FA2E2 /* QSFoundationTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "QSFoundationTests-Info.plist"; sourceTree = ""; }; @@ -1430,24 +1406,22 @@ 92E946180D04CCEF0013377F /* QSModifierKeyEvents.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = QSModifierKeyEvents.m; sourceTree = ""; }; CD02BB4116A2BA5700DAFE50 /* QSGCD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QSGCD.h; sourceTree = ""; }; CD02BB4216A2BA5700DAFE50 /* QSGCD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QSGCD.m; sourceTree = ""; }; - CD17323E1683995700295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; - CD17323F1683995700295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSCatalog.strings"; sourceTree = ""; }; - CD1732401683995700295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; - CD1732411683995700295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; - CD1732421683995700295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; - CD1732431683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; - CD1732441683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = ""; }; - CD1732451683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Catalog.strings"; sourceTree = ""; }; - CD1732461683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Preferences.strings"; sourceTree = ""; }; - CD1732471683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/About.strings"; sourceTree = ""; }; - CD1732481683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; - CD1732491683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; - CD17324A1683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; - CD17324B1683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = ""; }; + CD17323E1683995700295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; + CD17323F1683995700295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSCatalog.strings"; sourceTree = ""; }; + CD1732401683995700295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; + CD1732411683995700295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; + CD1732421683995700295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; + CD1732431683995800295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; + CD1732441683995800295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = ""; }; + CD1732471683995800295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/About.strings"; sourceTree = ""; }; + CD1732481683995800295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; + CD1732491683995800295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; + CD17324A1683995800295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; + CD17324B1683995800295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = ""; }; CD17324C1683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = ""; }; CD17324D1683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/QSAction.name.strings"; sourceTree = ""; }; CD17324E1683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "nb-NO"; path = "nb-NO.lproj/QSAction.description.plist"; sourceTree = ""; }; - CD17324F1683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = ""; }; + CD17324F1683995800295879 /* nb-NO */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = ""; }; CD1732501683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "nb-NO"; path = "nb-NO.lproj/QSAction.description.strings"; sourceTree = ""; }; CD1732511683995800295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "nb-NO"; path = "nb-NO.lproj/QSAction.name.strings"; sourceTree = ""; }; CD1732521683995900295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "nb-NO"; path = "nb-NO.lproj/QSCatalogPreset.name.strings"; sourceTree = ""; }; @@ -1455,82 +1429,81 @@ CD1732541683995900295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "nb-NO"; path = "nb-NO.lproj/QSParser.name.strings"; sourceTree = ""; }; CD1732551683995900295879 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "nb-NO"; path = "nb-NO.lproj/QSAction.commandFormat.strings"; sourceTree = ""; }; CD2FFBCE16792D350028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFBCF16792D3B0028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFBD016792D490028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CD2FFBD116792D4E0028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSCatalog.strings; sourceTree = ""; }; - CD2FFBD216792D4F0028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSCatalog.strings; sourceTree = ""; }; - CD2FFBD316792D4F0028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSCatalog.strings; sourceTree = ""; }; - CD2FFBD416792D500028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSCatalog.strings; sourceTree = ""; }; - CD2FFBD616792D510028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSCatalog.strings; sourceTree = ""; }; - CD2FFBD716792D520028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSCatalog.strings; sourceTree = ""; }; - CD2FFBD816792D520028FA8A /* cy */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cy; path = cy.lproj/QSCatalog.strings; sourceTree = ""; }; - CD2FFBD916792D530028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSCatalog.strings"; sourceTree = ""; }; - CD2FFBDA16792D580028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CD2FFBDB16792D580028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CD2FFBDC16792D580028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CD2FFBDD16792D590028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CD2FFBDF16792D5A0028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CD2FFBE116792D5C0028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; - CD2FFBE216792D630028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CD2FFBE316792D640028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; - CD2FFBE416792D650028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CD2FFBE516792D660028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CD2FFBE716792D670028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CD2FFBE816792D670028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CD2FFBE916792D680028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CD2FFBEA16792D6C0028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CD2FFBEB16792D6D0028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; - CD2FFBEC16792D6E0028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CD2FFBED16792D6E0028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CD2FFBEF16792D6F0028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CD2FFBF016792D700028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CD2FFBF116792D700028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CD2FFBF216792D720028FA8A /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CD2FFBF316792D760028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CD2FFBF416792D760028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CD2FFBF516792D770028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CD2FFBF716792D780028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CD2FFBF816792D780028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CD2FFBF916792D790028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; - CD2FFBFA16792D7A0028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CD2FFBFB16792D810028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CD2FFBFC16792D820028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; - CD2FFBFD16792D830028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CD2FFBFF16792D840028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CD2FFC0016792D840028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CD2FFC0116792D850028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CD2FFC0216792D860028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CD2FFC0316792D8A0028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFC0416792D8B0028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = ""; }; - CD2FFC0616792D900028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Catalog.strings; sourceTree = ""; }; - CD2FFC0716792D9A0028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/About.strings; sourceTree = ""; }; - CD2FFC0916792DA10028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CD2FFC0A16792DA90028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; - CD2FFC0B16792DAA0028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CD2FFC0C16792DAA0028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CD2FFC0E16792DAB0028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CD2FFC0F16792DAC0028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CD2FFC1016792DAC0028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CD2FFC1116792DB00028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CD2FFC1216792DB10028FA8A /* cy */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cy; path = cy.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CD2FFC1316792DB20028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CD2FFC1416792DB20028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CD2FFC1616792DB30028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CD2FFC1716792DB30028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CD2FFC1816792DB40028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CD2FFC1916792DB90028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CD2FFC1A16792DBC0028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; - CD2FFC1B16792DBD0028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CD2FFC1C16792DBE0028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CD2FFC1D16792DBE0028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CD2FFC1E16792DBF0028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CD2FFC1F16792DBF0028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CD2FFC2116792DC40028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = ""; }; - CD2FFC2216792DC50028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFC2316792DC60028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFC2416792DC60028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFC2616792DC70028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFC2716792DC80028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFBCF16792D3B0028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFBD016792D490028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CD2FFBD116792D4E0028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSCatalog.strings; sourceTree = ""; }; + CD2FFBD216792D4F0028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSCatalog.strings; sourceTree = ""; }; + CD2FFBD316792D4F0028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSCatalog.strings; sourceTree = ""; }; + CD2FFBD416792D500028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSCatalog.strings; sourceTree = ""; }; + CD2FFBD616792D510028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSCatalog.strings; sourceTree = ""; }; + CD2FFBD716792D520028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSCatalog.strings; sourceTree = ""; }; + CD2FFBD816792D520028FA8A /* cy */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cy; path = cy.lproj/QSCatalog.strings; sourceTree = ""; }; + CD2FFBD916792D530028FA8A /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSCatalog.strings"; sourceTree = ""; }; + CD2FFBDA16792D580028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CD2FFBDB16792D580028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CD2FFBDC16792D580028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CD2FFBDD16792D590028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CD2FFBDF16792D5A0028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CD2FFBE116792D5C0028FA8A /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; + CD2FFBE216792D630028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CD2FFBE316792D640028FA8A /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; + CD2FFBE416792D650028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CD2FFBE516792D660028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CD2FFBE716792D670028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CD2FFBE816792D670028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CD2FFBE916792D680028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CD2FFBEA16792D6C0028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CD2FFBEB16792D6D0028FA8A /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; + CD2FFBEC16792D6E0028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CD2FFBED16792D6E0028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CD2FFBEF16792D6F0028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CD2FFBF016792D700028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CD2FFBF116792D700028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CD2FFBF216792D720028FA8A /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CD2FFBF316792D760028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CD2FFBF416792D760028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CD2FFBF516792D770028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CD2FFBF716792D780028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CD2FFBF816792D780028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CD2FFBF916792D790028FA8A /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; + CD2FFBFA16792D7A0028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CD2FFBFB16792D810028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CD2FFBFC16792D820028FA8A /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; + CD2FFBFD16792D830028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CD2FFBFF16792D840028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CD2FFC0016792D840028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CD2FFC0116792D850028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CD2FFC0216792D860028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CD2FFC0316792D8A0028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC0416792D8B0028FA8A /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = ""; }; + CD2FFC0716792D9A0028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/About.strings; sourceTree = ""; }; + CD2FFC0916792DA10028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CD2FFC0A16792DA90028FA8A /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; + CD2FFC0B16792DAA0028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CD2FFC0C16792DAA0028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CD2FFC0E16792DAB0028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CD2FFC0F16792DAC0028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CD2FFC1016792DAC0028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CD2FFC1116792DB00028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CD2FFC1216792DB10028FA8A /* cy */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cy; path = cy.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CD2FFC1316792DB20028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CD2FFC1416792DB20028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CD2FFC1616792DB30028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CD2FFC1716792DB30028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CD2FFC1816792DB40028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CD2FFC1916792DB90028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CD2FFC1A16792DBC0028FA8A /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; + CD2FFC1B16792DBD0028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CD2FFC1C16792DBE0028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CD2FFC1D16792DBE0028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CD2FFC1E16792DBF0028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CD2FFC1F16792DBF0028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CD2FFC2116792DC40028FA8A /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = ""; }; + CD2FFC2216792DC50028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC2316792DC60028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC2416792DC60028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC2616792DC70028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC2716792DC80028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = ""; }; CD2FFC2816792DCB0028FA8A /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = ""; }; CD2FFC2916792DCB0028FA8A /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = ""; }; CD2FFC2A16792DCC0028FA8A /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/Localizable.strings; sourceTree = ""; }; @@ -1542,12 +1515,12 @@ CD2FFC3116792DD00028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = ""; }; CD2FFC3216792DD00028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = ""; }; CD2FFC3316792DD10028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = ""; }; - CD2FFC3416792DD60028FA8A /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFC3516792DD60028FA8A /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFC3616792DD70028FA8A /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFC3816792DD80028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFC3916792DD80028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = ""; }; - CD2FFC3A16792DDA0028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC3416792DD60028FA8A /* nl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC3516792DD60028FA8A /* pl */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC3616792DD70028FA8A /* fi */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC3816792DD80028FA8A /* sv */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC3916792DD80028FA8A /* ja */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = ""; }; + CD2FFC3A16792DDA0028FA8A /* tr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = ""; }; CD2FFC3B16792DE20028FA8A /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/QSAction.description.strings; sourceTree = ""; }; CD2FFC3C16792DE30028FA8A /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ja; path = ja.lproj/QSAction.description.strings; sourceTree = ""; }; CD2FFC3D16792DE40028FA8A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = sv; path = sv.lproj/QSAction.description.strings; sourceTree = ""; }; @@ -1580,132 +1553,122 @@ CD2FFC5C16792E0A0028FA8A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "pt-BR"; path = "pt-BR.lproj/QSAction.commandFormat.strings"; sourceTree = ""; }; CD3646A416B682FE007439AE /* Button-docs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Button-docs.png"; sourceTree = ""; }; CD3646A516B682FE007439AE /* Button-docs@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Button-docs@2x.png"; sourceTree = ""; }; - CD3C6B2A16D6B31B00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSAdvancedPrefPane.strings"; sourceTree = ""; }; - CD3C6B2B16D6B31B00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; - CD3C6B2C16D6B31B00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSCatalog.strings"; sourceTree = ""; }; - CD3C6B2D16D6B31B00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; - CD3C6B2E16D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; - CD3C6B2F16D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; - CD3C6B3016D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; - CD3C6B3116D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = ""; }; - CD3C6B3216D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Catalog.strings"; sourceTree = ""; }; - CD3C6B3316D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Preferences.strings"; sourceTree = ""; }; - CD3C6B3416D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/About.strings"; sourceTree = ""; }; - CD3C6B3516D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; - CD3C6B3616D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; - CD3C6B3716D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; - CD3C6B3816D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = ""; }; + CD3C6B2A16D6B31B00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSAdvancedPrefPane.strings"; sourceTree = ""; }; + CD3C6B2B16D6B31B00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; + CD3C6B2C16D6B31B00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSCatalog.strings"; sourceTree = ""; }; + CD3C6B2D16D6B31B00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; + CD3C6B2E16D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; + CD3C6B2F16D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; + CD3C6B3016D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; + CD3C6B3116D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = ""; }; + CD3C6B3416D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/About.strings"; sourceTree = ""; }; + CD3C6B3516D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; + CD3C6B3616D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; + CD3C6B3716D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; + CD3C6B3816D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = ""; }; CD3C6B3916D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = ""; }; CD3C6B3A16D6B31C00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/QSAction.name.strings"; sourceTree = ""; }; CD3C6B3B16D6B31D00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "zh-Hans"; path = "zh-Hans.lproj/QSAction.description.plist"; sourceTree = ""; }; - CD3C6B3C16D6B31D00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = ""; }; + CD3C6B3C16D6B31D00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = ""; }; CD3C6B3D16D6B31D00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "zh-Hans"; path = "zh-Hans.lproj/QSAction.description.strings"; sourceTree = ""; }; CD3C6B3E16D6B31D00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "zh-Hans"; path = "zh-Hans.lproj/QSAction.name.strings"; sourceTree = ""; }; CD3C6B3F16D6B31D00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "zh-Hans"; path = "zh-Hans.lproj/QSCatalogPreset.name.strings"; sourceTree = ""; }; CD3C6B4016D6B31D00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "zh-Hans"; path = "zh-Hans.lproj/QSObjectSource.name.strings"; sourceTree = ""; }; CD3C6B4116D6B31D00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "zh-Hans"; path = "zh-Hans.lproj/QSParser.name.strings"; sourceTree = ""; }; CD3C6B4216D6B31D00AE7BE8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "zh-Hans"; path = "zh-Hans.lproj/QSAction.commandFormat.strings"; sourceTree = ""; }; - CD3C6B4316D6B32600AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSAdvancedPrefPane.strings"; sourceTree = ""; }; - CD3C6B4416D6B32600AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; - CD3C6B4516D6B32600AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSCatalog.strings"; sourceTree = ""; }; - CD3C6B4616D6B32600AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; - CD3C6B4716D6B32600AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; - CD3C6B4816D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; - CD3C6B4916D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; - CD3C6B4A16D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = ""; }; - CD3C6B4B16D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Catalog.strings"; sourceTree = ""; }; - CD3C6B4C16D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Preferences.strings"; sourceTree = ""; }; - CD3C6B4D16D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/About.strings"; sourceTree = ""; }; - CD3C6B4E16D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; - CD3C6B4F16D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; - CD3C6B5016D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; - CD3C6B5116D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = ""; }; + CD3C6B4316D6B32600AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSAdvancedPrefPane.strings"; sourceTree = ""; }; + CD3C6B4416D6B32600AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; + CD3C6B4516D6B32600AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSCatalog.strings"; sourceTree = ""; }; + CD3C6B4616D6B32600AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; + CD3C6B4716D6B32600AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; + CD3C6B4816D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; + CD3C6B4916D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; + CD3C6B4A16D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = ""; }; + CD3C6B4D16D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/About.strings"; sourceTree = ""; }; + CD3C6B4E16D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; + CD3C6B4F16D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; + CD3C6B5016D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; + CD3C6B5116D6B32700AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = ""; }; CD3C6B5216D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = ""; }; CD3C6B5316D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/QSAction.name.strings"; sourceTree = ""; }; CD3C6B5416D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "zh-Hant"; path = "zh-Hant.lproj/QSAction.description.plist"; sourceTree = ""; }; - CD3C6B5516D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = ""; }; + CD3C6B5516D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = ""; }; CD3C6B5616D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "zh-Hant"; path = "zh-Hant.lproj/QSAction.description.strings"; sourceTree = ""; }; CD3C6B5716D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "zh-Hant"; path = "zh-Hant.lproj/QSAction.name.strings"; sourceTree = ""; }; CD3C6B5816D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "zh-Hant"; path = "zh-Hant.lproj/QSCatalogPreset.name.strings"; sourceTree = ""; }; CD3C6B5916D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "zh-Hant"; path = "zh-Hant.lproj/QSObjectSource.name.strings"; sourceTree = ""; }; CD3C6B5A16D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "zh-Hant"; path = "zh-Hant.lproj/QSParser.name.strings"; sourceTree = ""; }; CD3C6B5B16D6B32800AE7BE8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "zh-Hant"; path = "zh-Hant.lproj/QSAction.commandFormat.strings"; sourceTree = ""; }; - CD4B1B7617C258AF00F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; - CD4B1B7717C258AF00F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CD4B1B7817C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSCatalog.strings; sourceTree = ""; }; - CD4B1B7917C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CD4B1B7A17C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CD4B1B7B17C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CD4B1B7C17C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CD4B1B7D17C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = ""; }; - CD4B1B7E17C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Catalog.strings; sourceTree = ""; }; - CD4B1B7F17C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Preferences.strings; sourceTree = ""; }; - CD4B1B8017C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/About.strings; sourceTree = ""; }; - CD4B1B8117C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CD4B1B8217C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CD4B1B8317C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CD4B1B8417C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = ""; }; + CD4B1B7617C258AF00F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; + CD4B1B7717C258AF00F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CD4B1B7817C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSCatalog.strings; sourceTree = ""; }; + CD4B1B7917C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CD4B1B7A17C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CD4B1B7B17C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CD4B1B7C17C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CD4B1B7D17C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = ""; }; + CD4B1B8017C258B000F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/About.strings; sourceTree = ""; }; + CD4B1B8117C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CD4B1B8217C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CD4B1B8317C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CD4B1B8417C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = ""; }; CD4B1B8517C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = ""; }; CD4B1B8617C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/QSAction.name.strings; sourceTree = ""; }; CD4B1B8717C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = ru; path = ru.lproj/QSAction.description.plist; sourceTree = ""; }; - CD4B1B8817C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = ""; }; + CD4B1B8817C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = ""; }; CD4B1B8917C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ru; path = ru.lproj/QSAction.description.strings; sourceTree = ""; }; CD4B1B8A17C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ru; path = ru.lproj/QSAction.name.strings; sourceTree = ""; }; CD4B1B8B17C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ru; path = ru.lproj/QSCatalogPreset.name.strings; sourceTree = ""; }; CD4B1B8C17C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ru; path = ru.lproj/QSObjectSource.name.strings; sourceTree = ""; }; CD4B1B8D17C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ru; path = ru.lproj/QSParser.name.strings; sourceTree = ""; }; CD4B1B8E17C258B100F2C5A7 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = ru; path = ru.lproj/QSAction.commandFormat.strings; sourceTree = ""; }; - CD4B1B8F17C258B600F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; - CD4B1B9017C258B700F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CD4B1B9117C258B700F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSCatalog.strings; sourceTree = ""; }; - CD4B1B9217C258B700F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CD4B1B9317C258B700F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CD4B1B9417C258B700F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CD4B1B9517C258B700F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CD4B1B9617C258B700F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = ""; }; - CD4B1B9717C258B700F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Catalog.strings; sourceTree = ""; }; - CD4B1B9817C258B800F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Preferences.strings; sourceTree = ""; }; - CD4B1B9917C258B800F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/About.strings; sourceTree = ""; }; - CD4B1B9A17C258B800F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CD4B1B9B17C258B800F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CD4B1B9C17C258B800F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CD4B1B9D17C258B800F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = ""; }; + CD4B1B8F17C258B600F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; + CD4B1B9017C258B700F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CD4B1B9117C258B700F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSCatalog.strings; sourceTree = ""; }; + CD4B1B9217C258B700F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CD4B1B9317C258B700F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CD4B1B9417C258B700F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CD4B1B9517C258B700F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CD4B1B9617C258B700F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = ""; }; + CD4B1B9917C258B800F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/About.strings; sourceTree = ""; }; + CD4B1B9A17C258B800F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CD4B1B9B17C258B800F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CD4B1B9C17C258B800F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CD4B1B9D17C258B800F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = ""; }; CD4B1B9E17C258B800F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = ""; }; CD4B1B9F17C258B800F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/QSAction.name.strings; sourceTree = ""; }; CD4B1BA017C258B800F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = id; path = id.lproj/QSAction.description.plist; sourceTree = ""; }; - CD4B1BA117C258B900F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = ""; }; + CD4B1BA117C258B900F2C5A7 /* id */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = ""; }; CD4B1BA217C258B900F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = id; path = id.lproj/QSAction.description.strings; sourceTree = ""; }; CD4B1BA317C258B900F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = id; path = id.lproj/QSAction.name.strings; sourceTree = ""; }; CD4B1BA417C258B900F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = id; path = id.lproj/QSCatalogPreset.name.strings; sourceTree = ""; }; CD4B1BA517C258B900F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = id; path = id.lproj/QSObjectSource.name.strings; sourceTree = ""; }; CD4B1BA617C258B900F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = id; path = id.lproj/QSParser.name.strings; sourceTree = ""; }; CD4B1BA717C258B900F2C5A7 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = id; path = id.lproj/QSAction.commandFormat.strings; sourceTree = ""; }; - CD4B1BA817C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; - CD4B1BA917C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CD4B1BAA17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSCatalog.strings; sourceTree = ""; }; - CD4B1BAB17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CD4B1BAC17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CD4B1BAD17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CD4B1BAE17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CD4B1BAF17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = ""; }; - CD4B1BB017C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Catalog.strings; sourceTree = ""; }; - CD4B1BB117C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Preferences.strings; sourceTree = ""; }; - CD4B1BB217C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/About.strings; sourceTree = ""; }; - CD4B1BB317C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CD4B1BB417C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CD4B1BB517C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CD4B1BB617C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = ""; }; + CD4B1BA817C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; + CD4B1BA917C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CD4B1BAA17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSCatalog.strings; sourceTree = ""; }; + CD4B1BAB17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CD4B1BAC17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CD4B1BAD17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CD4B1BAE17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CD4B1BAF17C259BE00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = ""; }; + CD4B1BB217C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/About.strings; sourceTree = ""; }; + CD4B1BB317C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CD4B1BB417C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CD4B1BB517C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CD4B1BB617C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = ""; }; CD4B1BB717C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = ""; }; CD4B1BB817C259BF00F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/QSAction.name.strings; sourceTree = ""; }; CD4B1BB917C259C000F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = th; path = th.lproj/QSAction.description.plist; sourceTree = ""; }; - CD4B1BBA17C259C000F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = ""; }; + CD4B1BBA17C259C000F2C5A7 /* th */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = ""; }; CD4B1BBB17C259C000F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = th; path = th.lproj/QSAction.description.strings; sourceTree = ""; }; CD4B1BBC17C259C000F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = th; path = th.lproj/QSAction.name.strings; sourceTree = ""; }; CD4B1BBD17C259C000F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = th; path = th.lproj/QSCatalogPreset.name.strings; sourceTree = ""; }; CD4B1BBE17C259C000F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = th; path = th.lproj/QSObjectSource.name.strings; sourceTree = ""; }; CD4B1BBF17C259C000F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = th; path = th.lproj/QSParser.name.strings; sourceTree = ""; }; CD4B1BC017C259C100F2C5A7 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = th; path = th.lproj/QSAction.commandFormat.strings; sourceTree = ""; }; - CD4B1BC117C25BC000F2C5A7 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/About.strings"; sourceTree = ""; }; + CD4B1BC117C25BC000F2C5A7 /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/About.strings"; sourceTree = ""; }; CD4FA6DF157A13D600E549BD /* QSHotKeyEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QSHotKeyEvent.h; sourceTree = ""; }; CD4FA6E1157A13DE00E549BD /* QSHotKeyEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QSHotKeyEvent.m; sourceTree = ""; }; CD53FEB2151A0ACF006B734B /* PluginReporterText.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = PluginReporterText.html; sourceTree = ""; }; @@ -1737,124 +1700,116 @@ CDE6C623157E39AE006E66BD /* QSFoundation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QSFoundation.h; sourceTree = ""; }; CDE8ADB915824E3E0099CC83 /* NDKeyboardLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NDKeyboardLayout.h; sourceTree = ""; }; CDE8ADBA15824E3E0099CC83 /* NDKeyboardLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NDKeyboardLayout.m; sourceTree = ""; }; - CDEA57F316C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSAdvancedPrefPane.strings"; sourceTree = ""; }; - CDEA57F416C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; - CDEA57F516C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSCatalog.strings"; sourceTree = ""; }; - CDEA57F616C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; - CDEA57F716C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; - CDEA57F816C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; - CDEA57F916C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; - CDEA57FA16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/Localizable.strings"; sourceTree = ""; }; - CDEA57FB16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/Catalog.strings"; sourceTree = ""; }; - CDEA57FC16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/Preferences.strings"; sourceTree = ""; }; - CDEA57FD16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/About.strings"; sourceTree = ""; }; - CDEA57FE16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; - CDEA57FF16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; - CDEA580016C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; - CDEA580116C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/Localizable.strings"; sourceTree = ""; }; + CDEA57F316C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSAdvancedPrefPane.strings"; sourceTree = ""; }; + CDEA57F416C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; + CDEA57F516C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSCatalog.strings"; sourceTree = ""; }; + CDEA57F616C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; + CDEA57F716C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; + CDEA57F816C551CB00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; + CDEA57F916C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; + CDEA57FA16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/Localizable.strings"; sourceTree = ""; }; + CDEA57FD16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/About.strings"; sourceTree = ""; }; + CDEA57FE16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; + CDEA57FF16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; + CDEA580016C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; + CDEA580116C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/Localizable.strings"; sourceTree = ""; }; CDEA580216C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/Localizable.strings"; sourceTree = ""; }; CDEA580316C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/QSAction.name.strings"; sourceTree = ""; }; CDEA580416C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "ca-ES"; path = "ca-ES.lproj/QSAction.description.plist"; sourceTree = ""; }; - CDEA580516C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/Localizable.strings"; sourceTree = ""; }; + CDEA580516C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "ca-ES"; path = "ca-ES.lproj/Localizable.strings"; sourceTree = ""; }; CDEA580616C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "ca-ES"; path = "ca-ES.lproj/QSAction.description.strings"; sourceTree = ""; }; CDEA580716C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "ca-ES"; path = "ca-ES.lproj/QSAction.name.strings"; sourceTree = ""; }; CDEA580816C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "ca-ES"; path = "ca-ES.lproj/QSCatalogPreset.name.strings"; sourceTree = ""; }; CDEA580916C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "ca-ES"; path = "ca-ES.lproj/QSObjectSource.name.strings"; sourceTree = ""; }; CDEA580A16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "ca-ES"; path = "ca-ES.lproj/QSParser.name.strings"; sourceTree = ""; }; CDEA580B16C551CC00B3897A /* ca-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "ca-ES"; path = "ca-ES.lproj/QSAction.commandFormat.strings"; sourceTree = ""; }; - CDEA580C16C551D600B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSAdvancedPrefPane.strings"; sourceTree = ""; }; - CDEA580D16C551D600B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; - CDEA580E16C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSCatalog.strings"; sourceTree = ""; }; - CDEA580F16C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; - CDEA581016C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; - CDEA581116C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; - CDEA581216C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; - CDEA581316C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = ""; }; - CDEA581416C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Catalog.strings"; sourceTree = ""; }; - CDEA581516C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Preferences.strings"; sourceTree = ""; }; - CDEA581616C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/About.strings"; sourceTree = ""; }; - CDEA581716C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; - CDEA581816C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; - CDEA581916C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; - CDEA581A16C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = ""; }; + CDEA580C16C551D600B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSAdvancedPrefPane.strings"; sourceTree = ""; }; + CDEA580D16C551D600B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; + CDEA580E16C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSCatalog.strings"; sourceTree = ""; }; + CDEA580F16C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; + CDEA581016C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; + CDEA581116C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; + CDEA581216C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; + CDEA581316C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = ""; }; + CDEA581616C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/About.strings"; sourceTree = ""; }; + CDEA581716C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; + CDEA581816C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; + CDEA581916C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; + CDEA581A16C551D700B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = ""; }; CDEA581B16C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = ""; }; CDEA581C16C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/QSAction.name.strings"; sourceTree = ""; }; CDEA581D16C551D700B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "es-MX"; path = "es-MX.lproj/QSAction.description.plist"; sourceTree = ""; }; - CDEA581E16C551D800B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = ""; }; + CDEA581E16C551D800B3897A /* es-MX */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = ""; }; CDEA581F16C551D800B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "es-MX"; path = "es-MX.lproj/QSAction.description.strings"; sourceTree = ""; }; CDEA582016C551D800B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "es-MX"; path = "es-MX.lproj/QSAction.name.strings"; sourceTree = ""; }; CDEA582116C551D800B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "es-MX"; path = "es-MX.lproj/QSCatalogPreset.name.strings"; sourceTree = ""; }; CDEA582216C551D800B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "es-MX"; path = "es-MX.lproj/QSObjectSource.name.strings"; sourceTree = ""; }; CDEA582316C551D800B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "es-MX"; path = "es-MX.lproj/QSParser.name.strings"; sourceTree = ""; }; CDEA582416C551D800B3897A /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "es-MX"; path = "es-MX.lproj/QSAction.commandFormat.strings"; sourceTree = ""; }; - CDEA587016C557CB00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; - CDEA587116C557CB00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CDEA587216C557CB00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSCatalog.strings; sourceTree = ""; }; - CDEA587316C557CB00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CDEA587416C557CB00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CDEA587516C557CB00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CDEA587616C557CB00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CDEA587716C557CB00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = ""; }; - CDEA587816C557CB00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Catalog.strings; sourceTree = ""; }; - CDEA587916C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Preferences.strings; sourceTree = ""; }; - CDEA587A16C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/About.strings; sourceTree = ""; }; - CDEA587B16C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CDEA587C16C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CDEA587D16C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CDEA587E16C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = ""; }; + CDEA587016C557CB00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSAdvancedPrefPane.strings; sourceTree = ""; }; + CDEA587116C557CB00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CDEA587216C557CB00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSCatalog.strings; sourceTree = ""; }; + CDEA587316C557CB00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CDEA587416C557CB00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CDEA587516C557CB00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CDEA587616C557CB00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CDEA587716C557CB00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = ""; }; + CDEA587A16C557CC00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/About.strings; sourceTree = ""; }; + CDEA587B16C557CC00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CDEA587C16C557CC00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CDEA587D16C557CC00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CDEA587E16C557CC00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = ""; }; CDEA587F16C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = ""; }; CDEA588016C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/QSAction.name.strings; sourceTree = ""; }; CDEA588116C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = ko; path = ko.lproj/QSAction.description.plist; sourceTree = ""; }; - CDEA588216C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = ""; }; + CDEA588216C557CC00B3897A /* ko */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = ""; }; CDEA588316C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ko; path = ko.lproj/QSAction.description.strings; sourceTree = ""; }; CDEA588416C557CC00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ko; path = ko.lproj/QSAction.name.strings; sourceTree = ""; }; CDEA588516C557CD00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ko; path = ko.lproj/QSCatalogPreset.name.strings; sourceTree = ""; }; CDEA588616C557CD00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ko; path = ko.lproj/QSObjectSource.name.strings; sourceTree = ""; }; CDEA588716C557CD00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ko; path = ko.lproj/QSParser.name.strings; sourceTree = ""; }; CDEA588816C557CD00B3897A /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = ko; path = ko.lproj/QSAction.commandFormat.strings; sourceTree = ""; }; - CDFAC87C1652E220006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CDFAC87D1652E220006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSCatalog.strings; sourceTree = ""; }; - CDFAC87E1652E220006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CDFAC87F1652E220006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CDFAC8801652E220006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CDFAC8811652E220006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CDFAC8821652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC8831652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Catalog.strings; sourceTree = ""; }; - CDFAC8841652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Preferences.strings; sourceTree = ""; }; - CDFAC8851652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/About.strings; sourceTree = ""; }; - CDFAC8861652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CDFAC8871652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CDFAC8881652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CDFAC8891652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC87C1652E220006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CDFAC87D1652E220006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSCatalog.strings; sourceTree = ""; }; + CDFAC87E1652E220006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CDFAC87F1652E220006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CDFAC8801652E220006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CDFAC8811652E220006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CDFAC8821652E221006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC8851652E221006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/About.strings; sourceTree = ""; }; + CDFAC8861652E221006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CDFAC8871652E221006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CDFAC8881652E221006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CDFAC8891652E221006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = ""; }; CDFAC88A1652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = ""; }; CDFAC88B1652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/QSAction.name.strings; sourceTree = ""; }; CDFAC88C1652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = cs; path = cs.lproj/QSAction.description.plist; sourceTree = ""; }; - CDFAC88D1652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC88D1652E221006A0C5B /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = ""; }; CDFAC88E1652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = cs; path = cs.lproj/QSAction.description.strings; sourceTree = ""; }; CDFAC88F1652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = cs; path = cs.lproj/QSAction.name.strings; sourceTree = ""; }; CDFAC8901652E221006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = cs; path = cs.lproj/QSCatalogPreset.name.strings; sourceTree = ""; }; CDFAC8911652E222006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = cs; path = cs.lproj/QSObjectSource.name.strings; sourceTree = ""; }; CDFAC8921652E222006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = cs; path = cs.lproj/QSParser.name.strings; sourceTree = ""; }; CDFAC8931652E222006A0C5B /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = cs; path = cs.lproj/QSAction.commandFormat.strings; sourceTree = ""; }; - CDFAC8941652E247006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CDFAC8951652E256006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSCatalog.strings; sourceTree = ""; }; - CDFAC8961652E25E006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CDFAC8971652E261006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CDFAC8981652E266006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CDFAC8991652E268006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CDFAC89A1652E271006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CDFAC89B1652E273006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CDFAC89C1652E275006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CDFAC89D1652E2FF006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC89E1652E386006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/Localizable.strings"; sourceTree = ""; }; - CDFAC89F1652E386006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/About.strings"; sourceTree = ""; }; + CDFAC8941652E247006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CDFAC8951652E256006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSCatalog.strings; sourceTree = ""; }; + CDFAC8961652E25E006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CDFAC8971652E261006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CDFAC8981652E266006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CDFAC8991652E268006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CDFAC89A1652E271006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CDFAC89B1652E273006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CDFAC89C1652E275006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CDFAC89D1652E2FF006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC89E1652E386006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/Localizable.strings"; sourceTree = ""; }; + CDFAC89F1652E386006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/About.strings"; sourceTree = ""; }; CDFAC8A01652E387006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "es-ES"; path = "es-ES.lproj/QSCatalogPreset.name.strings"; sourceTree = ""; }; CDFAC8A11652E387006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "es-ES"; path = "es-ES.lproj/QSParser.name.strings"; sourceTree = ""; }; CDFAC8A21652E387006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "es-ES"; path = "es-ES.lproj/QSAction.commandFormat.strings"; sourceTree = ""; }; - CDFAC8B01652E4E0006A0C5B /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC8B11652E4E4006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC8B21652E4F4006A0C5B /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC8B31652E4F8006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC8B01652E4E0006A0C5B /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC8B11652E4E4006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC8B21652E4F4006A0C5B /* fr */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC8B31652E4F8006A0C5B /* de */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = ""; }; CDFAC8B41652E51C006A0C5B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = de; path = de.lproj/QSAction.commandFormat.strings; sourceTree = ""; }; CDFAC8B51652E52E006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = es; path = es.lproj/QSAction.commandFormat.strings; sourceTree = ""; }; CDFAC8B61652E53B006A0C5B /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = nl; path = nl.lproj/QSAction.commandFormat.strings; sourceTree = ""; }; @@ -1881,58 +1836,54 @@ CDFAC8D11652E618006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = es; path = es.lproj/QSAction.description.strings; sourceTree = ""; }; CDFAC8D21652E619006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = et; path = et.lproj/QSAction.description.strings; sourceTree = ""; }; CDFAC8D31652E619006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "es-ES"; path = "es-ES.lproj/QSAction.description.strings"; sourceTree = ""; }; - CDFAC8D51652E628006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CDFAC8D61652E62A006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CDFAC8D71652E62B006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; - CDFAC8D81652E62C006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; - CDFAC8D91652E634006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSCatalog.strings; sourceTree = ""; }; - CDFAC8DA1652E634006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSCatalog.strings; sourceTree = ""; }; - CDFAC8DB1652E636006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSCatalog.strings; sourceTree = ""; }; - CDFAC8DC1652E636006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSCatalog.strings"; sourceTree = ""; }; - CDFAC8DD1652E63B006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CDFAC8DE1652E63E006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CDFAC8DF1652E63F006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; - CDFAC8E01652E640006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; - CDFAC8E21652E646006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CDFAC8E31652E647006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; - CDFAC8E41652E648006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; - CDFAC8E51652E670006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CDFAC8E61652E671006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CDFAC8E71652E673006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; - CDFAC8E81652E673006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; - CDFAC8E91652E678006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CDFAC8EA1652E678006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CDFAC8EB1652E679006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; - CDFAC8EC1652E67A006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; - CDFAC8ED1652E681006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/Catalog.strings"; sourceTree = ""; }; - CDFAC8EE1652E681006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/Catalog.strings; sourceTree = ""; }; - CDFAC8EF1652E691006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/About.strings; sourceTree = ""; }; - CDFAC8F01652E697006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/Preferences.strings; sourceTree = ""; }; - CDFAC8F11652E697006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/Preferences.strings"; sourceTree = ""; }; - CDFAC8F31652E69E006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CDFAC8F41652E69E006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CDFAC8F51652E6A0006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; - CDFAC8F61652E6A0006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; - CDFAC8F71652E6A3006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; - CDFAC8F81652E6A4006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CDFAC8F91652E6A4006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CDFAC8FA1652E6A7006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; - CDFAC8FB1652E6AC006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CDFAC8FC1652E6AC006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CDFAC8FD1652E6AD006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; - CDFAC8FE1652E6AD006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; - CDFAC9001652E6B2006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC9011652E6B2006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC9021652E6B5006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC9031652E6B6006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/Localizable.strings"; sourceTree = ""; }; + CDFAC8D51652E628006A0C5B /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CDFAC8D61652E62A006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CDFAC8D71652E62B006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSActionsPrefPane.strings"; sourceTree = ""; }; + CDFAC8D81652E62C006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSActionsPrefPane.strings; sourceTree = ""; }; + CDFAC8D91652E634006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSCatalog.strings; sourceTree = ""; }; + CDFAC8DA1652E634006A0C5B /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSCatalog.strings; sourceTree = ""; }; + CDFAC8DB1652E636006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSCatalog.strings; sourceTree = ""; }; + CDFAC8DC1652E636006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSCatalog.strings"; sourceTree = ""; }; + CDFAC8DD1652E63B006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CDFAC8DE1652E63E006A0C5B /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CDFAC8DF1652E63F006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSHelpersPrefPane.strings; sourceTree = ""; }; + CDFAC8E01652E640006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSHelpersPrefPane.strings"; sourceTree = ""; }; + CDFAC8E21652E646006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CDFAC8E31652E647006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSPlugInsPrefPane.strings; sourceTree = ""; }; + CDFAC8E41652E648006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSPlugInsPrefPane.strings"; sourceTree = ""; }; + CDFAC8E51652E670006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CDFAC8E61652E671006A0C5B /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CDFAC8E71652E673006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSTriggersPrefPane.strings; sourceTree = ""; }; + CDFAC8E81652E673006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSTriggersPrefPane.strings"; sourceTree = ""; }; + CDFAC8E91652E678006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CDFAC8EA1652E678006A0C5B /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CDFAC8EB1652E679006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSMainMenuPrefPane.strings; sourceTree = ""; }; + CDFAC8EC1652E67A006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSMainMenuPrefPane.strings"; sourceTree = ""; }; + CDFAC8EF1652E691006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/About.strings; sourceTree = ""; }; + CDFAC8F31652E69E006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CDFAC8F41652E69E006A0C5B /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CDFAC8F51652E6A0006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSApplicationPrefPane.strings; sourceTree = ""; }; + CDFAC8F61652E6A0006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSApplicationPrefPane.strings"; sourceTree = ""; }; + CDFAC8F71652E6A3006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSAppearancePrefPane.strings"; sourceTree = ""; }; + CDFAC8F81652E6A4006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CDFAC8F91652E6A4006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CDFAC8FA1652E6A7006A0C5B /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSAppearancePrefPane.strings; sourceTree = ""; }; + CDFAC8FB1652E6AC006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CDFAC8FC1652E6AC006A0C5B /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CDFAC8FD1652E6AD006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/QSSearchPrefPane.strings; sourceTree = ""; }; + CDFAC8FE1652E6AD006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/QSSearchPrefPane.strings"; sourceTree = ""; }; + CDFAC9001652E6B2006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC9011652E6B2006A0C5B /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC9021652E6B5006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC9031652E6B6006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/Localizable.strings"; sourceTree = ""; }; CDFAC9041652E6F0006A0C5B /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "pt-BR"; path = "pt-BR.lproj/QSParser.name.strings"; sourceTree = ""; }; CDFAC9051652E724006A0C5B /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "pt-BR"; path = "pt-BR.lproj/QSAction.description.strings"; sourceTree = ""; }; - CDFAC90D1652E82C006A0C5B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC90E1652E82D006A0C5B /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC90F1652E82D006A0C5B /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/Localizable.strings"; sourceTree = ""; }; - CDFAC9101652E830006A0C5B /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = ""; }; - CDFAC9111652E832006A0C5B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = ""; }; - CDFAC91D1652F3C1006A0C5B /* cy */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cy; path = cy.lproj/About.strings; sourceTree = ""; }; + CDFAC90D1652E82C006A0C5B /* es */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC90E1652E82D006A0C5B /* et */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC90F1652E82D006A0C5B /* es-ES */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/Localizable.strings"; sourceTree = ""; }; + CDFAC9101652E830006A0C5B /* pt-BR */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = ""; }; + CDFAC9111652E832006A0C5B /* it */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = ""; }; + CDFAC91D1652F3C1006A0C5B /* cy */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cy; path = cy.lproj/About.strings; sourceTree = ""; }; D413172C15DEE5D90021479B /* LaunchAtLoginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LaunchAtLoginController.h; sourceTree = ""; }; D413172D15DEE5D90021479B /* LaunchAtLoginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LaunchAtLoginController.m; sourceTree = ""; }; D42A065616E1381F00BFD9C8 /* TestQSObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TestQSObject.h; path = "Tests/Tests-QSCore/TestQSObject.h"; sourceTree = ""; }; @@ -2709,8 +2660,6 @@ 4D62E3161476919300362E9A /* QSTriggersPrefPane.strings */, 4D89177714758620009C1C14 /* QSMainMenuPrefPane.strings */, 6535A9191086EF4D009D5C90 /* Localizable.strings */, - 6535A98B1086F627009D5C90 /* Catalog.strings */, - 6535A98D1086F627009D5C90 /* Preferences.strings */, 6535A9891086F627009D5C90 /* About.strings */, 4D89177D14758DC6009C1C14 /* QSApplicationPrefPane.strings */, 4D891785147595A5009C1C14 /* QSAppearancePrefPane.strings */, @@ -4101,7 +4050,7 @@ isa = PBXProject; attributes = { BuildIndependentTargetsInParallel = YES; - LastUpgradeCheck = 0420; + LastUpgradeCheck = 0460; }; buildConfigurationList = 7F6B3E7C085CE68E000735A8 /* Build configuration list for PBXProject "Quicksilver" */; compatibilityVersion = "Xcode 3.2"; @@ -4360,8 +4309,6 @@ E102F9CD06625D7400843027 /* QuitConfirm.xib in Resources */, E102F9CE06625D7400843027 /* ResultWindow.xib in Resources */, 6535A91A1086EF4D009D5C90 /* Localizable.strings in Resources */, - 6535A98C1086F627009D5C90 /* Catalog.strings in Resources */, - 6535A98E1086F627009D5C90 /* Preferences.strings in Resources */, 6535A98A1086F627009D5C90 /* About.strings in Resources */, 4D89177514758620009C1C14 /* QSMainMenuPrefPane.strings in Resources */, 4D89177B14758DC6009C1C14 /* QSApplicationPrefPane.strings in Resources */, @@ -5650,67 +5597,6 @@ name = About.strings; sourceTree = ""; }; - 6535A98B1086F627009D5C90 /* Catalog.strings */ = { - isa = PBXVariantGroup; - children = ( - 6535A9831086F5F9009D5C90 /* English */, - 6535A98F1086F63E009D5C90 /* German */, - 6535A9911086F645009D5C90 /* French */, - 6535A9901086F642009D5C90 /* Italian */, - 6535A9921086F648009D5C90 /* Spanish */, - 6535A9951086F651009D5C90 /* Dutch */, - 6535A9931086F64C009D5C90 /* pl */, - 6535A9941086F64E009D5C90 /* fi */, - 6535A9961086F65F009D5C90 /* no */, - 6552BC9F109D0DED003B4892 /* sv */, - 1011467F14BEA6DA000E7177 /* ja */, - CDFAC8831652E221006A0C5B /* cs */, - CDFAC8ED1652E681006A0C5B /* es-ES */, - CDFAC8EE1652E681006A0C5B /* et */, - CD2FFC0616792D900028FA8A /* tr */, - CD1732451683995800295879 /* nb-NO */, - CDEA57FB16C551CC00B3897A /* ca-ES */, - CDEA581416C551D700B3897A /* es-MX */, - CDEA587816C557CB00B3897A /* ko */, - CD3C6B3216D6B31C00AE7BE8 /* zh-Hans */, - CD3C6B4B16D6B32700AE7BE8 /* zh-Hant */, - CD4B1B7E17C258B000F2C5A7 /* ru */, - CD4B1B9717C258B700F2C5A7 /* id */, - CD4B1BB017C259BE00F2C5A7 /* th */, - ); - name = Catalog.strings; - sourceTree = ""; - }; - 6535A98D1086F627009D5C90 /* Preferences.strings */ = { - isa = PBXVariantGroup; - children = ( - 6535A9851086F600009D5C90 /* English */, - 6535A9971086F680009D5C90 /* German */, - 6535A9981086F683009D5C90 /* French */, - 6535A9991086F689009D5C90 /* Italian */, - 6535A99A1086F68C009D5C90 /* Spanish */, - 6535A99B1086F68F009D5C90 /* Dutch */, - 6535A99C1086F693009D5C90 /* pl */, - 6535A99D1086F695009D5C90 /* fi */, - 6535A99E1086F697009D5C90 /* no */, - 6552BCA0109D0DF6003B4892 /* sv */, - 1011468014BEA6EB000E7177 /* ja */, - CDFAC8841652E221006A0C5B /* cs */, - CDFAC8F01652E697006A0C5B /* et */, - CDFAC8F11652E697006A0C5B /* es-ES */, - CD1732461683995800295879 /* nb-NO */, - CDEA57FC16C551CC00B3897A /* ca-ES */, - CDEA581516C551D700B3897A /* es-MX */, - CDEA587916C557CC00B3897A /* ko */, - CD3C6B3316D6B31C00AE7BE8 /* zh-Hans */, - CD3C6B4C16D6B32700AE7BE8 /* zh-Hant */, - CD4B1B7F17C258B000F2C5A7 /* ru */, - CD4B1B9817C258B800F2C5A7 /* id */, - CD4B1BB117C259BF00F2C5A7 /* th */, - ); - name = Preferences.strings; - sourceTree = ""; - }; 7F840FC8096C3356006E6F0E /* QSAction.description.strings */ = { isa = PBXVariantGroup; children = ( @@ -5980,7 +5866,6 @@ COPY_PHASE_STRIP = NO; FRAMEWORK_SEARCH_PATHS = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_MODEL_TUNING = G5; GCC_OPTIMIZATION_LEVEL = 0; @@ -5994,7 +5879,6 @@ "-framework", SenTestingKit, ); - PREBINDING = NO; PRODUCT_NAME = QSFoundationTests; WRAPPER_EXTENSION = octest; }; @@ -6008,7 +5892,6 @@ COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; FRAMEWORK_SEARCH_PATHS = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_MODEL_TUNING = G5; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -6021,7 +5904,6 @@ "-framework", SenTestingKit, ); - PREBINDING = NO; PRODUCT_NAME = QSFoundationTests; WRAPPER_EXTENSION = octest; ZERO_LINK = NO; @@ -6036,7 +5918,6 @@ COPY_PHASE_STRIP = NO; FRAMEWORK_SEARCH_PATHS = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_MODEL_TUNING = G5; GCC_OPTIMIZATION_LEVEL = 0; @@ -6050,7 +5931,6 @@ "-framework", SenTestingKit, ); - PREBINDING = NO; PRODUCT_NAME = QSCoreTests; WRAPPER_EXTENSION = octest; }; @@ -6064,7 +5944,6 @@ COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; FRAMEWORK_SEARCH_PATHS = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_MODEL_TUNING = G5; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -6077,7 +5956,6 @@ "-framework", SenTestingKit, ); - PREBINDING = NO; PRODUCT_NAME = QSCoreTests; WRAPPER_EXTENSION = octest; ZERO_LINK = NO; @@ -6092,7 +5970,6 @@ COPY_PHASE_STRIP = NO; FRAMEWORK_SEARCH_PATHS = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_MODEL_TUNING = G5; GCC_OPTIMIZATION_LEVEL = 0; @@ -6106,7 +5983,6 @@ "-framework", SenTestingKit, ); - PREBINDING = NO; PRODUCT_NAME = QSEffectsTests; WRAPPER_EXTENSION = octest; }; @@ -6120,7 +5996,6 @@ COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; FRAMEWORK_SEARCH_PATHS = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_MODEL_TUNING = G5; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -6133,7 +6008,6 @@ "-framework", SenTestingKit, ); - PREBINDING = NO; PRODUCT_NAME = QSEffectsTests; WRAPPER_EXTENSION = octest; ZERO_LINK = NO; @@ -6148,7 +6022,6 @@ COPY_PHASE_STRIP = NO; FRAMEWORK_SEARCH_PATHS = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_MODEL_TUNING = G5; GCC_OPTIMIZATION_LEVEL = 0; @@ -6162,7 +6035,6 @@ "-framework", SenTestingKit, ); - PREBINDING = NO; PRODUCT_NAME = QSInterfaceTests; WRAPPER_EXTENSION = octest; }; @@ -6176,7 +6048,6 @@ COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; FRAMEWORK_SEARCH_PATHS = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_MODEL_TUNING = G5; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -6189,7 +6060,6 @@ "-framework", SenTestingKit, ); - PREBINDING = NO; PRODUCT_NAME = QSInterfaceTests; WRAPPER_EXTENSION = octest; ZERO_LINK = NO; @@ -6204,7 +6074,6 @@ COPY_PHASE_STRIP = NO; FRAMEWORK_SEARCH_PATHS = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_MODEL_TUNING = G5; GCC_OPTIMIZATION_LEVEL = 0; @@ -6218,7 +6087,6 @@ "-framework", SenTestingKit, ); - PREBINDING = NO; PRODUCT_NAME = QuicksilverTests; WRAPPER_EXTENSION = octest; }; @@ -6232,7 +6100,6 @@ COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; FRAMEWORK_SEARCH_PATHS = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_MODEL_TUNING = G5; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -6245,7 +6112,6 @@ "-framework", SenTestingKit, ); - PREBINDING = NO; PRODUCT_NAME = QuicksilverTests; WRAPPER_EXTENSION = octest; ZERO_LINK = NO; @@ -6269,7 +6135,6 @@ buildSettings = { COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; PRODUCT_NAME = "Run All Tests"; ZERO_LINK = NO; };