diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Autoupdate b/src/MacVim/Sparkle_2.framework/Versions/B/Autoupdate index ccfada3570..bea793f293 100755 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Autoupdate and b/src/MacVim/Sparkle_2.framework/Versions/B/Autoupdate differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUStandardUpdaterController.h b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUStandardUpdaterController.h index 3851e67b36..5c4fecde9a 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUStandardUpdaterController.h +++ b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUStandardUpdaterController.h @@ -37,6 +37,8 @@ NS_ASSUME_NONNULL_BEGIN It also allows hooking up the updater's and user driver's delegates. If you need more control over what bundle you want to update, or you want to provide a custom user interface (via `SPUUserDriver`), please use `SPUUpdater` directly instead. + + This class must be used on the main thread. */ SU_EXPORT @interface SPUStandardUpdaterController : NSObject { diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUpdater.h b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUpdater.h index 9f035d3392..5f1db49ff7 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUpdater.h +++ b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUpdater.h @@ -42,6 +42,8 @@ NS_ASSUME_NONNULL_BEGIN - `feedURL` Please view the documentation on each of these properties for more detail if you are to configure them dynamically. + + This class must be used on the main thread. */ SU_EXPORT @interface SPUUpdater : NSObject @@ -96,11 +98,13 @@ SU_EXPORT @interface SPUUpdater : NSObject If an update hasn't started, the user may be shown that a new check for updates is occurring. If an update has already been downloaded or begun installing from a previous session, the user may be presented to install that update. - If the user is already being presented with an update, that update will be shown to the user in active focus. + If the user is already being presented with an update or update permission prompt, that notice may be shown to the user in active focus + (as long as the user driver is the standard `SPUStandardUserDriver` or if it implements `-[SPUUserDriver showUpdateInFocus]`). This will find updates that the user has previously opted into skipping. - See `canCheckForUpdates` property which can determine when this method may be invoked. + + This must be called on the main thread. */ - (void)checkForUpdates; @@ -126,6 +130,8 @@ SU_EXPORT @interface SPUUpdater : NSObject This will not find updates that the user has opted into skipping. This method does not do anything if there is a `sessionInProgress`. + + This must be called on the main thread. */ - (void)checkForUpdatesInBackground; @@ -144,13 +150,18 @@ SU_EXPORT @interface SPUUpdater : NSObject Updates that have been skipped by the user will not be found. This method does not do anything if there is a `sessionInProgress`. + + This must be called on the main thread. */ - (void)checkForUpdateInformation; /** A property indicating whether or not updates can be checked by the user. - An update check can be made by the user when an update session isn't in progress, or when an update or its progress is being shown to the user. + An update check can be made by the user when an update session isn't in progress. + An update check can also be made when an update or its progress is being shown to the user + (as long as the user driver is the standard `SPUStandardUserDriver` or if it implements `-[SPUUserDriver showUpdateInFocus]`). + A user cannot check for updates when data (such as the feed or an update) is still being downloaded automatically in the background. This property is suitable to use for menu item validation for seeing if `-checkForUpdates` can be invoked. @@ -194,7 +205,9 @@ SU_EXPORT @interface SPUUpdater : NSObject to your app's command line arguments instead of setting this property. The update schedule cycle will be reset in a short delay after the property's new value is set. - This is to allow reverting this property without kicking off a schedule change immediately + This is to allow reverting this property without kicking off a schedule change immediately. + + This property is KVO compliant. This property must be called on the main thread. */ @property (nonatomic) BOOL automaticallyChecksForUpdates; @@ -209,7 +222,9 @@ SU_EXPORT @interface SPUUpdater : NSObject Do not always set it on launch unless you want to ignore the user's preference. The update schedule cycle will be reset in a short delay after the property's new value is set. - This is to allow reverting this property without kicking off a schedule change immediately + This is to allow reverting this property without kicking off a schedule change immediately. + + This property is KVO compliant. This property must be called on the main thread. */ @property (nonatomic) NSTimeInterval updateCheckInterval; @@ -231,6 +246,8 @@ SU_EXPORT @interface SPUUpdater : NSObject Hence developers shouldn't maintain an additional user default for this property. Only set this property if the user wants to change the default via a user settings option. Do not always set it on launch unless you want to ignore the user's preference. + + This property is KVO compliant. This property must be called on the main thread. */ @property (nonatomic) BOOL automaticallyDownloadsUpdates; @@ -322,6 +339,8 @@ SU_EXPORT @interface SPUUpdater : NSObject A property indicating whether or not the user's system profile information is sent when checking for updates. Setting this property will persist in the host bundle's user defaults. + + This property is KVO compliant. This property must be called on the main thread. */ @property (nonatomic) BOOL sendsSystemProfile; @@ -331,6 +350,8 @@ SU_EXPORT @interface SPUUpdater : NSObject For testing purposes, the last update check is stored in the `SULastCheckTime` key in the host bundle's user defaults. For example, `defaults delete my-bundle-id SULastCheckTime` can be invoked to clear the last update check time and test if update checks are automatically scheduled. + + This property must be called on the main thread. */ @property (nonatomic, readonly, copy, nullable) NSDate *lastUpdateCheckDate; @@ -342,6 +363,8 @@ SU_EXPORT @interface SPUUpdater : NSObject If the `updateCheckInterval` or `automaticallyChecksForUpdates` properties are changed, this method is automatically invoked after a short delay using `-resetUpdateCycleAfterShortDelay`. In these cases, manually resetting the update cycle is not necessary. See also `-resetUpdateCycleAfterShortDelay` which gives the user a short delay before triggering a cycle reset. + + This must be called on the main thread. */ - (void)resetUpdateCycle; @@ -355,6 +378,8 @@ SU_EXPORT @interface SPUUpdater : NSObject no cycle reset will be done. If the `updateCheckInterval` or `automaticallyChecksForUpdates` properties are changed, this method is automatically invoked. In these cases, manually resetting the update cycle is not necessary. + + This must be called on the main thread. */ - (void)resetUpdateCycleAfterShortDelay; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUpdaterSettings.h b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUpdaterSettings.h index 8b69e962c5..12d0223ea9 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUpdaterSettings.h +++ b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUpdaterSettings.h @@ -21,10 +21,12 @@ NS_ASSUME_NONNULL_BEGIN /** - This class can be used for reading certain updater settings. + This class can be used for reading and updating updater settings. It retrieves the settings by first looking into the host's user defaults. If the setting is not found in there, then the host's Info.plist file is looked at. + + For updating updater settings, changes are made in the host's user defaults. */ SU_EXPORT @interface SPUUpdaterSettings : NSObject @@ -32,13 +34,17 @@ SU_EXPORT @interface SPUUpdaterSettings : NSObject /** * Indicates whether or not automatic update checks are enabled. + * + * This property is KVO compliant. This property must be called on the main thread. */ -@property (readonly, nonatomic) BOOL automaticallyChecksForUpdates; +@property (nonatomic) BOOL automaticallyChecksForUpdates; /** * The regular update check interval. + * + * This property is KVO compliant. This property must be called on the main thread. */ -@property (readonly, nonatomic) NSTimeInterval updateCheckInterval; +@property (nonatomic) NSTimeInterval updateCheckInterval; /** * Indicates whether or not automatically downloading updates is allowed to be turned on by the user. @@ -56,13 +62,17 @@ SU_EXPORT @interface SPUUpdaterSettings : NSObject * * Note this does not indicate whether or not automatic downloading of updates is allowable. * See `-allowsAutomaticUpdates` property for that. + * + * This property is KVO compliant. This property must be called on the main thread. */ -@property (readonly, nonatomic) BOOL automaticallyDownloadsUpdates; +@property (nonatomic) BOOL automaticallyDownloadsUpdates; /** * Indicates whether or not anonymous system profile information is sent when checking for updates. + * + * This property is KVO compliant. This property must be called on the main thread. */ -@property (readonly, nonatomic) BOOL sendsSystemProfile; +@property (nonatomic) BOOL sendsSystemProfile; @end diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUserDriver.h b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUserDriver.h index 3d90e44ad2..d0cc98e633 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUserDriver.h +++ b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SPUUserDriver.h @@ -256,14 +256,6 @@ SU_EXPORT @protocol SPUUserDriver */ - (void)showUpdateInstalledAndRelaunched:(BOOL)relaunched acknowledgement:(void (^)(void))acknowledgement; -/** - * Show the user the current presented update or its progress in utmost focus - * - * The user wishes to check for updates while the user is being shown update progress. - * Bring whatever is on screen to frontmost focus (permission request, update information, downloading or extraction status, choice to install update, etc). - */ -- (void)showUpdateInFocus; - /** * Dismiss the current update installation * @@ -273,12 +265,22 @@ SU_EXPORT @protocol SPUUserDriver */ - (void)dismissUpdateInstallation; +@optional + +/** + * Show the user the current presented update or its progress in utmost focus + * + * The user wishes to check for updates while the user is being shown update progress. + * Bring whatever is on screen to frontmost focus (permission request, update information, downloading or extraction status, choice to install update, etc). + * Implementing this method is optional. + */ +- (void)showUpdateInFocus; + /* * Below are deprecated methods that have been replaced by better alternatives. * The deprecated methods will be used if the alternatives have not been implemented yet. * In the future support for using these deprecated methods may be removed however. */ -@optional // Clients should move to non-deprecated methods // Deprecated methods are only (temporarily) kept around for compatibility reasons diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SUAppcastItem.h b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SUAppcastItem.h index e875e501c1..6e6b1ab804 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SUAppcastItem.h +++ b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SUAppcastItem.h @@ -235,8 +235,7 @@ SU_EXPORT @interface SUAppcastItem : NSObject This may be: - @c application - indicates this is a regular application update. - - @c package - indicates this is a guided package installer update. - - @c interactive-package - indicates this is an interactive package installer update (deprecated; use "package" instead) + - @c package - indicates this is a package installer update. This is extracted from the @c sparkle:installationType attribute in the @c element. diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SUErrors.h b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SUErrors.h index 2211c172e1..c9e23fefd3 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SUErrors.h +++ b/src/MacVim/Sparkle_2.framework/Versions/B/Headers/SUErrors.h @@ -67,7 +67,7 @@ typedef NS_ENUM(OSStatus, SUError) { SUInstallationAuthorizeLaterError = 4008, SUNotValidUpdateError = 4009, SUAgentInvalidationError = 4010, - SUInstallationRootInteractiveError = 4011, + //SUInstallationRootInteractiveError = 4011, SUInstallationWriteNoPermissionError = 4012, // API misuse errors. diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Modules/module.private.modulemap b/src/MacVim/Sparkle_2.framework/Versions/B/Modules/module.private.modulemap new file mode 100644 index 0000000000..8bc5cfd1a3 --- /dev/null +++ b/src/MacVim/Sparkle_2.framework/Versions/B/Modules/module.private.modulemap @@ -0,0 +1,38 @@ +// +// Sparkle.private.modulemap +// Sparkle +// +// Created on 4/30/25. +// Copyright © 2025 Sparkle Project. All rights reserved. +// + +framework module Sparkle_Private { + // Nothing exported here +} + +explicit module Sparkle_Private.SPUStandardUserDriver { + header "SPUStandardUserDriver+Private.h" + export * +} + +explicit module Sparkle_Private.SPUGentleUserDriverReminders { + header "SPUGentleUserDriverReminders.h" + export * +} + +explicit module Sparkle_Private.SPUUserAgent { + header "SPUUserAgent+Private.h" + export * +} + +explicit module Sparkle_Private.SUAppcastItem { + header "SUAppcastItem+Private.h" + header "SPUAppcastItemStateResolver.h" + export * +} + +explicit module Sparkle_Private.SUInstallerLauncher { + header "SUInstallerLauncher+Private.h" + header "SPUInstallationType.h" + export * +} diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/PrivateHeaders/SPUInstallationType.h b/src/MacVim/Sparkle_2.framework/Versions/B/PrivateHeaders/SPUInstallationType.h index 2c6e556195..f06aa33918 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/PrivateHeaders/SPUInstallationType.h +++ b/src/MacVim/Sparkle_2.framework/Versions/B/PrivateHeaders/SPUInstallationType.h @@ -13,7 +13,7 @@ #define SPUInstallationTypeGuidedPackage @"package" // the preferred installation type for package installations #define SPUInstallationTypeInteractivePackage @"interactive-package" // the deprecated installation type; use guided package instead -#define SPUInstallationTypesArray (@[SPUInstallationTypeApplication, SPUInstallationTypeGuidedPackage, SPUInstallationTypeInteractivePackage]) +#define SPUInstallationTypesArray (@[SPUInstallationTypeApplication, SPUInstallationTypeGuidedPackage]) #define SPUValidInstallationType(x) ((x != nil) && [SPUInstallationTypesArray containsObject:(NSString * _Nonnull)x]) #endif /* SPUInstallationType_h */ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib deleted file mode 100644 index 036e739a86..0000000000 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib and /dev/null differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib deleted file mode 100644 index 603950bc3d..0000000000 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib and /dev/null differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib deleted file mode 100644 index a4cc88ffc2..0000000000 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib and /dev/null differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/Sparkle.strings index 56a232c127..96011c394e 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Base.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Info.plist b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Info.plist index 8710ef099e..d298e2b057 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Info.plist +++ b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 24F74 + 24G84 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.7.1 + 2.8.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 2045 + 2049 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 24B75 + 24F74 DTPlatformName macosx DTPlatformVersion - 15.1 + 15.5 DTSDKBuild - 24B75 + 24F74 DTSDKName - macosx15.1 + macosx15.5 DTXcode - 1610 + 1640 DTXcodeBuild - 16B40 + 16F6 LSMinimumSystemVersion 10.13 diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUStatus.nib b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUStatus.nib index 2f39c951d5..d8dee77bcf 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUStatus.nib and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUStatus.nib differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUUpdateAlert.nib b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUUpdateAlert.nib new file mode 100644 index 0000000000..272a9d4ef5 Binary files /dev/null and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUUpdateAlert.nib differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib new file mode 100644 index 0000000000..55cc583375 Binary files /dev/null and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib new file mode 100644 index 0000000000..1016023475 Binary files /dev/null and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ar.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ar.lproj/SUUpdateAlert.strings deleted file mode 100644 index 55b02304b5..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ar.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "محدث البرنامج"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "معلومات عن الإصدار:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "تذكيري لاحقًا"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "تخطي هذا الإصدار"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "تثبيت التحديث"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "تنزيل التحديثات وتثبيتها تلقائيًا في المستقبل"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ar.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ar.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index dcd6dde094..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ar.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "عدم التحقق"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "هل تريد أن يتم التحقق من وجود تحديثات تلقائيًا؟"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "تضمين تقرير عن النظام دون ذكر معلومات عن المستخدم"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "تنزيل التحديثات وتثبيتها تلقائيًا في المست"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "التحقق تلقائيًا"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ar.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ar.lproj/Sparkle.strings index 7ba248ad3f..290f858a9c 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ar.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ar.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ca.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ca.lproj/SUUpdateAlert.strings deleted file mode 100644 index 284cf6dc62..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ca.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Actualització del programari"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Notes d'aquesta versió:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Recorda-m'ho més tard"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Omet aquesta versió"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Instal·la l'actualització"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Descarrega i instal·la les actualitzacions automàticament en el futur"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ca.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ca.lproj/Sparkle.strings index 21ceed8282..ad056b7d03 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ca.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ca.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/cs.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/cs.lproj/SUUpdateAlert.strings deleted file mode 100644 index ff7d56ff6c..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/cs.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Aktualizace aplikace"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Poznámky k vydání:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Připomenout později"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Přeskočit tuto verzi"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Instalovat aktualizaci"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "V budoucnu stahovat a instalovat aktualizace automaticky"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/cs.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/cs.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 6c971d19d7..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/cs.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Informace z anonymního systémového profilu pomáhají vývojářům lépe plánovat budoucí vývoj aplikace.\nBudete-li mít nějaký dotaz, obraťte se na nás.\n\nToto jsou informace, které budou odeslány:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Nevyhledávat"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Vyhledávat aktualizace automaticky?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Odeslat anonymní systémový profil"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Stahovat a instalovat aktualizace automaticky"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Automaticky vyhledávat"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/cs.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/cs.lproj/Sparkle.strings index 16760c304d..3d7ea57d5d 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/cs.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/cs.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/da.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/da.lproj/SUUpdateAlert.strings deleted file mode 100644 index 271ae308f4..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/da.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Software Update"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Om denne udgivelse:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Påmind mig senere"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Spring over"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Installer"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Hent og installer opdateringer automatisk i fremtiden"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/da.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/da.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 0bc75d70c9..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/da.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Søg ikke"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Søg efter opdateringer automatisk?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Vedhæft anonym systemprofil"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Hent og installer opdateringer automatisk"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Søg automatisk"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/da.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/da.lproj/Sparkle.strings index ec21c4129b..51a2624587 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/da.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/da.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/de.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/de.lproj/SUUpdateAlert.strings deleted file mode 100644 index 93e067a3b1..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/de.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Softwareupdate"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Versionshinweise:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Später erinnern"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Diese Version überspringen"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Installieren"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Updates in Zukunft automatisch laden und installieren"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/de.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/de.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index b34f5a44cf..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/de.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = ""; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = ""; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Das anonymisierte Systemprofil unterstützt uns bei der zukünftigen Entwicklung. Bitte kontaktiere uns, wenn du Fragen hierzu hast.\n\nDiese Informationen würden an uns gesendet werden:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Nicht suchen"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Automatisch nach Updates suchen?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Anonymisiertes Systemprofil übertragen"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Updates automatisch laden und installieren"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Automatisch suchen"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/de.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/de.lproj/Sparkle.strings index f23d7ca4e0..c395f0aead 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/de.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/de.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/el.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/el.lproj/SUUpdateAlert.strings deleted file mode 100644 index fc8679d8e5..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/el.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Ενημέρωση προγράμματος"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Σημειώσεις Έκδοσης:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Υπενθύμιση Αργότερα"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Παράλειψη Έκδοσης"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Εγκατάσταση Ενημέρωσης"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Αυτόματη λήψη και εγκατάσταση ενημερώσεων στο μέλλον"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/el.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/el.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index febfca22e6..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/el.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Οι ανώνυμες πληροφορίες του προφίλ του συστήματός σας, μας βοηθούν στο σχεδιασμό της μελλοντικής ανάπτυξης του προγράμματος. Παρακαλώ επικοινωνήστε μαζί μας άν έχετε ερωτήσεις.\n\nΑυτές είναι οι πληροφορίες που θα σταλούν σε εμάς:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Κανένας έλεγχος"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Αυτόματος έλεγχος για ενημερώσεις;"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Συμπερίληψη του ανώνυμου προφίλ του συστήματός σας"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Αυτόματη λήψη και εγκατάσταση ενημερώσεων"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Αυτόματος Ελεγχος"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/el.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/el.lproj/Sparkle.strings index 7ced09bc1c..d2e41b3507 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/el.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/el.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/en.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/en.lproj/SUUpdateAlert.strings deleted file mode 100644 index 45a4cfc063..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/en.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,18 +0,0 @@ - -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Software Update"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Release Notes:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Remind Me Later"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Skip This Version"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Install Update"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Automatically download and install updates in the future"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/en.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/en.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index fe430d94b7..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/en.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,27 +0,0 @@ - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "176"; */ -"OhZ-1K-DmA.title" = "Check Automatically"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "177"; */ -"cCJ-V0-aTi.title" = "Don’t Check"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "178"; */ -"gmh-T4-BO0.title" = "Check for updates automatically?"; - -/* Class = "NSTextFieldCell"; title = "DO NOT LOCALIZE"; ObjectID = "179"; */ -"179.title" = "DO NOT LOCALIZE"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "180"; */ -"gz7-LM-gNf.title" = "Include anonymous system profile"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Automatically download and install updates"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/es.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/es.lproj/SUUpdateAlert.strings deleted file mode 100644 index ab59ec28f2..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/es.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Actualización de software"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Notas de la versión:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Recordármelo"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "No instalar esta versión"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Instalar actualización"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Descargar e instalar actualizaciones automáticamente"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/es.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/es.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 885bf29814..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/es.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "La información de perfil de sistema anónimo se usa para ayudarnos a planear el trabajo de desarrollo futuro. Por favor, póngase en contacto con nosotros si tiene preguntas sobre esto.\n\nEsta es la información que nos enviaría:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "No comprobar"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "¿Comprobar si hay actualizaciones automáticamente?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Incluir perfil de sistema anónimo"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Descargar e instalar actualizaciones automáticamente"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Comprobar automáticamente"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/es.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/es.lproj/Sparkle.strings index f21f746551..5744e8d73d 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/es.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/es.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fa.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fa.lproj/Sparkle.strings index 93920083a2..ae6bead3a1 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fa.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fa.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fi.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fi.lproj/SUUpdateAlert.strings deleted file mode 100644 index dca6e2e39c..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fi.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Ohjelmiston pävitys"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Tietoa päivityksestä:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Muistuta myöhemmin"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Ohita tämä versio"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Asenna päivitys"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Hae ja asenna päivitykset jatkossa automaattisesti"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fi.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fi.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 04bf32bed3..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fi.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Älä tarkista"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Tarkista päivitykset käynnistyksen yhteydessä?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Sisällytä nimetön järjestelmäprofiili"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Hae ja asenna päivitykset automaattisesti"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Tarkista automaattisesti"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fi.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fi.lproj/Sparkle.strings index 974473a4ec..5fa6ec0b71 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fi.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fi.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fr.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fr.lproj/SUUpdateAlert.strings deleted file mode 100644 index fd8042edc7..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fr.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Mise à jour logiciel"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Notes de version :"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Pas maintenant"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Ignorer cette version"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Installer"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Télécharger et installer automatiquement les mises à jour"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fr.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fr.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index c059f185ae..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fr.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Les informations anonymes de profil système nous aident à planifier les futurs développements. Contactez-nous pour toute question à ce sujet.\n\nCi-dessous figurent les informations qui seront transmises :"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Ne pas vérifier"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Rechercher automatiquement les mises à jour ?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Avec transmission anonyme de mon profil système"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Télécharger et installer automatiquement les mises à jour"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Vérifier automatiquement"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fr.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fr.lproj/Sparkle.strings index 542150576e..9a4a7012b6 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fr.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/fr.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/he.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/he.lproj/SUUpdateAlert.strings deleted file mode 100644 index 0fe2a96799..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/he.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "עדכון תוכנה"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "הערות שחרור:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "הזכר לי מאוחר יותר"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "דלג על גרסה זו"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "התקן את העדכון"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "הורד והתקן עדכונים בעתיד באופן אוטומטי"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/he.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/he.lproj/Sparkle.strings index e643d5370c..18dfa8a3f8 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/he.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/he.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hr.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hr.lproj/SUUpdateAlert.strings deleted file mode 100644 index 60525afb3a..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hr.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Aktualiziranje softvera"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Napomene uz izdanje:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Podsjeti me kasnije"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Zanemari ovu verziju"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Instaliraj nadogradnju"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Ubuduće preuzmi i instaliraj nadogradnje automatski"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hr.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hr.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 665e3a1aeb..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hr.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonimizirani podaci profila susatava pomažu nam planirati budući razvoj. Kontaktiraj nas, ako imaš pitanja o tome.\n\nŠalju se sljedeći podaci:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Nemoj provjeravati"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Automatski provjeriti nadogradnje?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Uključi anonimizirane podatke o profilu sustava"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Preuzmi i instaliraj nadogradnje automatski"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Provjeri automatski"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hr.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hr.lproj/Sparkle.strings index b28308316a..3f22e9411b 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hr.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hr.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hu.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hu.lproj/SUUpdateAlert.strings deleted file mode 100644 index 841a5423c8..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hu.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Szoftverfrissítés"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Változások az előző verzióhoz képest:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Emlékeztessen később"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Verzió kihagyása"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Telepítés"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "A jövőben automatikusan töltse le és telepítse a frissítéseket"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hu.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hu.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index d1a121f362..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hu.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,20 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Manuális keresés"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Keresse automatikusan a frissítéseket?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Anonim rendszerinformáció küldése"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Automatikus keresés"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hu.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hu.lproj/Sparkle.strings index 6b397d42ec..5c0504ba76 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hu.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/hu.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/is.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/is.lproj/SUUpdateAlert.strings deleted file mode 100644 index 314a8caa0e..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/is.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Hugbúnaðaruppfærsla"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Útgáfupunktar:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Áminntu mig síðar"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Sleppa þessari útgáfu"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Innsetja"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Sækja og innsetja uppfærslur sjálfkrafa framvegis"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/is.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/is.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 66dc318788..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/is.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Upplýsingar úr nafnlausum kerfisskýrslum eru notaðar til að hjálpa okkur við framtíðarþróun hugbúnaðarins. Ekki hika við að hafa samband ef spurningar vakna um þetta.\n\nÞetta eru upplýsingarnar sem yrðu sendar:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Ekki kanna"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Athuga sjálfkrafa með uppfærslur?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Innifela nafnlausa kerfisskýrslu"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Sækja og innsetja uppfærslur sjálfkrafa"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Kanna sjálfkrafa"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/is.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/is.lproj/Sparkle.strings index 1b1858138e..cc749443d4 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/is.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/is.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/it.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/it.lproj/SUUpdateAlert.strings deleted file mode 100644 index cc0d7c3498..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/it.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Aggiornamento Software"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Note di rilascio:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Ricordamelo più tardi"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Ignora questa versione"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Installa"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "In futuro scarica e installa automaticamente gli aggiornamenti"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/it.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/it.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index a051914fdb..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/it.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Le informazioni del profilo di sistema anomino sono utilizzate per aiutarci in futuri lavori di sviluppo. Contattaci se hai dei quesiti sull’argomento.\n\nQueste sono le informazioni che verrebbero inviate:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Non controllare"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Controllo automaticamente gli aggiornamenti?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Include profilo di sistema anonimo"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Scarica e installa automaticamente gli aggiornamenti"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Controlla Automaticamente"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/it.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/it.lproj/Sparkle.strings index fce4b6a254..3799b57bbc 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/it.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/it.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ja.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ja.lproj/SUUpdateAlert.strings deleted file mode 100644 index 34745b9992..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ja.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "ソフトウェア・アップデート"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "リリースノート:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "あとで通知"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "このバージョンはスキップ"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "アップデートをインストール"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "今後はアップデートのダウンロードとインストールを自動で行う"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ja.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ja.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 0707b0677f..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ja.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "匿名のシステムプロファイル情報は、今後の開発の参考にさせていただきます。この件に関してご質問があればご連絡下さい。\n\n以下の情報が送信されます:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "確認しない"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "アップデートを自動で確認しますか?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "匿名のシステム情報を含める"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "自動で確認"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "アップデートを自動でダウンロードしてインストール"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ja.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ja.lproj/Sparkle.strings index 5a79207415..df080f1584 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ja.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ja.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ko.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ko.lproj/SUUpdateAlert.strings deleted file mode 100644 index ad0b22981f..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ko.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "소프트웨어 업데이트"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "릴리즈 노트:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "나중에"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "이 버전 건너뛰기"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "업데이트 설치"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "향후 업데이트 자동 다운로드 및 설치"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ko.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ko.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 95d023acfa..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ko.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "176"; */ -"OhZ-1K-DmA.title" = "자동으로 확인"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "177"; */ -"cCJ-V0-aTi.title" = "취소"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "178"; */ -"gmh-T4-BO0.title" = "업데이트를 자동으로 확인할까요?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "180"; */ -"gz7-LM-gNf.title" = "익명 시스템 정보 포함"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "업데이트 자동 다운로드 및 설치"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "익명으로 보내지는 시스템 정보로 차후 프로그램 개발에 도움이 될 수 있습니다. 질문이 있으시면 연락 주십시오.\n\n아래 정보가 전송될 것입니다."; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ko.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ko.lproj/Sparkle.strings index 80540be4c4..2dd59a51ff 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ko.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ko.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nb.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nb.lproj/SUUpdateAlert.strings deleted file mode 100644 index bd58fbb6b3..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nb.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,18 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Programoppdatering"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Om oppdateringen:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Utsett"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Hopp over"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Installer"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Last ned og installer automatisk i fremtiden"; - diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nb.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nb.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index c921f62672..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nb.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,24 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Den anonyme systemprofilen hjelper oss med å planlegge fremtidig utviklingsarbeid. Ta gjerne kontakt med oss hvis du har spørsmål om dette.
\nFølgende innhold vil bli sendt:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Ikke søk"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Søk etter oppdateringer automatisk?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Inkluder anonym systemprofil"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Last ned og installer automatisk"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Søk automatisk"; - diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nb.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nb.lproj/Sparkle.strings index 97d43767f3..7a518c9def 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nb.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nb.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nl.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nl.lproj/SUUpdateAlert.strings deleted file mode 100644 index 3edac367ff..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nl.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Software-update"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Versiegegevens:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Herinner mij later"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Sla deze versie over"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Installeer update"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Download en installeer updates voortaan automatisch"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nl.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nl.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 8995361036..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nl.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Aan de hand van anonieme informatie over het systeemprofiel kunnen wij toekomstige ontwikkelingswerkzaamheden beter plannen. Neem contact met ons op als je hierover vragen hebt.\n\nDit is de informatie die wordt verzonden:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Zoek niet"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Automatisch zoeken naar updates?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Voeg anoniem systeemprofiel bij"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Download en installeer updates automatisch"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Zoek automatisch"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nl.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nl.lproj/Sparkle.strings index b03a3bf610..80a54f5b14 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nl.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nl.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nn.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nn.lproj/SUUpdateAlert.strings deleted file mode 100644 index f4172f6fc6..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nn.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,18 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Programoppdatering"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Om oppdateringa:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Utsett"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Hopp over"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Installer"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Last ned og installer automatisk i framtida"; - diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nn.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nn.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index b5dd5d1653..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nn.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,24 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Den anonyme systemprofilen hjelper oss med å planleggja framtidig utviklingsarbeid. Ta gjerne kontakt med oss om du har spørsmål om dette.
\nFølgjande innhald vil bli sendt:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Ikkje sjå etter"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Sjå etter etter oppdateringar automatisk?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Inkluder anonym systemprofil"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Last ned og installer automatisk"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Sjå etter automatisk"; - diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nn.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nn.lproj/Sparkle.strings index aad25f42f6..ab54f02894 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nn.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/nn.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pl.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pl.lproj/SUUpdateAlert.strings deleted file mode 100644 index 4092fd0ac7..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pl.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Uaktualnienie oprogramowania"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Szczegóły wydania:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Przypomnij później"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Pomiń tę wersję"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Zainstaluj teraz"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Automatycznie pobierz i zainstaluj przyszłe uaktualnienia"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pl.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pl.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index ca85ca81ad..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pl.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Nie sprawdzaj"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Sprawdzać automatycznie uaktualnienia?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Załącz anonimowe informacje o systemie"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Automatycznie pobierz i zainstaluj uaktualnienia"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Sprawdzaj automatycznie"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pl.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pl.lproj/Sparkle.strings index 0848478df2..b2a184cf3e 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pl.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pl.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-BR.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-BR.lproj/SUUpdateAlert.strings deleted file mode 100644 index 65aab08753..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-BR.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Atualização de Software"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Notas do Lançamento:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Mais Tarde"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Ignorar Esta Versão"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Instalar Atualização"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Baixar e instalar atualizações futuras automaticamente"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-BR.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-BR.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index a435270785..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-BR.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,26 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "As informações anônimas do sistema são usadas para nos ajudar a planejar o desenvolvimento futuro do aplicativo. Contate-nos caso tenha dúvidas sobre este procedimento.\n\nAs seguintes informações seriam enviadas:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Não Buscar"; - -/* Class = "NSTextFieldCell"; title = "DO NOT LOCALIZE"; ObjectID = "cfa-j0-Ya4"; */ -"cfa-j0-Ya4.title" = ""; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Buscar atualizações automaticamente?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Incluir perfil anônimo do sistema"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Baixar e instalar atualizações automaticamente"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Buscar Automaticamente"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings index 0f3b0c5664..83481fdcec 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-PT.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-PT.lproj/SUUpdateAlert.strings deleted file mode 100644 index ae805c423d..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-PT.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Actualização de Software"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Notas de lançamento:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Lembrar mais tarde"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Saltar esta versão"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Instalar actualização"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "No futuro, transferir e instalar actualizações automaticamente"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-PT.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-PT.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index cb41028ab9..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-PT.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "A informação anónima do perfil de sistema é usada para no futuro nos ajudar a planear o trabalho de desenvolvimento. Por favor contacte-nos se tiver alguma questão acerca deste assunto.\n\nEsta é a informação que seria enviada:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Não procurar"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Procurar actualizações automaticamente?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Incluir perfil de sistema anónimo"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Transferir e instalar actualizações automaticamente"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Procurar automaticamente"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings index b8f3213b08..307b323fb5 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ro.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ro.lproj/SUUpdateAlert.strings deleted file mode 100644 index 37e9bc76e4..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ro.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Actualizarea aplicației"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Note de ediție:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Amintește-mi mai târziu"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Sari peste…"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Instalează actualizarea"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "În viitor descarcă și instalează în automat actualizările"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ro.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ro.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index c9d3813782..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ro.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Nu verifica"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Verifică pentru actualizări în mod automat?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Include profil anomin de sistem"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Descarcă și instalează în automat actualizările"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Verifică în mod automat"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ro.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ro.lproj/Sparkle.strings index 1e910ad081..478e68329a 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ro.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ro.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ru.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ru.lproj/SUUpdateAlert.strings deleted file mode 100644 index 137fd579f4..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ru.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Обновление программного обеспечения"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Заметки о выпуске:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Напоминать позже"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Пропустить эту версию"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Установить обновление"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Автоматически загружать и устанавливать обновления в будущем"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ru.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ru.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 99f15966c1..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ru.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Использование анонимного профиля системы помогает нам в планировании будущей работы по разработке. Если у вас есть какие-либо вопросы по этой теме, обращайтесь к нам.\n\nЭто информация, предназначенная для отправления:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Не проверять"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Выполнять автоматическую проверку наличия обновлений?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Включить анонимный профиль системы"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Автоматически загружать и устанавливать обновления"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Проверять автоматически"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ru.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ru.lproj/Sparkle.strings index 5452deb17d..693f938e42 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ru.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/ru.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sk.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sk.lproj/SUUpdateAlert.strings deleted file mode 100644 index 266f0fb406..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sk.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Aktualizácia softvéru"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Poznámky k vydaniu:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Pripomenúť neskôr"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Vynechať túto verziu"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Nainštalovať"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "V budúcnosti aktualizácie preberať a inštalovať automaticky"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sk.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sk.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 25c836d80b..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sk.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,20 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonymný profil systému nám umožní zlepšiť plánovanie budúceho vývoja aplikácie. Ak máte ohľadom tohto akékoľvek otázky, neváhajte a kontaktujte nás.\n\nOdosielané budú nasledujúce informácie:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Nekontrolovať"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Kontrolovať aktualizácie automaticky?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Zahrnúť anonymný profil systému"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Kontrolovať automaticky"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sk.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sk.lproj/Sparkle.strings index 8e9a150aad..fea743aaed 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sk.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sk.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sl.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sl.lproj/SUUpdateAlert.strings deleted file mode 100644 index d106021343..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sl.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Posodabljanje programske opreme"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Opombe ob izdaji:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Spomni me kasneje"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Preskoči to verzijo"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Namesti posodobitev"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "V prihodnje samodejno nameščaj posodobitve"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sl.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sl.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 03b141ca08..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sl.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonimni profil sistema se uporablja za načrtovanje nadaljnega razvoja programa. V primeru vprašanj nas lahko kontaktirate.\n\nPošljejo se sledeče informacije:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Ne preverjaj"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Naj občasno preverjam, če so na voljo posodobitve?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Vključi anonimni profil sistema"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Samodejno namestite posodobitve"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Samodejno preverjaj"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sl.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sl.lproj/Sparkle.strings index 085252e71f..8efec2482a 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sl.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sl.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sv.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sv.lproj/SUUpdateAlert.strings deleted file mode 100644 index 382b634a2f..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sv.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Programuppdatering"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Versionsinformation:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Påminn mig senare"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Hoppa över denna version"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Installera uppdatering"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Hämta och installera nya uppdateringar automatiskt i framtiden."; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sv.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sv.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index b26b32e4ef..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sv.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Textcell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Textcell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonym systemprofilinformation används för att hjälpa oss att planera framtida utvecklingsarbete. Vänligen kontakta oss ifall du har några frågot om detta.\n\nDetta är informationen som skulle sändas:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Kontrollera inte"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Leta efter uppdateringar automatiskt?\n"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Inkludera anonym systemprofil"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Hämta och installera nya uppdateringar automatiskt."; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Kontrollera automatiskt"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sv.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sv.lproj/Sparkle.strings index df36ec1c65..ae267f776b 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sv.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/sv.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/th.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/th.lproj/SUUpdateAlert.strings deleted file mode 100644 index c57e3d3c59..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/th.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "อัพเดทซอฟต์แวร์"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Release Notes:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "เตือนในภายหลัง"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "ข้ามเวอร์ชั่นนี้"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "ติดตั้งอัพเดท"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "ดาวน์โหลดและติดตั้งอัพเดทโดยอัตโนมัติในอนาคต"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/th.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/th.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index b755d03816..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/th.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "ข้อมูลระบบแบบนิรนามช่วยในการวางแผนพัฒนาแอปพลิเคชันของเราในอนาคต กรุณาติดต่อเราถ้าคุณมีข้อสงสัยในเรื่องนี้\n\nนี่คือข้อมูลที่จะถูกส่งไป:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "ไม่ต้องตรวจสอบ"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "ตรวจสอบอัพเดทอัตโนมัติ?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "ส่งข้อมูลระบบแบบนิรนาม"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "ดาวน์โหลดและติดตั้งอัพเดทโดยอัตโนมัติ"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "ตรวจสอบโดยอัตโนมัติ"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/th.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/th.lproj/Sparkle.strings index 6b8734e166..e859a28859 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/th.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/th.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/tr.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/tr.lproj/SUUpdateAlert.strings deleted file mode 100644 index 03fc614526..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/tr.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Yazılım Güncelleme"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Sürüm notları:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Daha Sonra Anımsat"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Bu Sürümü Atla"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Yükle"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Gelecekte güncellemeleri otomatik olarak indir ve yükle"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/tr.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/tr.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index b747e3c714..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/tr.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Gönderdiğiniz anonim sistem bilgileri bu yazılımın geliştirilmesi için kullanılacaktır. Konu ile ilgili ayrıntılı bilgi için lütfen bizimle iletişime geçin. Gönderilecek bilgiler:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Denetleme"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Güncellemeler otomatik olarak denetlensin mi?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Anonim sistem profilini içer"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Güncellemeleri otomatik olarak indir ve yükle"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Otomatik Olarak Denetle"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/tr.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/tr.lproj/Sparkle.strings index 98fdde8859..6beeb10446 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/tr.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/tr.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/uk.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/uk.lproj/SUUpdateAlert.strings deleted file mode 100644 index ece6670799..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/uk.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Оновлення програмного забезпечення"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Примітки про нову версію:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Нагадати пізніше"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Пропустити цю версію"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Встановити оновлення"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Автоматично завантажувати та встановлювати оновлення у майбутньому"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/uk.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/uk.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 27451a334d..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/uk.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Використання анонімного профілю системи допомагає нам у планування майбутньої розробки. Якщо у вас виникли питання щодо цього, звертайтесь до нас.\n\nІнформація, що буде надіслано:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "Не перервіряти"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "Виконувати автоматичну перевірку оновлень?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "Автоматично надсилати профіль системи"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "Автоматично завантажувати та встановлювати оновлення"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "Перевіряти автоматично"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/uk.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/uk.lproj/Sparkle.strings index 1e811b2cdf..e6687f8f77 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/uk.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/uk.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_CN.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_CN.lproj/SUUpdateAlert.strings deleted file mode 100644 index 5772fc63f3..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_CN.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "软件更新"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "更新信息:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "稍后提示我"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "跳过这个版本"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "安装更新"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "以后自动下载并安装更新"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index bdf7d69eb3..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "无记名系统概况信息被用于帮助我们安排将来的开发工作。如果对此存在疑问请联系我们。\n\n这是将要被发送的信息::"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "不核查"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "自动核查更新?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "包括无记名系统概况"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "自动下载并安装更新"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "自动核查"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings index 1e3a42a080..4aeac2126f 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_HK.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_HK.lproj/SUUpdateAlert.strings deleted file mode 100644 index d7cb6fe144..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_HK.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "軟體更新"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "更新事項:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "稍後提醒我"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "跳過此版本"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "安裝更新"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "以後自動下載並安裝更新"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_HK.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_HK.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index b40c572fba..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_HK.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "匿名系統概況資訊可用來協助我等計畫未來開發工作。若對此有任何疑問,請聯繫我等。\n\n以下係會傳送嘅資訊:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "毋檢查"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "自動檢查更新?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "包含匿名系統概況"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "自動下載並安裝更新"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "自動檢查"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings index b9dfe52955..b3abc19a0c 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_TW.lproj/SUUpdateAlert.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_TW.lproj/SUUpdateAlert.strings deleted file mode 100644 index d53374dd24..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_TW.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "軟體更新"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "更新事項:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "暫緩提醒"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "跳過此版本"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "安裝更新項目"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "自動下載並安裝未來的更新項目"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 635b4532c4..0000000000 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "匿名系統描述資訊可用來協助我們計畫未來的開發工作。若您有任何相關問題,請與我們聯繫。\n\n以下是會傳送的資訊:"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ -"cCJ-V0-aTi.title" = "不要檢查"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ -"gmh-T4-BO0.title" = "自動檢查更新項目?"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ -"gz7-LM-gNf.title" = "包含匿名的系統描述資料"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ -"AUc-33-qGN.title" = "自動下載並安裝更新項目"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ -"OhZ-1K-DmA.title" = "自動檢查"; diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings index 1e826ad212..6ec0dd6b1e 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings and b/src/MacVim/Sparkle_2.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Sparkle b/src/MacVim/Sparkle_2.framework/Versions/B/Sparkle index c216fa3a91..e1f1be3772 100755 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Sparkle and b/src/MacVim/Sparkle_2.framework/Versions/B/Sparkle differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/Info.plist b/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/Info.plist index 25ebe87267..8991743398 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/Info.plist +++ b/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 24F74 + 24G84 CFBundleDevelopmentRegion en CFBundleExecutable @@ -55,7 +55,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.7.1 + 2.8.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -63,23 +63,23 @@ MacOSX CFBundleVersion - 2045 + 2049 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 24B75 + 24F74 DTPlatformName macosx DTPlatformVersion - 15.1 + 15.5 DTSDKBuild - 24B75 + 24F74 DTSDKName - macosx15.1 + macosx15.5 DTXcode - 1610 + 1640 DTXcodeBuild - 16B40 + 16F6 LSApplicationCategoryType public.app-category.utilities LSMinimumSystemVersion diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/MacOS/Updater b/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/MacOS/Updater index 05ca615e62..a142cb4a0d 100755 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/MacOS/Updater and b/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/MacOS/Updater differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib b/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib index 2f39c951d5..d8dee77bcf 100644 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib and b/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/_CodeSignature/CodeResources b/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/_CodeSignature/CodeResources index 9e5328ba74..3430875b77 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/_CodeSignature/CodeResources +++ b/src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/_CodeSignature/CodeResources @@ -6,7 +6,7 @@ Resources/SUStatus.nib - F10odNSB22LnWavm8BKYRztljaQ= + Iu5Uac2/Jq/TkBKt72CBLw3j1D8= files2 @@ -15,7 +15,7 @@ hash2 - msjlCHgfQ2V9V4Dt6Z5968eaMn6zeL/en7Mg22/5Pso= + Qd5rCHQjMKfxN9BfliN2b7KXpOro8kFotf6JbmgnSLI= diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Downloader.xpc/Contents/Info.plist b/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Downloader.xpc/Contents/Info.plist index 14aa52bcef..f34f37ee29 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Downloader.xpc/Contents/Info.plist +++ b/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Downloader.xpc/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 24F74 + 24G84 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.7.1 + 2.8.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 2045 + 2049 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 24B75 + 24F74 DTPlatformName macosx DTPlatformVersion - 15.1 + 15.5 DTSDKBuild - 24B75 + 24F74 DTSDKName - macosx15.1 + macosx15.5 DTXcode - 1610 + 1640 DTXcodeBuild - 16B40 + 16F6 LSMinimumSystemVersion 10.13 NSAppTransportSecurity diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader b/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader index 7700c851d0..c034985734 100755 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader and b/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Installer.xpc/Contents/Info.plist b/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Installer.xpc/Contents/Info.plist index 01e1ab0473..6bce74a710 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Installer.xpc/Contents/Info.plist +++ b/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Installer.xpc/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 24F74 + 24G84 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.7.1 + 2.8.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 2045 + 2049 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 24B75 + 24F74 DTPlatformName macosx DTPlatformVersion - 15.1 + 15.5 DTSDKBuild - 24B75 + 24F74 DTSDKName - macosx15.1 + macosx15.5 DTXcode - 1610 + 1640 DTXcodeBuild - 16B40 + 16F6 LSMinimumSystemVersion 10.13 NSHumanReadableCopyright diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer b/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer index e65a4d85b5..7f93ea54d7 100755 Binary files a/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer and b/src/MacVim/Sparkle_2.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer differ diff --git a/src/MacVim/Sparkle_2.framework/Versions/B/_CodeSignature/CodeResources b/src/MacVim/Sparkle_2.framework/Versions/B/_CodeSignature/CodeResources index d037440866..16cf5bc42e 100644 --- a/src/MacVim/Sparkle_2.framework/Versions/B/_CodeSignature/CodeResources +++ b/src/MacVim/Sparkle_2.framework/Versions/B/_CodeSignature/CodeResources @@ -4,66 +4,39 @@ files - Resources/Base.lproj/SUUpdateAlert.nib + Resources/Base.lproj/Sparkle.strings - PcmPQ5PkNUQbIm63Lz9sGqS3Zo4= + OhEDIc/SEbKpCdlRUsrSx3lFXHk= - Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib + Resources/Info.plist - JrbMp4B+sF01oqE++7qM4+lesU8= + baeFAKViJR58pxbQVTqGVhCzQxU= - Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib + Resources/ReleaseNotesColorStyle.css - tkAMCg7eArVqgWxlHOgjeWwIh2I= + NjIvb1z7eJuLCKf9HS15O5heg50= - Resources/Base.lproj/Sparkle.strings + Resources/SUStatus.nib - pAyxkvXEa1VYttb53ia0t3P1TGY= + Iu5Uac2/Jq/TkBKt72CBLw3j1D8= - Resources/Info.plist + Resources/SUUpdateAlert.nib - wXJdsGhwBC78/vnlxpGNRcoJOo4= + aBY/8sWAcbKxrkcg0p2M+gv0eDg= - Resources/ReleaseNotesColorStyle.css + Resources/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib - NjIvb1z7eJuLCKf9HS15O5heg50= + A02xo7KWD5EJV3vQIZIgEN2Gm94= - Resources/SUStatus.nib + Resources/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib - F10odNSB22LnWavm8BKYRztljaQ= + zWe0e02UlZdX+N7AUu4TSBx7tIo= - Resources/ar.lproj/SUUpdateAlert.strings - - hash - - qTOMJ1P/HhCcJQi4qSJV9l/b7q0= - - optional - - - Resources/ar.lproj/SUUpdatePermissionPrompt.strings - - hash - - zZ/0sjHdlPnBGe10CetKo1kF1xQ= - - optional - - Resources/ar.lproj/Sparkle.strings hash - 5Ukin0TnIF0ot6Daz8OSgIoDZJ0= - - optional - - - Resources/ca.lproj/SUUpdateAlert.strings - - hash - - l9CaCmAXFcs+Z+8rRt7PX9onkf8= + T7fNcqHlJUnjYfupB4g4wM7Eagk= optional @@ -72,25 +45,7 @@ hash - KNs5vPpTuHWbG6nFpC1whO4KeAs= - - optional - - - Resources/cs.lproj/SUUpdateAlert.strings - - hash - - G9Wgf14zMhU2alRSZvqclMmlTCA= - - optional - - - Resources/cs.lproj/SUUpdatePermissionPrompt.strings - - hash - - rhsuTqRoVAfmLW+GJ1vvxJPRJ0U= + cEAmpjo27zR+JhuaUXN0UQr3QK4= optional @@ -99,25 +54,7 @@ hash - BWMaDw6qC8BVuA7Sgi4yCI9PLE8= - - optional - - - Resources/da.lproj/SUUpdateAlert.strings - - hash - - NEt5JVKz+OoMSynKxJC18KXMGaA= - - optional - - - Resources/da.lproj/SUUpdatePermissionPrompt.strings - - hash - - s6oFpgOPENk+LCyXJoLfVqZauVQ= + S4UySgWODzvabHvzOxsQpy7pzKc= optional @@ -126,25 +63,7 @@ hash - HLtVLvZwASiygsiyWKQbf/xJUxs= - - optional - - - Resources/de.lproj/SUUpdateAlert.strings - - hash - - YLQxXHDo3e3Udzaj8LHDIjotWzE= - - optional - - - Resources/de.lproj/SUUpdatePermissionPrompt.strings - - hash - - W8+shbfn38JAPBpgHTMWuU0oHfQ= + W+QsOXYRxKh4cMvK6JkwZvN+IVI= optional @@ -153,25 +72,7 @@ hash - +UtK947GbWlGrHkPf2vScu5uqbE= - - optional - - - Resources/el.lproj/SUUpdateAlert.strings - - hash - - BS+NpAFPK7X/XzX+n99gJLhlNKU= - - optional - - - Resources/el.lproj/SUUpdatePermissionPrompt.strings - - hash - - TNa05IunzylN4fz2uHvkj5EnyRk= + 6emSMw0F+UUC6YVS2TMiIYPGlss= optional @@ -180,43 +81,7 @@ hash - 9UeCcfb2L6dVPSZnXLzdkFW2GDM= - - optional - - - Resources/en.lproj/SUUpdateAlert.strings - - hash - - FSez7jCd0gDTFFGHiWL1QXY8OUU= - - optional - - - Resources/en.lproj/SUUpdatePermissionPrompt.strings - - hash - - 7+SiSQLU1hqbN74YfiBS1cQFVqU= - - optional - - - Resources/es.lproj/SUUpdateAlert.strings - - hash - - Q36SuanjGk70efU6liei3uz+Uds= - - optional - - - Resources/es.lproj/SUUpdatePermissionPrompt.strings - - hash - - kNfRs9Pgn30BdjtuNzhRvKXcqu0= + /Fqwo/qEklmldCP6iVh/6v/hRtA= optional @@ -225,7 +90,7 @@ hash - s5wDya2zzL7tcyVlcPo9/F8I9/c= + MrnoX4qJOfgIVq3M6x24fUAx9lI= optional @@ -234,25 +99,7 @@ hash - kXmDOKYT484fFJrriUe3zomlV64= - - optional - - - Resources/fi.lproj/SUUpdateAlert.strings - - hash - - My5YiAuNV+4oR1vPL1np+nMMMOI= - - optional - - - Resources/fi.lproj/SUUpdatePermissionPrompt.strings - - hash - - NcjaY8nD4cpjcpK4M878R5JDK1s= + voU8aUJaurOIaAdtV33OM6YmtEg= optional @@ -261,25 +108,7 @@ hash - KRoZrUbgs7+EwIxs18H121Szw+0= - - optional - - - Resources/fr.lproj/SUUpdateAlert.strings - - hash - - ffz6ccHMgxcBdH6by1YAYX1jpOQ= - - optional - - - Resources/fr.lproj/SUUpdatePermissionPrompt.strings - - hash - - p4tAU3Ek6hEWqW9e8+C1L8WMQIM= + 2Emh5JDGV5uqAvja/ExFDMHAIuo= optional @@ -288,25 +117,7 @@ hash - uTXM8PB96z88GkvNFhyvR/7ZCOc= - - optional - - - Resources/he.lproj/SUUpdateAlert.strings - - hash - - UqQyzt7i1BzLE/1l70C8EbAHpPw= - - optional - - - Resources/he.lproj/SUUpdatePermissionPrompt.strings - - hash - - dexoxvq5Mj4kIvh+qtUm1tChHvo= + rYSw5ov8cR5YOqzXnWRZZAXrsHg= optional @@ -315,25 +126,7 @@ hash - ytz0i0mchT2bWQ89CgV2ZjC+HFo= - - optional - - - Resources/hr.lproj/SUUpdateAlert.strings - - hash - - b/ru54Y0QwvH9Kz9sfRPEoP5z5k= - - optional - - - Resources/hr.lproj/SUUpdatePermissionPrompt.strings - - hash - - rdv7bU5k1tUG/tyNsQ1i/Rniypk= + tFZ0kH5mwFfvvlq0UvbPPiwl9GU= optional @@ -342,25 +135,7 @@ hash - bUdgUfCRgtrzw1YzsRrGCVY9Tms= - - optional - - - Resources/hu.lproj/SUUpdateAlert.strings - - hash - - VD/QPXFfEHRW7ksDLYiiO1xl1LQ= - - optional - - - Resources/hu.lproj/SUUpdatePermissionPrompt.strings - - hash - - PMarJZpNhDysjzZuBuyKv8KBTXQ= + PijrXJOIU6kJbybmO9H6692KXDE= optional @@ -369,25 +144,7 @@ hash - 5CCN2xKgiom6y3+mcWd48RVdX48= - - optional - - - Resources/is.lproj/SUUpdateAlert.strings - - hash - - bQiB5tUCaD24QKubEYeBTXsAF1g= - - optional - - - Resources/is.lproj/SUUpdatePermissionPrompt.strings - - hash - - vGNXtUX/4qNYIzE89IO7e4GxS60= + 2Ksks8It17APw4bY49SNRY+2Thw= optional @@ -396,25 +153,7 @@ hash - tplLwN1kGq9MoWLnyPQhozI6c54= - - optional - - - Resources/it.lproj/SUUpdateAlert.strings - - hash - - Yev0Ro2PsLfgCLoY7JNED63PnqM= - - optional - - - Resources/it.lproj/SUUpdatePermissionPrompt.strings - - hash - - IGMzQ4TCQgpEQaOcESzlhe8ny9I= + 2/3AFNWHP6LviaOgYOiM8rEqa4o= optional @@ -423,25 +162,7 @@ hash - 4dXESUaHE2dFeufUHNwRIqZX9Wc= - - optional - - - Resources/ja.lproj/SUUpdateAlert.strings - - hash - - aqXsBwqycwXfSX0SDJcWfHOnzWA= - - optional - - - Resources/ja.lproj/SUUpdatePermissionPrompt.strings - - hash - - cAx3RQDMM17OoU39/UaI2sMDZLA= + aUR20ZDFeIbbhVZubV/pm/DF5Yo= optional @@ -450,25 +171,7 @@ hash - PSzuLg6o8oUsLxsm8t81XLFGCZg= - - optional - - - Resources/ko.lproj/SUUpdateAlert.strings - - hash - - Qw6/m/LeQ/b+ApIWLXJp2ByBp7k= - - optional - - - Resources/ko.lproj/SUUpdatePermissionPrompt.strings - - hash - - ddXQhUAjY+oi62JXHPY2OYvbpa4= + QXnm7+eA9WWBtWCj3FhEQqluZCM= optional @@ -477,1637 +180,735 @@ hash - PG5i0JLjiHsmQaKDJEna5hDIsnk= - - optional - - - Resources/nb.lproj/SUUpdateAlert.strings - - hash - - fck+vL9Sgcx19X7HthrjizRGhu8= - - optional - - - Resources/nb.lproj/SUUpdatePermissionPrompt.strings - - hash - - eiq9zVX/y56Q0ymxVNFnYahFbxs= - - optional - - - Resources/nb.lproj/Sparkle.strings - - hash - - bV8ftjOesaSv8Q38w8irgIv/al4= - - optional - - - Resources/nl.lproj/SUUpdateAlert.strings - - hash - - 5ZpTsHPgV4inhhYiISGjC03BMG4= - - optional - - - Resources/nl.lproj/SUUpdatePermissionPrompt.strings - - hash - - LgvDZbmPK7Ox9+gNe7zXN3egxlM= - - optional - - - Resources/nl.lproj/Sparkle.strings - - hash - - 5ICRko8SDlROYWigTD41Ukfe13U= - - optional - - - Resources/nn.lproj/SUUpdateAlert.strings - - hash - - OSmchqvF31OYAu223yZI6p3J4g4= - - optional - - - Resources/nn.lproj/SUUpdatePermissionPrompt.strings - - hash - - xNizW6Xg8cPtYBhWBmexjNf5j8U= - - optional - - - Resources/nn.lproj/Sparkle.strings - - hash - - zeWvaM0pXtKqlA2EbY5ZKjcJ0ws= - - optional - - - Resources/pl.lproj/SUUpdateAlert.strings - - hash - - HX2RXVrN+fpwO4I60/UDyNuGj5Y= - - optional - - - Resources/pl.lproj/SUUpdatePermissionPrompt.strings - - hash - - abNyxpda7OkXoR5Ok35XgMr9eBc= - - optional - - - Resources/pl.lproj/Sparkle.strings - - hash - - oWDxhBptd82i6ZmAqb12V/ie16Q= - - optional - - - Resources/pt-BR.lproj/SUUpdateAlert.strings - - hash - - YFXY6v+45ptf8TuBq2MsKKdhfQ8= - - optional - - - Resources/pt-BR.lproj/SUUpdatePermissionPrompt.strings - - hash - - 2iCpI0fy7Tm1zxR19dV1iCYW3bo= - - optional - - - Resources/pt-BR.lproj/Sparkle.strings - - hash - - bqAxqCt98Zz3ABFiwwwYXQ5RlKo= - - optional - - - Resources/pt-PT.lproj/SUUpdateAlert.strings - - hash - - pWRHcAJRvjUt7BOLr/gd+IupcGA= - - optional - - - Resources/pt-PT.lproj/SUUpdatePermissionPrompt.strings - - hash - - Om//DOu8+gBjHYrCHVmxKxBDvPs= - - optional - - - Resources/pt-PT.lproj/Sparkle.strings - - hash - - k2BwHr4kNubgvwIIu5MHJl0uWck= - - optional - - - Resources/ro.lproj/SUUpdateAlert.strings - - hash - - a/RNqEdkehva+SwGWz11MktFGWA= - - optional - - - Resources/ro.lproj/SUUpdatePermissionPrompt.strings - - hash - - JDMBsS6fp2v5X+C0d1EJAREHIkA= - - optional - - - Resources/ro.lproj/Sparkle.strings - - hash - - d8GetrPioKdukXC3+9RWZjJr8GY= - - optional - - - Resources/ru.lproj/SUUpdateAlert.strings - - hash - - Lmn0e5MDPfan55gnani1dQbR10Q= - - optional - - - Resources/ru.lproj/SUUpdatePermissionPrompt.strings - - hash - - z+XqvyZR2X6cb0PioKpfYDCF3YY= - - optional - - - Resources/ru.lproj/Sparkle.strings - - hash - - NX1iJXeJfZM/lLLj7Tt/9vRGlhs= - - optional - - - Resources/sk.lproj/SUUpdateAlert.strings - - hash - - 8o3l6mjHafwy5sLMMO2rZIe7xiQ= - - optional - - - Resources/sk.lproj/SUUpdatePermissionPrompt.strings - - hash - - s3Cllq+eYT+urMLfXvnwsMkboWQ= - - optional - - - Resources/sk.lproj/Sparkle.strings - - hash - - vR3wiQ+pBcmOi9SbgnU3KN+pfeQ= - - optional - - - Resources/sl.lproj/SUUpdateAlert.strings - - hash - - Ny5EoZGpd5UK5c3eMIUKLR8x4/I= - - optional - - - Resources/sl.lproj/SUUpdatePermissionPrompt.strings - - hash - - vbP9bj0jn5GKz9uEu3amXnozkWo= - - optional - - - Resources/sl.lproj/Sparkle.strings - - hash - - jlj1XBE0qnu8pOj1JWwNTkuApsw= - - optional - - - Resources/sv.lproj/SUUpdateAlert.strings - - hash - - YWicg3ZZLCEoiJ9WOUUZ6WoTZJY= - - optional - - - Resources/sv.lproj/SUUpdatePermissionPrompt.strings - - hash - - JKbTlT+iKE5KOwvLD9N/Go2K+q0= - - optional - - - Resources/sv.lproj/Sparkle.strings - - hash - - UH7udC5C4WHwnnx4Eg6Io23rBzk= - - optional - - - Resources/th.lproj/SUUpdateAlert.strings - - hash - - Cd6guArNrSoJO3e2ntd1Eys3bok= - - optional - - - Resources/th.lproj/SUUpdatePermissionPrompt.strings - - hash - - L4ZWMKTKnMsbMsL8V2V6OLySKLE= - - optional - - - Resources/th.lproj/Sparkle.strings - - hash - - cHFejOD/e8AZNJ6m+9pJO20GLO4= - - optional - - - Resources/tr.lproj/SUUpdateAlert.strings - - hash - - B+Y273q3UDMsG2/yaWuxMUGr2dI= - - optional - - - Resources/tr.lproj/SUUpdatePermissionPrompt.strings - - hash - - NstD9tjAfqULKbFJEcULPgVeJKk= - - optional - - - Resources/tr.lproj/Sparkle.strings - - hash - - vH9BCtbtOSwK4l2PV03JXOAdkUk= - - optional - - - Resources/uk.lproj/SUUpdateAlert.strings - - hash - - 6/WdcAg1mJs1/HT5krHhOxqyMWk= - - optional - - - Resources/uk.lproj/SUUpdatePermissionPrompt.strings - - hash - - I4B4qXPwnMhj/A+yU0vvngP7oak= - - optional - - - Resources/uk.lproj/Sparkle.strings - - hash - - Q2Yszs2/8NW6kuRp8rQasC+ddL0= - - optional - - - Resources/zh_CN.lproj/SUUpdateAlert.strings - - hash - - DjCjxSor6wnKAz8bFLcPCnW1Kw0= - - optional - - - Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings - - hash - - xeCj4c1ifxxhDFeLtNsSc4NgBFw= - - optional - - - Resources/zh_CN.lproj/Sparkle.strings - - hash - - rbBF5STK0BIDGJVCzYm2QBsEBWw= - - optional - - - Resources/zh_HK.lproj/SUUpdateAlert.strings - - hash - - +9prrb68fl57+m9WFQ+8Ay6XjRk= - - optional - - - Resources/zh_HK.lproj/SUUpdatePermissionPrompt.strings - - hash - - 5Pazf5ErH02Ny5mFB+R+dwCWPVM= - - optional - - - Resources/zh_HK.lproj/Sparkle.strings - - hash - - MZXR0fFAMrdBQPKAjYvzVQdzNCk= - - optional - - - Resources/zh_TW.lproj/SUUpdateAlert.strings - - hash - - 167IbTfOhYu699bxXBhaGehjrco= - - optional - - - Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings - - hash - - SNJz+3Rb1AJ2cKstnbGWL6Q8OW8= - - optional - - - Resources/zh_TW.lproj/Sparkle.strings - - hash - - 1cp4nThwvuJlVhetrBKY1Dh0IJA= - - optional - - - - files2 - - Autoupdate - - cdhash - - qQxnZU1QdwbUQBXZyrH2V1ChI/A= - - requirement - cdhash H"a90c67654d507706d44015d9cab1f65750a123f0" or cdhash H"2db2b41972e392d082f8e4389149c75b33f67bcc" - - Headers/SPUDownloadData.h - - hash2 - - yhS+aH6hPb1hSOt0tT6Rej2kQoPz6wrtntLOBuoIIJs= - - - Headers/SPUStandardUpdaterController.h - - hash2 - - gf8QsQfI+rsdQIHZdznFSFICnui4Oavnhgn9ybmv6Hs= - - - Headers/SPUStandardUserDriver.h - - hash2 - - Y4fOofv2Ua1TAI9qM7wL8CalQGHLa1spvUNg9JB71NE= - - - Headers/SPUStandardUserDriverDelegate.h - - hash2 - - Y1CXvdztYvr7TNU5uykV9jSjdvcpl2aCQPwjVHZe+IQ= - - - Headers/SPUUpdateCheck.h - - hash2 - - H30F2i5GYmOu/j4JEw5WsuZbiGJXnge5gpyb9e2SHAM= - - - Headers/SPUUpdatePermissionRequest.h - - hash2 - - hnRNYPeaK0NWoKPXEYs2AoyD6QOE0CHDJWJxKM5Ma24= - - - Headers/SPUUpdater.h - - hash2 - - gHf2JF29zPpLfNllC9hyoYGyZVO9xJ0wNDCZNd65+hQ= - - - Headers/SPUUpdaterDelegate.h - - hash2 - - bUP8h5u5vMbDU68cKrno2Y22fRQTrOJp5Ipj2rHTSbc= - - - Headers/SPUUpdaterSettings.h - - hash2 - - Nnk1lMwSl/z+ugdM8ovU0U/bQUoOWG6zjYQHXPF+kCU= - - - Headers/SPUUserDriver.h - - hash2 - - 6/byufu2xa4bjEdEwfuFxkHUiYnK9gbYEtplebyvTSY= - - - Headers/SPUUserUpdateState.h - - hash2 - - Z4UKJcXMF/bUmSkIiM+D8jTiS8i5x1CLqoo4uG4aQvg= - - - Headers/SUAppcast.h - - hash2 - - M3KUgO+Ud/n5t/rXjFYzQMUTPDA8fK7W46QQfuh5DnA= - - - Headers/SUAppcastItem.h - - hash2 - - imKkb6r+8fp+9enH9Xlnh0VZ5S12ZkwmU53UHTx/Tdo= - - - Headers/SUErrors.h - - hash2 - - fmP8Y0mI10K5McjVGtVKtgzae36JLxmqLw3sr7vdBGY= - - - Headers/SUExport.h - - hash2 - - XO8CQmbFThLbYg949NEGhg3g+iouIw3/3+BCCLtEdFE= - - - Headers/SUStandardVersionComparator.h - - hash2 - - fUB7nOch1cZQ50HstpLnfxLvO14Y6oE29yRI6NcgjGw= - - - Headers/SUUpdatePermissionResponse.h - - hash2 - - HScQok/zuc704lNfwGl1Csr6nigQLAsjeRJXG1HTuks= - - - Headers/SUUpdater.h - - hash2 - - lvb1mNWCyofJ0X88zXvMsK5PBXrG6Pr7hUrY0E3jNvY= - - - Headers/SUUpdaterDelegate.h - - hash2 - - oaCMM/1B690QWRbYGB0iJBf5/toBzcQq+moxURBs3jY= - - - Headers/SUVersionComparisonProtocol.h - - hash2 - - KLu0JKx6uB4rk/YeNZ/vo+0J1qONCyZQBNIQPA9GvbQ= - - - Headers/SUVersionDisplayProtocol.h - - hash2 - - PyPE+5u9vBlxRYDuTdf3P/wxQ26nM8m7MIw/dOerUSw= - - - Headers/Sparkle.h - - hash2 - - OkQqMusip3u1oI5hrGeNr/32xpfTMCC4Kmg7r0Aijgw= - - - Modules/module.modulemap - - hash2 - - K8rh62bVXcSfWKz+hWN1pbvJHG6DvbKY0ZRCrmJkz6Y= - - - PrivateHeaders/SPUAppcastItemStateResolver.h - - hash2 - - HDvimACMGXV647Jwg2IqAFvOgJoB8G0sdPbeoW8yFO4= - - - PrivateHeaders/SPUGentleUserDriverReminders.h - - hash2 - - 9W2dJ38WQX151mpIS0r8/EfCqZV6jEh621xwna2JVAI= - - - PrivateHeaders/SPUInstallationType.h - - hash2 - - hj9Br7Gf1Y8X1dqNvSUHMP70K+Q+S9xZAyPYMqKthFQ= - - - PrivateHeaders/SPUStandardUserDriver+Private.h - - hash2 - - rMdk5zH+nm0wf+Mt6k0GtFGWQiXCsql0WiPwNanN6q0= - - - PrivateHeaders/SPUUserAgent+Private.h - - hash2 - - DD6nxqq6syhA5BxWuyLPq03uTd4zAmA7b0q6msG1hQw= - - - PrivateHeaders/SUAppcastItem+Private.h - - hash2 - - 9H7OIT9nEoYXUBBcvTZdSOzlq81uWIUS8Mqjuhfz9Ww= - - - PrivateHeaders/SUInstallerLauncher+Private.h - - hash2 - - yy6cRl8IqwMJwr86TS98NdnHb/WkSAaUcAoiKYUg3ZQ= - - - Resources/Base.lproj/SUUpdateAlert.nib - - hash2 - - bgRZIOcTfZL9pl4BT/HvgIT5ZPhs3PrnmLIjNgITHQc= - - - Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib - - hash2 - - fy81zcr5Zv60ws5tSpTwuIz6KA+G/FvUGqQi1VeNU+w= - - - Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib - - hash2 - - YphQq0fD3fZ5t8uYO1r6pZg0EERR6ufHAkOS/3bi4m4= - - - Resources/Base.lproj/Sparkle.strings - - hash2 - - pJuZ4AXoYAPXaXMNPVsYwbjuBIkF7E74sl51ZQ6aS6Q= - - - Resources/Info.plist - - hash2 - - I/DvncfquNtI8SR/sgA4MwNNnnEehgIG1Q8GbOtRpaA= - - - Resources/ReleaseNotesColorStyle.css - - hash2 - - dr1pmXWP2OUdF+a0gttDT5tHaMArA3r2vS46AAzoy8E= - - - Resources/SUStatus.nib - - hash2 - - msjlCHgfQ2V9V4Dt6Z5968eaMn6zeL/en7Mg22/5Pso= - - - Resources/ar.lproj/SUUpdateAlert.strings - - hash2 - - 33nOBJb6OPaZt3PKT2iUJ3RfF/c59DAGmt9TCQVn74A= - - optional - - - Resources/ar.lproj/SUUpdatePermissionPrompt.strings - - hash2 - - ku6BdTbNrkSmKEdwyNA1hmoKbQ3uRv8JR4LK4cjqgpA= - - optional - - - Resources/ar.lproj/Sparkle.strings - - hash2 - - yx9tkKjj3aOHvgdYCWXM89uhlyVeNb4oqcAenJxibwI= - - optional - - - Resources/ca.lproj/SUUpdateAlert.strings - - hash2 - - 18qLsTRnJfi0wDf6A85XbiMXGORSmuo9Ul3IK4m5gq0= - - optional - - - Resources/ca.lproj/Sparkle.strings - - hash2 - - q5q/aoEk+YqUvSwYTQoIFsLkOCGi0GrSU9M7jJjbFls= - - optional - - - Resources/cs.lproj/SUUpdateAlert.strings - - hash2 - - qSoDl0PIYv+OrSxtJfUYk9xeQihmzfaxAf+egKyw4y4= - - optional - - - Resources/cs.lproj/SUUpdatePermissionPrompt.strings - - hash2 - - obkk1c1EawdfEyPHqo5ddIzsUcWfClFUbg895zj3/Ag= - - optional - - - Resources/cs.lproj/Sparkle.strings - - hash2 - - jJ0IN1A7sFqS9MHzYIVu5VNP397YTaDN17HzroZOEtg= - - optional - - - Resources/da.lproj/SUUpdateAlert.strings - - hash2 - - aKNcPadrNnf7wuYmBAxoRzES9XhxXRHMrW/+9MtZBQs= - - optional - - - Resources/da.lproj/SUUpdatePermissionPrompt.strings - - hash2 - - xremLoAOqEfufOFyjOrH8S8ZkWwRklRhGCGB/igGD38= - - optional - - - Resources/da.lproj/Sparkle.strings - - hash2 - - LirzjdLk2XjCuG2WQSlj/+Ri7kuJWGCKHYjlAbEs/u8= + 73YTdzyClLg9zGR011Sb7oVsISY= optional - Resources/de.lproj/SUUpdateAlert.strings + Resources/nb.lproj/Sparkle.strings - hash2 + hash - A6JiLH5c4UX2iobAPXPHv7TLiBInrdHvtvqnnsTBxLI= + 7T4tgFrl8L5HKxsa3BqpxwlCbhk= optional - Resources/de.lproj/SUUpdatePermissionPrompt.strings + Resources/nl.lproj/Sparkle.strings - hash2 + hash - GPjZbm0EAKfj0CK7Pb1UITo5WoDzNpf4m2XELfj3eio= + UY6r83dXFBTjEJPz7f8LBsnDsHE= optional - Resources/de.lproj/Sparkle.strings + Resources/nn.lproj/Sparkle.strings - hash2 + hash - +s2Td5ADN+Rd4/RXNcTw6CpoP1A8s39Gg9Pe5+9bP+g= + 6TKcfDjDXy2w/l+WpcyN3q33OSs= optional - Resources/el.lproj/SUUpdateAlert.strings + Resources/pl.lproj/Sparkle.strings - hash2 + hash - utAXO7a8Od4ICYV3R0WQBa8ncUQ30SfruZACTuvyDxk= + kwySQYkh8n0leATrIoAeyTZy1+A= optional - Resources/el.lproj/SUUpdatePermissionPrompt.strings + Resources/pt-BR.lproj/Sparkle.strings - hash2 + hash - V0h7tXPJI0b1Z0FEMxe7RJIn2oWGg9QUhF/cRSz7aWE= + 3U7uJwAuTRuqm+USHgD2wJRNBDY= optional - Resources/el.lproj/Sparkle.strings + Resources/pt-PT.lproj/Sparkle.strings - hash2 + hash - lipDQYoREFmgYjH/L6Hxgq7ZUzqDs4eCf3uF9ud8V6o= + NEDnlPEQQ+nDbGRR+eWfCulsTxU= optional - Resources/en.lproj/SUUpdateAlert.strings + Resources/ro.lproj/Sparkle.strings - hash2 + hash - EBVS8ZfEIJxGSghO17emwoHQo0LVWWzBJMFs8RwvKWg= + x4LCBI0pkdA2fEOdYtnSRj/IVsI= optional - Resources/en.lproj/SUUpdatePermissionPrompt.strings + Resources/ru.lproj/Sparkle.strings - hash2 + hash - MN0HeTdXIxqALqUMUoLnVkRcDcvnDXqjsifU07tV3a8= + 8OsJ6WTQeMTV06mnU6nIp1Wyilc= optional - Resources/es.lproj/SUUpdateAlert.strings + Resources/sk.lproj/Sparkle.strings - hash2 + hash - 8KSmmlZHYEiMGUwXQRV+ZDxs07XmaeH4XIYI+di1ono= + 6LpsH87uTuP3IDgICCnsls9ljF0= optional - Resources/es.lproj/SUUpdatePermissionPrompt.strings + Resources/sl.lproj/Sparkle.strings - hash2 + hash - GEtUsrVDWqXyHAV8lWPrEUWQm30jetvOjJZdlI7egwQ= + sMh8m/GbzigzKc4IWFynhJZgZZw= optional - Resources/es.lproj/Sparkle.strings + Resources/sv.lproj/Sparkle.strings - hash2 + hash - a/q2vGBx2sEPgWuCojPnHLSaxlyIyFQScfSU9kJCW6I= + G2RCHl7W/Db88nHDTgDF9txwpeI= optional - Resources/fa.lproj/Sparkle.strings + Resources/th.lproj/Sparkle.strings - hash2 + hash - RySqsJrzYm/5ovwmAzh14SCylM/HQhMZnk/Ig1o7DkI= + lhtsbCs8a/YN8USZqRzAu6l+WKM= optional - Resources/fi.lproj/SUUpdateAlert.strings + Resources/tr.lproj/Sparkle.strings - hash2 + hash - O+ja0EMKj5RxMmW3TRALc9XTpMJ7Y7dwXm706E33rUA= + nQVohktMItLSG//uX50V1Q3tjNQ= optional - Resources/fi.lproj/SUUpdatePermissionPrompt.strings + Resources/uk.lproj/Sparkle.strings - hash2 + hash - MfjVC0QQ0Dxvz6Rt03EhMaahM5Gh5rhqMSJFEqzSRLo= + JGzTZrZVOFEmdPUU2nGug8+1Egg= optional - Resources/fi.lproj/Sparkle.strings + Resources/zh_CN.lproj/Sparkle.strings - hash2 + hash - O6+s8+GKGX06x08WB1v526jOSl30MEoNnzjhYKe4IA0= + dbIyYLSp4yp//GedSFqvRphj/hQ= optional - Resources/fr.lproj/SUUpdateAlert.strings + Resources/zh_HK.lproj/Sparkle.strings - hash2 + hash - Avyaxx14FRXq/CTIDvvF7uww42SRhYgNSc960h7MCfc= + pOF5S8gmyIzcm10+9C+ftwXKDW4= optional - Resources/fr.lproj/SUUpdatePermissionPrompt.strings + Resources/zh_TW.lproj/Sparkle.strings - hash2 + hash - qlNtkoH6vAA93/yxp8Stav74m46gvKb+3R26QDMSsXs= + K4S6DDgOxrxfX4yXTrJUP99SWmU= optional - Resources/fr.lproj/Sparkle.strings + + files2 + + Autoupdate - hash2 + cdhash - 7mKHxz1DsYdoE7f7nXPNJn+bKFSFhL/rtJ8v7kj4cbo= + Y5PWQvqGAUx8n4Ksz4bveQ3a6xI= - optional - + requirement + cdhash H"6393d642fa86014c7c9f82accf86ef790ddaeb12" or cdhash H"85a39bc15f811476c9c39a17e2365eeb1f88b58f" - Resources/he.lproj/SUUpdateAlert.strings + Headers/SPUDownloadData.h hash2 - WsgO6lp/qlATRSKTuRsgSEyWC3VdH7EHaf6dwQH2R7E= + yhS+aH6hPb1hSOt0tT6Rej2kQoPz6wrtntLOBuoIIJs= - optional - - Resources/he.lproj/SUUpdatePermissionPrompt.strings + Headers/SPUStandardUpdaterController.h hash2 - l8hApwbD8wJajAI7FMKOztb0glfifBsELIttJ0rut5I= + xb9sne2eIGRdDBQU8Gw0a/zVET43e9g8duKWBWHLVfs= - optional - - Resources/he.lproj/Sparkle.strings + Headers/SPUStandardUserDriver.h hash2 - b9A+ycAkv1kaeQx2DWRY6g/YF5OKutwp3OgZTqsnMJ8= + Y4fOofv2Ua1TAI9qM7wL8CalQGHLa1spvUNg9JB71NE= - optional - - Resources/hr.lproj/SUUpdateAlert.strings + Headers/SPUStandardUserDriverDelegate.h hash2 - L7shRNgdZIfbt5y5pioLEIo+A9I7VtgIUFpzoCFkB1I= + Y1CXvdztYvr7TNU5uykV9jSjdvcpl2aCQPwjVHZe+IQ= - optional - - Resources/hr.lproj/SUUpdatePermissionPrompt.strings + Headers/SPUUpdateCheck.h hash2 - 5x5zRCWzWYlbd7MkUcbPs5ZWrWQRDZnj3s9K2LmsnBw= + H30F2i5GYmOu/j4JEw5WsuZbiGJXnge5gpyb9e2SHAM= - optional - - Resources/hr.lproj/Sparkle.strings + Headers/SPUUpdatePermissionRequest.h hash2 - CDNSmpfDfg9ej5euTcVZn9qdwrITMM9eGHvazN/qaoI= + hnRNYPeaK0NWoKPXEYs2AoyD6QOE0CHDJWJxKM5Ma24= - optional - - Resources/hu.lproj/SUUpdateAlert.strings + Headers/SPUUpdater.h hash2 - 8LbsWTkMSczHFa4Rh9XZDRo0uCOyrV9VXUYEiEvnG7I= + aUXoztPF81lXMnFb/N7yAZwVBqFCFzf83J3FnvHpxUY= - optional - - Resources/hu.lproj/SUUpdatePermissionPrompt.strings + Headers/SPUUpdaterDelegate.h hash2 - twHi8JXysxao7MlTGr178ZpB8yz1mXkij2V5n8NJWSQ= + bUP8h5u5vMbDU68cKrno2Y22fRQTrOJp5Ipj2rHTSbc= - optional - - Resources/hu.lproj/Sparkle.strings + Headers/SPUUpdaterSettings.h hash2 - 0UBqgjXjtRG51lEacNaLTmNvj5aFUeJ7oo1J4WYkrCw= + GiYGeD+dxWuBIX54u11Tgrg9lNjritBVEN/4WWlE61M= - optional - - Resources/is.lproj/SUUpdateAlert.strings + Headers/SPUUserDriver.h hash2 - 04Q9PpqtuYz6kfVhf6eI9XBxJn0LQB9Ck/ceBq1ztGU= + I++Y+tlGVPYOGf28d6ougNs3KQAghISe/uZJ7eyFOLc= - optional - - Resources/is.lproj/SUUpdatePermissionPrompt.strings + Headers/SPUUserUpdateState.h hash2 - heK63dQF7YJvehrOEQk1jesq6v3bQBJy2jL+w5jjMlE= + Z4UKJcXMF/bUmSkIiM+D8jTiS8i5x1CLqoo4uG4aQvg= - optional - - Resources/is.lproj/Sparkle.strings + Headers/SUAppcast.h hash2 - 5/4A+HgH/PhUAQ3NVnURPeiIJsQYJyZ28sAObmxJlVU= + M3KUgO+Ud/n5t/rXjFYzQMUTPDA8fK7W46QQfuh5DnA= - optional - - Resources/it.lproj/SUUpdateAlert.strings + Headers/SUAppcastItem.h hash2 - 1zxkJlohqYtSJb0pj93fJXlPkedYm2IllbilGRDFo90= + vz8FZzMme+74ydZ2E7v8UlIK1XDwKATrL+tEfVF99A0= - optional - - Resources/it.lproj/SUUpdatePermissionPrompt.strings + Headers/SUErrors.h hash2 - XjyG4RGvcVUZia4jJHGYQEfgocs1iEx7iljn+vue5xY= + IdPofMbgIxKD7Bb94Ptqvb7kAPGfIR4ajS2zqO5bfbY= - optional - - Resources/it.lproj/Sparkle.strings + Headers/SUExport.h hash2 - VtrQu7072Gm3W1Ftss0bT1HaDNXans+x1OSpryBAnIw= + XO8CQmbFThLbYg949NEGhg3g+iouIw3/3+BCCLtEdFE= - optional - - Resources/ja.lproj/SUUpdateAlert.strings + Headers/SUStandardVersionComparator.h hash2 - +grczSeMRPV+Oh8FAj+IPqtvuOC4WhJdknfh0eNdHWM= + fUB7nOch1cZQ50HstpLnfxLvO14Y6oE29yRI6NcgjGw= - optional - - Resources/ja.lproj/SUUpdatePermissionPrompt.strings + Headers/SUUpdatePermissionResponse.h hash2 - pG/1lv3zRpIQkIlhEdvLHcTuPW/GfIPM8FALHstdt5c= + HScQok/zuc704lNfwGl1Csr6nigQLAsjeRJXG1HTuks= - optional - - Resources/ja.lproj/Sparkle.strings + Headers/SUUpdater.h hash2 - 9/986n4BuwYWJvE7kvt3dEFYcqRUBomWR9K/VRhqVCY= + lvb1mNWCyofJ0X88zXvMsK5PBXrG6Pr7hUrY0E3jNvY= - optional - - Resources/ko.lproj/SUUpdateAlert.strings + Headers/SUUpdaterDelegate.h hash2 - /sIr/9ihcLhTxpc9CG0ZmCyhtI5lxHnRU2AY2Z7KjnA= + oaCMM/1B690QWRbYGB0iJBf5/toBzcQq+moxURBs3jY= - optional - - Resources/ko.lproj/SUUpdatePermissionPrompt.strings + Headers/SUVersionComparisonProtocol.h hash2 - Q6RJbOzFDzk17QpGPfUciOrtuitReWCBlt8ucofX2AM= + KLu0JKx6uB4rk/YeNZ/vo+0J1qONCyZQBNIQPA9GvbQ= - optional - - Resources/ko.lproj/Sparkle.strings + Headers/SUVersionDisplayProtocol.h hash2 - +FiqGTbCIl9mzgETQukEUOwPP+yCyIhH1rVtteYpRFk= + PyPE+5u9vBlxRYDuTdf3P/wxQ26nM8m7MIw/dOerUSw= - optional - - Resources/nb.lproj/SUUpdateAlert.strings + Headers/Sparkle.h hash2 - RQbKlvLGnVjjVMP5eHHNUCv5kLJl4EA6zNGdDKatbH0= + OkQqMusip3u1oI5hrGeNr/32xpfTMCC4Kmg7r0Aijgw= - optional - - Resources/nb.lproj/SUUpdatePermissionPrompt.strings + Modules/module.modulemap hash2 - F85iUA2aHbvo23Z0jJ/T/pwJ2HOQdYD5eRyAow9cSgY= + K8rh62bVXcSfWKz+hWN1pbvJHG6DvbKY0ZRCrmJkz6Y= - optional - - Resources/nb.lproj/Sparkle.strings + Modules/module.private.modulemap hash2 - HaK7lCMSQ/6QAhjF2NPsMSHsIjD4gGVRyno7LU4CfkI= + 2x1g9XtDqesX81UPVyCsU0ZtQ4U2hnD7UUjaW3H0Pzo= - optional - - Resources/nl.lproj/SUUpdateAlert.strings + PrivateHeaders/SPUAppcastItemStateResolver.h hash2 - tp3fY8ogv+xcQOFkz5BkDNTZHIaRrhGgT9uKfCjDB70= + HDvimACMGXV647Jwg2IqAFvOgJoB8G0sdPbeoW8yFO4= - optional - - Resources/nl.lproj/SUUpdatePermissionPrompt.strings + PrivateHeaders/SPUGentleUserDriverReminders.h hash2 - Yrwc9ESTayZoqv2JWm0nD1IHGLeAiBncPc2OeaVz8J8= + 9W2dJ38WQX151mpIS0r8/EfCqZV6jEh621xwna2JVAI= - optional - - Resources/nl.lproj/Sparkle.strings + PrivateHeaders/SPUInstallationType.h hash2 - 0FzLPeENJRrP48p4R9sZQ8Idb7RSPgGfxKfo3G7hHPQ= + eSRnJrGHhArw4ip9KaIVo3bknF8bHywhkQaEY3RbLmo= - optional - - Resources/nn.lproj/SUUpdateAlert.strings + PrivateHeaders/SPUStandardUserDriver+Private.h hash2 - dpngnl3ALnXwnnfHDsUnHAQGvaHux00hwlsOA/Q+Ixs= + rMdk5zH+nm0wf+Mt6k0GtFGWQiXCsql0WiPwNanN6q0= - optional - - Resources/nn.lproj/SUUpdatePermissionPrompt.strings + PrivateHeaders/SPUUserAgent+Private.h hash2 - V7VdecLbSo5sr8pMVUBnsJ04no1tM8XXsU/SHRWphs8= + DD6nxqq6syhA5BxWuyLPq03uTd4zAmA7b0q6msG1hQw= - optional - - Resources/nn.lproj/Sparkle.strings + PrivateHeaders/SUAppcastItem+Private.h hash2 - l74nJ72QXsvfX67e7wiYv5R75YhNPEYYmhQRUPZgS0k= + 9H7OIT9nEoYXUBBcvTZdSOzlq81uWIUS8Mqjuhfz9Ww= - optional - - Resources/pl.lproj/SUUpdateAlert.strings + PrivateHeaders/SUInstallerLauncher+Private.h hash2 - oB2rGM/SPnJLdvhUz2CJfm8TS6XhrhmHD2gFyrVSq8U= + yy6cRl8IqwMJwr86TS98NdnHb/WkSAaUcAoiKYUg3ZQ= - optional - - Resources/pl.lproj/SUUpdatePermissionPrompt.strings + Resources/Base.lproj/Sparkle.strings hash2 - ubFfFWaG2RKXgeGR4DRtvbY0fH+SNJZzBebSPCo6K5c= + YZw/ZVAcTXLxrxnctwYfAtitJIAz+Eycbm+ul8+Iwnw= - optional - - Resources/pl.lproj/Sparkle.strings + Resources/Info.plist hash2 - T2dYzgWycdgWtM2GradgZ/AVnqEQO2SoegYAL0W2blQ= + uV/ETgVxkAr91fEsDAJh8ndn3Fbp0r4IlmmWzTnR2Lw= - optional - - Resources/pt-BR.lproj/SUUpdateAlert.strings + Resources/ReleaseNotesColorStyle.css hash2 - hDN04zbJliR6KRqEv4lEuAVNTjbkmyYUpKjCbWKaKdU= + dr1pmXWP2OUdF+a0gttDT5tHaMArA3r2vS46AAzoy8E= - optional - - Resources/pt-BR.lproj/SUUpdatePermissionPrompt.strings + Resources/SUStatus.nib hash2 - 6NvKj6GmzGQLAsGBC6IUvRBoLSRfEJuWi7ZitoTyoTk= + Qd5rCHQjMKfxN9BfliN2b7KXpOro8kFotf6JbmgnSLI= - optional - - Resources/pt-BR.lproj/Sparkle.strings + Resources/SUUpdateAlert.nib hash2 - v/+cq4Y3AZRgzPAw+Uayb16a/B4DsW9CREPLZ0ZeAzU= + RdxbkmhTqm4jEyi6s+NLfAaGwEuSIe94p3qvlyb9vs8= - optional - - Resources/pt-PT.lproj/SUUpdateAlert.strings + Resources/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib hash2 - gto4ribWYRWZl0Eez6/7XZg3EesExPlGb5Nz1YVTuzE= + pp/j4iAKxPCcaXDXKYZquxKXc+Gd2az8d54SLo972cU= - optional - - Resources/pt-PT.lproj/SUUpdatePermissionPrompt.strings + Resources/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib hash2 - st4wdNoLjj5sVIFHqDAh3cjRFhxhpzkcFP7AJSXjYkw= + 3hPMTRyHFd+VkmEv13rM90gZp79xeICeTqc4epB8jQM= - optional - - Resources/pt-PT.lproj/Sparkle.strings + Resources/ar.lproj/Sparkle.strings hash2 - HLPjh7OJ3y4u8VF5tWq4uwlZM+WN+R36xnBspxYufA0= + RBGCeHRxo5mJCARFFf4T6SIw7ap+JzBjjnKklhD1bLo= optional - Resources/ro.lproj/SUUpdateAlert.strings + Resources/ca.lproj/Sparkle.strings hash2 - PZZnueQNOLmQuEtkELhzxhnG+MDu7RyeOaySHSoHmYU= + ftDVyjAGSafxMwQBUAjy3t6YrXQ6YlwX1aX+2swaOxo= optional - Resources/ro.lproj/SUUpdatePermissionPrompt.strings + Resources/cs.lproj/Sparkle.strings hash2 - IkIaDJ/HgpnBNNkP+MF2JGSd+rNgAI+o9c2aNor+ewo= + aeYwD/MntNxFUvqjbSprK9CeSQYdvEEgwBxJMg98wio= optional - Resources/ro.lproj/Sparkle.strings + Resources/da.lproj/Sparkle.strings hash2 - Yxv56WlVa4Rme1qqV2WWPKFO1L5YcTZlpmPGMIYNxy0= + jQ/2m3lGAYX5QTcmVUM7rTk09J5jvvC0FxvWbaceVfA= optional - Resources/ru.lproj/SUUpdateAlert.strings + Resources/de.lproj/Sparkle.strings hash2 - wdiMmOcek4MJvdl1u2OoccWD56zCu2lKDGUd40bnMb8= + BUTrh26VvDMjBWk/GGgcoksRxFi78KRTA7bPDJDC04I= optional - Resources/ru.lproj/SUUpdatePermissionPrompt.strings + Resources/el.lproj/Sparkle.strings hash2 - /uARbwIQFupNOZvlyWgeE722GAsKcu4/QooLAEGHCBQ= + Y4mBpPCV2LHau2Iw1FLkcDWXEbgYA7xd+MIeEhH9N1c= optional - Resources/ru.lproj/Sparkle.strings + Resources/es.lproj/Sparkle.strings hash2 - PuJX1B8K6ruacb5r12BMc806qHX0YYUsdKzIQFfDxHE= + MM8rGNMHlpYdiNookp0IxizkWQRVPQBHAod9x0Sb8N8= optional - Resources/sk.lproj/SUUpdateAlert.strings + Resources/fa.lproj/Sparkle.strings hash2 - FDJ/dTwG5X34BF9lDDkFVGJUwpLeKi1MUbF072nYass= + 7Z3anicfepe4p/Mn5xobbQbl4GGzZ+faPRU+R9wxkmM= optional - Resources/sk.lproj/SUUpdatePermissionPrompt.strings + Resources/fi.lproj/Sparkle.strings hash2 - xa+UPXIC+og1IpGE6bA/+51E2uR9ZG+HGWKFA83tTNU= + wUr5usP85DYiKk6id6emwPm0Ky2ErO6nXnWM51OKyuI= optional - Resources/sk.lproj/Sparkle.strings + Resources/fr.lproj/Sparkle.strings hash2 - qSS0yMxRzil00PjSBaev/rOo2hIw2L3weCw7KuC3WPA= + PVVNzRZ7CF4lp1JIUz8h84lZOurOkSq5lSyCX/4UHOE= optional - Resources/sl.lproj/SUUpdateAlert.strings + Resources/he.lproj/Sparkle.strings hash2 - OAq7ojI6K/xR4nFEK1OBTiJeNaHqgb8xCgzZ5Y3P7Uo= + a58iUXsz4VnPDyHogSZWCJECP9dmLTBU7o/1CdyNV3c= optional - Resources/sl.lproj/SUUpdatePermissionPrompt.strings + Resources/hr.lproj/Sparkle.strings hash2 - ik4klDAQYgMT5hrecUkfi+K/tuGyvOYk96xp+z98l74= + kgBBOAoIs7pQ1E6Kg/Wd5VETmEWnJ0jVjyOHxlkgszo= optional - Resources/sl.lproj/Sparkle.strings + Resources/hu.lproj/Sparkle.strings hash2 - Q4g17Sb7/h2sQcSt3m+NyotwcVYQs7Bni47UBAs/+2c= + zCoW5NSHxvqzV7T30Pu/fsiCNxshMEE//LG2nNVA0s8= optional - Resources/sv.lproj/SUUpdateAlert.strings + Resources/is.lproj/Sparkle.strings hash2 - LYXEBB7MF82Ig5MgIM9pTtJJAYJL51nzYzbVW1kdSGI= + QD/rpQNBDpRVzQ6q/lkqJXbu2yQTDM8s2xPdpLEB+H4= optional - Resources/sv.lproj/SUUpdatePermissionPrompt.strings + Resources/it.lproj/Sparkle.strings hash2 - XDORKepHKWfDihFVMFnshPW/qjSLPLoU/zHqJQbRoBk= + ebRdrCCemz/qt7Sd60inR8QSENG5jIQCTWzeP0aovXg= optional - Resources/sv.lproj/Sparkle.strings + Resources/ja.lproj/Sparkle.strings hash2 - nidShaf5BKX1wQntkXeQhcGQoWUzNgVQhfHSM44GXVM= + s2TVTMkcWj7e122JpNrjS520xktqb0ZxywiFY+pC2V8= optional - Resources/th.lproj/SUUpdateAlert.strings + Resources/ko.lproj/Sparkle.strings hash2 - dvWO9t2NYZ+cQoe/9B3Tib+EPOdPp4wgatHaVVhu8gQ= + bS31EU0bktOwfcALDlR3BnURlYyGz8le0lJ2s7TML4U= optional - Resources/th.lproj/SUUpdatePermissionPrompt.strings + Resources/nb.lproj/Sparkle.strings hash2 - mxCL8k437ikdUpl3px2Ii/2fZqL85x1Fn/xe7h1YI6E= + 728NyukMRAtH7OCZCenN818zg/NOcqYUyMXAdS7L/+A= optional - Resources/th.lproj/Sparkle.strings + Resources/nl.lproj/Sparkle.strings hash2 - NLP4i+CKF5ehWqBBJuaKp5e5s4ghXesi+SNu1fKjhKY= + b2ug0CTYgHCaYxXvOmWYwLJn4EEIHT4yX30iFeW0HTE= optional - Resources/tr.lproj/SUUpdateAlert.strings + Resources/nn.lproj/Sparkle.strings hash2 - LbuuEfntGOLEDD5x0g9XHJ0C/aSUk14ltYe7Lr8tBXQ= + HbjGhTpVCqJTgtotVUMaHB0wjWo3Z2xPhZPMFjP4pa4= optional - Resources/tr.lproj/SUUpdatePermissionPrompt.strings + Resources/pl.lproj/Sparkle.strings hash2 - cPWCofME3hhaqw5W8btHUEa2OMuG1gW/GQTnXET0/m0= + XFSz+OHrMCbhQucQ4hZ/L4Obc6ta1/GHGSMPM65oKqk= optional - Resources/tr.lproj/Sparkle.strings + Resources/pt-BR.lproj/Sparkle.strings hash2 - nDvfKMpj859i2WgGrsJ7SU8aApnABAX4fI6Oi8XgFRE= + /dktcHwswJigkZpLU+vxJoQm9rZOP9DVRP2Bouf1PJ0= optional - Resources/uk.lproj/SUUpdateAlert.strings + Resources/pt-PT.lproj/Sparkle.strings hash2 - lR6DOvFkMHpmbtXQJNE1aXtRXgBbd0siVMoq01D4dhM= + /JWFMtJqjh50Yi0/VY/CahKADoxJ+2FK/Q4Yg6zORwA= optional - Resources/uk.lproj/SUUpdatePermissionPrompt.strings + Resources/ro.lproj/Sparkle.strings hash2 - +MphWMKEy2hsIqrjroJQcq+x1mytcNeZm+z3Lv+ll6A= + sr8GQiLDijZysB/glAb3mXGMsPxOcVEhZiY51v3+pu0= optional - Resources/uk.lproj/Sparkle.strings + Resources/ru.lproj/Sparkle.strings hash2 - zIBA0lJgtMZBvE35PSaFseeRbAuXK8+hs8f1K15msRY= + cZOvKOsqCbn+cRnPYGWiFQxlkJcbIvmMVvNWzZCFGSM= optional - Resources/zh_CN.lproj/SUUpdateAlert.strings + Resources/sk.lproj/Sparkle.strings hash2 - NXEAoNAKcjI5GBtGxYcUXmtz+rP06ocJSSVlaR/lnMA= + 4Vjaqk8/kbV87gWriW8sG8RnMXkyzFO7fAHn2u6eUjg= optional - Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings + Resources/sl.lproj/Sparkle.strings hash2 - 8co96MJCMuKNvaPFe13uh2d028P/Cgpa8iOiNml9rfE= + xidwxgSmyMieKDNXyLMi2M5qhfTYXAkAIEgzH2X42YA= optional - Resources/zh_CN.lproj/Sparkle.strings + Resources/sv.lproj/Sparkle.strings hash2 - nporciTF4tpZdmXibARMfweij3VC0/ffScoI32t3h1E= + SiGtW8+Ng20mVxDC5KCmTwfJVR8cSWlNZzSpMdI+/Tk= optional - Resources/zh_HK.lproj/SUUpdateAlert.strings + Resources/th.lproj/Sparkle.strings hash2 - zegYIhIFwtdJa87mjTlkalyYSz31LrnhiwNWDJDPqBU= + S2yNwqtpoEJd46qdw4bGU5NI45g+R6oQ+UwX40WhV6U= optional - Resources/zh_HK.lproj/SUUpdatePermissionPrompt.strings + Resources/tr.lproj/Sparkle.strings hash2 - 54ogzTvsgJOl4aSWIQRzRzky1TddmGlpamTLhHMJWb0= + sEDT8C00HroEfBXfyvtgQG0IRwlqlEZuyrUS3PsWq7U= optional - Resources/zh_HK.lproj/Sparkle.strings + Resources/uk.lproj/Sparkle.strings hash2 - K0EiYSQbTZEZG84QzfFr0YmJT6Lx8z0y63vYBmojCzc= + /0TVhjWz6ECdVLQrcsh2pD4X+pj26pazJYO56Ix0erY= optional - Resources/zh_TW.lproj/SUUpdateAlert.strings + Resources/zh_CN.lproj/Sparkle.strings hash2 - jdmB9inrJUf1OmYmVnORSMfdz5z1SWmBtdv39I776K4= + LFbK30YdedD3IeTujnfcjGtRW8I7H8bBnk2c2NYjSts= optional - Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings + Resources/zh_HK.lproj/Sparkle.strings hash2 - 4tCLZKKcNuOJ1up1IgFXUeEp7s5U5BOBGHC1EZMyrhE= + xhUgQyH+98U/9/rbdxZzftY8yjXuRYQFD4xOt7yGAcs= optional @@ -2116,7 +917,7 @@ hash2 - f9/Ie/kQ1VCKt2xveY7KlxJq9G1Qy/LttGgtIfSoxsk= + U+GCJc/NU6NC7Bag/gFl7S4ijGjP8867ve46HoM6fuI= optional @@ -2125,28 +926,28 @@ cdhash - hgqdqSJKiC72OINHzBKQdH/kUMo= + l5E4CfSBGNguJ6vOrWhWpVhjNlg= requirement - cdhash H"860a9da9224a882ef6388347cc1290747fe450ca" or cdhash H"0aee5266308de5eb155033b2a74bf37d6591569a" + cdhash H"97913809f48118d82e27abcead6856a558633658" or cdhash H"b6618259ab95c3b21aa9cd901f8f046b7c34bec2" XPCServices/Downloader.xpc cdhash - rzbdk6/kj7md9qiwOdSKKy5RTv4= + e2dV+oRxZRH3edz1gxJIvX1HasM= requirement - cdhash H"af36dd93afe48fb99df6a8b039d48a2b2e514efe" or cdhash H"e2247c8ac568d5dc90b6af02828fb6bfed800882" + cdhash H"7b6755fa84716511f779dcf5831248bd7d476ac3" or cdhash H"e231d774825787988699c19d347e14cf6dc06139" XPCServices/Installer.xpc cdhash - cEeLZtkcKkxQwVXALAU01/pu8kk= + YBxu05hSbz7k4FC1kf19qiSi1Xs= requirement - cdhash H"70478b66d91c2a4c50c155c02c0534d7fa6ef249" or cdhash H"e15aca1cf22ca1821e482d7c090fb266860fbf17" + cdhash H"601c6ed398526f3ee4e050b591fd7daa24a2d57b" or cdhash H"d0c1abf380c558a6104d0a5b222301cde03b17a2" rules