diff --git a/.gitignore b/.gitignore index 5e16a7f..3398426 100644 --- a/.gitignore +++ b/.gitignore @@ -41,7 +41,7 @@ Temporary Items _ obj .theos -packages/*.ipa +packages # End of https://www.toptal.com/developers/gitignore/api/macos,theos-tweak diff --git a/Makefile b/Makefile index c1f3cf2..a051c7c 100644 --- a/Makefile +++ b/Makefile @@ -14,4 +14,4 @@ BHInsta_CFLAGS = -fobjc-arc -Wno-unsupported-availability-guard -Wno-unused-valu include $(THEOS_MAKE_PATH)/tweak.mk -SUBPROJECTS += libflex \ No newline at end of file +BHInsta_SUBPROJECTS += modules/libflex \ No newline at end of file diff --git a/README.md b/README.md index 704c288..d2ed52c 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ A feature-rich tweak for Instagram on iOS!\ - [Homebrew](https://brew.sh/#install) - [CMake](https://formulae.brew.sh/formula/cmake#default) (brew install cmake) - [Theos](https://theos.dev/docs/installation) -- [Azule](https://github.com/Al4ise/Azule/wiki) +- [pyzule](https://github.com/asdfzxcvbn/pyzule?tab=readme-ov-file#installation) ## Setup 1. Install iOS 14.5 frameworks for theos diff --git a/build.sh b/build.sh index 25190ec..9282063 100755 --- a/build.sh +++ b/build.sh @@ -1,8 +1,17 @@ #!/usr/bin/env bash -PROJECT_PATH=$(pwd) CMAKE_OSX_ARCHITECTURES="arm64e;arm64" +ipaFile="$(find ./packages/*com.burbn.instagram*.ipa -type f -exec basename {} \;)" + +if [ -z "${ipaFile}" ]; then + echo -e '\033[1m\033[0;31m./packages/com.burbn.instagram.ipa not found.\nPlease put a decrypted Instagram IPA in its path.\033[0m' + exit 1 +elif [ -z "$(ls -A modules/libflex/FLEX)" ]; then + echo -e '\033[1m\033[0;31mFLEX submodule not found.\nPlease run the following command to checkout submodules:\n\n\033[0m git submodule update --init --recursive' + exit 1 +fi + echo -e '\033[1m\033[32mBuilding BHInsta tweak for sideloading (as IPA)\033[0m' make clean @@ -10,14 +19,6 @@ rm -rf .theos make # IPA File -ipaFile="$(find ./packages/*com.burbn.instagram*.ipa -type f -exec basename {} \;)" - -if [ -n "${ipaFile}" ]; then - - echo -e '\033[1m\033[32mBuilding the IPA.\033[0m' - azule -i "$PROJECT_PATH/packages/${ipaFile}" -o "$PROJECT_PATH/packages" -n BHInsta-sideloaded -r -f "$PROJECT_PATH/.theos/obj/debug/BHInsta.dylib" "$PROJECT_PATH/packages/Cephei.framework" "$PROJECT_PATH/packages/CepheiUI.framework" "$PROJECT_PATH/packages/CepheiPrefs.framework" "$PROJECT_PATH/modules/libflex/.theos/obj/debug/libbhFLEX.dylib" - - echo -e "\033[1m\033[32mDone, we hope you enjoy BHInsta!\033[0m\n\nYou can find the ipa file at: $PROJECT_PATH/packages" -else - echo -e '\033[1m\033[0;31m./packages/com.burbn.instagram.ipa not found.\nPlease put a decrypted Instagram IPA in its path.\033[0m' -fi \ No newline at end of file +echo -e '\033[1m\033[32mBuilding the IPA.\033[0m' +pyzule -i "packages/${ipaFile}" -o packages/BHInsta-sideloaded -uwsgf .theos/obj/debug/BHInsta.dylib .theos/obj/debug/libbhFLEX.dylib -m 15.0 +echo -e "\033[1m\033[32mDone, we hope you enjoy BHInsta!\033[0m\n\nYou can find the ipa file at: $(pwd)/packages" diff --git a/modules/libflex/Makefile b/modules/libflex/Makefile index e557011..74b783a 100644 --- a/modules/libflex/Makefile +++ b/modules/libflex/Makefile @@ -1,4 +1,4 @@ -export ARCHS = arm64 arm64e +export ARCHS = arm64 TARGET := iphone:clang:latest:14.0 include $(THEOS)/makefiles/common.mk diff --git a/packages/Cephei.framework/Cephei b/packages/Cephei.framework/Cephei deleted file mode 100755 index e293bf9..0000000 Binary files a/packages/Cephei.framework/Cephei and /dev/null differ diff --git a/packages/Cephei.framework/Headers/Cephei.h b/packages/Cephei.framework/Headers/Cephei.h deleted file mode 100644 index 7c49ca9..0000000 --- a/packages/Cephei.framework/Headers/Cephei.h +++ /dev/null @@ -1,8 +0,0 @@ -#import "HBOutputForShellCommand.h" -#import "HBPreferences.h" -#import "HBRespringController.h" -#import "NSDictionary+HBAdditions.h" -#import "NSLayoutConstraint+CompactConstraint.h" -#import "NSString+HBAdditions.h" -#import "UIColor+HBAdditions.h" -#import "UIView+CompactConstraint.h" diff --git a/packages/Cephei.framework/Headers/HBOutputForShellCommand.h b/packages/Cephei.framework/Headers/HBOutputForShellCommand.h deleted file mode 100644 index e238915..0000000 --- a/packages/Cephei.framework/Headers/HBOutputForShellCommand.h +++ /dev/null @@ -1,19 +0,0 @@ -#import - -NS_ASSUME_NONNULL_BEGIN - -/// Executes a shell command and returns its output. -/// -/// @param command The shell command to run. -/// @param returnCode A pointer to an integer that will contain the return code of the command. -/// @return The output of the provided command. -FOUNDATION_EXPORT NSString * _Nullable HBOutputForShellCommandWithReturnCode(NSString *command, int *returnCode); - -/// Executes a shell command and returns its output. -/// -/// @param command The shell command to run. -/// @return The output of the provided command, or nil if the command returned with a code other -/// than 0. -FOUNDATION_EXPORT NSString * _Nullable HBOutputForShellCommand(NSString *command); - -NS_ASSUME_NONNULL_END diff --git a/packages/Cephei.framework/Headers/HBPreferences.h b/packages/Cephei.framework/Headers/HBPreferences.h deleted file mode 100644 index 6bd3bdb..0000000 --- a/packages/Cephei.framework/Headers/HBPreferences.h +++ /dev/null @@ -1,529 +0,0 @@ -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -typedef void (^HBPreferencesChangeCallback)(void); - -typedef void (^HBPreferencesValueChangeCallback)(NSString *key, id _Nullable value); - -/// The HBPreferences class in Cephei provides an interface for managing user-defined -/// preferences of a tweak, and the default values used when the user has not yet changed a value. -/// -/// `HBPreferences` is very similar to `NSUserDefaults`, however it is specifically tailored to iOS -/// tweak development, since tweaks may be loaded into a sandboxed process (most obviously, App -/// Store apps, but also system apps like Safari), or one that runs as the `root` user (for -/// instance, iFile, although these apps are slowly changing their model so they now run as mobile). -/// In both of these cases, using `NSUserDefaults` will result in reading from preferences inside -/// the sandbox, or inside `root`’s home directory; both of which are not what is expected. -/// -/// Advantages `HBPreferences` has over `NSUserDefaults` are: -/// -/// - Directly reading the property list from the `mobile` user’s home directory, to support -/// sandboxed apps and apps running as `root`. -/// - Intuitive method of setting a default preference value. -/// - Updating of the app/tweak’s variables when preferences are changed. -/// - Keyed subscripting is allowed, which enables simple array syntax. -/// - Values in the preferences plist are called preferences, not defaults, to avoid ambiguity - -/// `NSUserDefaults` uses “defaults” to refer to both preferences themselves and the fallback values -/// if a key doesn’t exist. -/// -/// Ensure you read the discussion for `-registerObject:default:forKey:` before using the automatic -/// updating mechanism. `-objectForKey:` does not update as another process updates the preferences -/// on iOS 7 or older; if you need to support older iOS versions, use the registration methods -/// instead. -/// -/// As of Cephei 1.17, HBPreferences supports Key-Value Observation. As such, you may subscribe to -/// changes made to preferences through observer callbacks. The `-registerPreferenceChangeBlock:` -/// and `-registerPreferenceChangeBlockForKey:block:` methods are provided to subscribe to -/// preference changes via a callback block since Cephei 1.3, and you can additionally observe -/// `HBPreferencesDidChangeNotification`. -/// -/// ### Example usage -/// In Objective-C/Logos: -/// -/// ```logos -/// HBPreferences *preferences; -/// BOOL doThing; -/// -/// %ctor { -/// preferences = [[HBPreferences alloc] initWithIdentifier:@"ws.hbang.common.demo"]; -/// [preferences registerDefaults:@{ -/// @"Enabled": @YES, -/// @"AnotherSetting": @1.f -/// }]; -/// -/// [preferences registerBool:&doThing default:NO forKey:@"DoThing"]; -/// -/// NSLog(@"Am I enabled? %i", [preferences boolForKey:@"Enabled"]); -/// NSLog(@"Can I do thing? %i", doThing); -/// } -/// ``` -/// -/// In Swift: -/// -/// ```swift -/// class Preferences { -/// -/// private let preferences = HBPreferences(identifier: "ws.hbang.common.demo") -/// -/// // Example using registration method -/// private(set) var canDoThing: ObjCBool = false -/// -/// // Example using custom getter and setter -/// var anotherSetting: Int { -/// get { preferences["AnotherSetting"] as? Int ?? -1 } -/// set { preferences["AnotherSetting"] = newValue } -/// } -/// -/// // Example using KVO observation -/// private var doThingObserver: NSKeyValueObserving? -/// -/// init() { -/// preferences.register(defaults: [ -/// "Enabled": true, -/// "AnotherSetting": 1 -/// ]) -/// -/// preferences.register(&canDoThing, default: false, forKey: "DoThing") -/// -/// print("Am I enabled? \(preferences["Enabled"] as? Bool ?? false)") -/// print("Can I do thing? \(canDoThing)") -/// } -/// -/// } -/// ``` -/// -/// ### References -/// * [NSUserDefaults in Practice](http://dscoder.com/defaults.html) -/// -/// ### Security -/// As of Cephei 1.12, HBPreferences restricts most Apple preferences (identifiers starting with -/// `com.apple.…`) from being read/written from a sandboxed process. This protects against a -/// malicious app using HBPreferences as a way to gather sensitive information or change system -/// preferences without the user’s knowledge. For instance, an App Store app could -/// [phish for the user’s Apple ID login](https://krausefx.com/blog/ios-privacy-stealpassword-easily-get-the-users-apple-id-password-just-by-asking), -/// creating a very real-looking login prompt by pre-filling their email address in the username box, -/// or gain access to the numbers/email addresses of people the user has recently contacted. -/// -/// There is currently no way to avoid this restriction while still using HBPreferences. If you need -/// access to Apple preferences, design your code to not need to do this from within the sandbox. -/// This could be done [using IPC](http://iphonedevwiki.net/index.php/IPC) from an unsandboxed -/// process such as SpringBoard. Avoid sending sensitive information via IPC to sandboxed apps, as -/// they can still get access to data you send through various ways. -@interface HBPreferences : NSObject - -/// @name Initializing an HBPreferences Object - -/// Creates an instance of the class for the specified identifier. -/// -/// @param identifier The identifier to be used. This is usually the same as the package identifier -/// of the tweak. -/// @return An autoreleased instance of HBPreferences for the specified identifier. -+ (instancetype)preferencesForIdentifier:(NSString *)identifier NS_SWIFT_UNAVAILABLE(""); - -/// Initializes an instance of the class for the specified identifier. -/// -/// @param identifier The identifier to be used. This is usually the same as the package identifier -/// of the tweak. -/// @return An autoreleased instance of HBPreferences for the specified identifier. -- (instancetype)initWithIdentifier:(NSString *)identifier NS_DESIGNATED_INITIALIZER; - -/// The preferences identifier provided at initialisation. -@property (nonatomic, retain, readonly) NSString *identifier; - -/// @name Synchronizing Preferences - -/// Synchronizes preferences data to prevent race conditions. -/// -/// On iOS 8.0 and later, waits until all communications between the `cfprefsd` daemon and the -/// current process have completed, preventing race conditions and guaranteeing no data will be -/// lost. Prior to iOS 8.0, writes all pending changes to disk, and reads latest preferences from -/// disk. -/// -/// Deprecated. On iOS 12.0 and later, synchronization is -/// [no longer required](https://developer.apple.com/documentation/ios-ipados-release-notes/foundation-release-notes#UserDefaults). -/// The underlying CFPreferencesSynchronize() function simply returns `YES`. -/// -/// For earlier iOS releases, do not use this method directly unless you have a specific need. -/// HBPreferences will synchronize automatically when needed. For further information on what this -/// method does and when to use it, refer to -/// [NSUserDefaults in Practice](http://dscoder.com/defaults.html) § “Sharing Defaults Between -/// Programs”. -/// -/// @return `YES` if synchronization was successful, `NO` if an error occurred. -- (BOOL)synchronize API_DEPRECATED("Synchronization is no longer required as of iOS 12", ios(5.0, 12.0)); - -/// @name Registering Default Preference Values - -/// The default preferences to be used when no value has been set by the user. -/// -/// You may modify the values of this dictionary directly. -@property (nonatomic, copy, readonly) NSMutableDictionary *defaults; - -/// Adds the contents of the specified dictionary to the defaults property. -/// -/// Merges the provided dictionary with the mutable dictionary found on the defaults property. -/// -/// @param defaultValues The dictionary of keys and values you want to register. -/// @see `defaults` -- (void)registerDefaults:(NSDictionary *)defaultValues NS_SWIFT_NAME(register(defaults:)); - -/// @name Getting Preference Values - -/// Returns a dictionary that contains all preferences that are set. -/// -/// This does not include default values. -/// -/// @return A dictionary containing all keys and values. -- (NSDictionary *)dictionaryRepresentation; - -/// Returns the object associated with the specified key. -/// -/// If the preference is not yet set, returns the default. If no default is set, returns `nil`. -/// -/// @param key The key for which to return the corresponding value. -/// @return The object associated with the specified key. -/// @warning You must manually synchronize preferences or use `-registerObject:default:forKey:` for -/// this value to be updated when running on iOS 7 or older. -- (id)objectForKey:(NSString *)key; - -/// Returns the integer value associated with the specified key. -/// -/// If the preference is not yet set, returns the default. If no default is set, returns `nil`. -/// -/// @param key The key for which to return the corresponding value. -/// @return The integer value associated with the specified key. -/// @see `-objectForKey:` -- (NSInteger)integerForKey:(NSString *)key; - -/// Returns the unsigned integer value associated with the specified key. -/// -/// If the preference is not yet set, returns the default. If no default is set, returns `nil`. -/// -/// @param key The key for which to return the corresponding value. -/// @return The unsigned integer value associated with the specified key. -/// @see `-objectForKey:` -- (NSUInteger)unsignedIntegerForKey:(NSString *)key; - -/// Returns the floating-point value associated with the specified key. -/// -/// If the preference is not yet set, returns the default. If no default is set, returns `nil`. -/// -/// @param key The key for which to return the corresponding value. -/// @return The floating-point value associated with the specified key. -/// @see `-objectForKey:` -- (CGFloat)floatForKey:(NSString *)key; - -/// Returns the double value associated with the specified key. -/// -/// If the preference is not yet set, returns the default. If no default is set, returns `nil`. -/// -/// @param key The key for which to return the corresponding value. -/// @return The double value associated with the specified key. -/// @see `-objectForKey:` -- (double)doubleForKey:(NSString *)key; - -/// Returns the Boolean value associated with the specified key. -/// -/// If the preference is not yet set, returns the default. If no default is set, returns `nil`. -/// -/// @param key The key for which to return the corresponding value. -/// @return The Boolean value associated with the specified key. -/// @see `-objectForKey:` -- (BOOL)boolForKey:(NSString *)key; - -/// Returns the value associated with a given key. -/// -/// This method behaves the same as `-objectForKey:`, and enables the preferences object to be used -/// with a subscript (square brackets). For example: -/// -/// Objective-C: -/// -/// ```objc -/// NSString *fooBar = preferences[@"FooBar"]; -/// preferences[@"Awesome"] = @YES; -/// ``` -/// -/// Swift: -/// -/// ```swift -/// let fooBar = preferences["FooBar"] as? String -/// preferences["Awesome"] = true -/// ``` -/// -/// @param key The key for which to return the corresponding value. -/// @return The value associated with the specified key. -/// @see `-objectForKey:` -- (id)objectForKeyedSubscript:(id)key; - -/// Returns the object associated with the specified key, or if no user preference is set, the -/// provided default. -/// -/// @param key The key for which to return the corresponding value. -/// @param defaultValue The default value to use when no user preference is set. -/// @return The object associated with the specified key, or the default value. -- (id)objectForKey:(NSString *)key default:(nullable id)defaultValue; - -/// Returns the integer value associated with the specified key, or if no user preference is set, -/// the provided default. -/// -/// @param key The key for which to return the corresponding value. -/// @param defaultValue The default value to use when no user preference is set. -/// @return The integer value associated with the specified key, or the default value. -/// @see `-objectForKey:default:` -- (NSInteger)integerForKey:(NSString *)key default:(NSInteger)defaultValue; - -/// Returns the unsigned integer value associated with the specified key, or if no user preference -/// is set, the provided default. -/// -/// @param key The key for which to return the corresponding value. -/// @param defaultValue The default value to use when no user preference is set. -/// @return The unsigned integer value associated with the specified key, or the default value. -/// @see `-objectForKey:default:` -- (NSUInteger)unsignedIntegerForKey:(NSString *)key default:(NSUInteger)defaultValue; - -/// Returns the floating-point value associated with the specified key, or if no user preference is -/// set, the provided default. -/// -/// @param key The key for which to return the corresponding value. -/// @param defaultValue The default value to use when no user preference is set. -/// @return The floating-point value associated with the specified key, or the default value. -/// @see `-objectForKey:default:` -- (CGFloat)floatForKey:(NSString *)key default:(CGFloat)defaultValue; - -/// Returns the double value associated with the specified key, or if no user preference is set, -/// the provided default. -/// -/// @param key The key for which to return the corresponding value. -/// @param defaultValue The default value to use when no user preference is set. -/// @return The double value associated with the specified key, or the default value. -/// @see `-objectForKey:default:` -- (double)doubleForKey:(NSString *)key default:(double)defaultValue; - -/// Returns the Boolean value associated with the specified key, or if no user preference is set, -/// the provided default. -/// -/// @param key The key for which to return the corresponding value. -/// @param defaultValue The default value to use when no user preference is set. -/// @return The Boolean value associated with the specified key, or the default value. -/// @see `-objectForKey:default:` -- (BOOL)boolForKey:(NSString *)key default:(BOOL)defaultValue; - -/// @name Setting Preference Values - -/// Sets the value of the specified key. -/// -/// You should only call these methods if you are certain that the process is running as the -/// `mobile` user. -/// -/// @param value The object to store in the preferences. -/// @param key The key with which to associate with the value. -/// @exception HBPreferencesNotMobileException Thrown when the method is called by a process not -/// running as the `mobile` user. -- (void)setObject:(nullable id)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:)); - -/// Sets the value of the specified key to the specified integer value. -/// -/// This is a convenience method that calls `-setObject:forKey:`. See the discussion of that method -/// for more details. -/// -/// @param value The integer value to store in the preferences. -/// @param key The key with which to associate with the value. -/// @see `-setObject:forKey:` -- (void)setInteger:(NSInteger)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:)); - -/// Sets the value of the specified key to the specified unsigned integer value. -/// -/// This is a convenience method that calls `-setObject:forKey:`. See the discussion of that method -/// for more details. -/// -/// @param value The unsigned integer value to store in the preferences. -/// @param key The key with which to associate with the value. -/// @see `-setObject:forKey:` -- (void)setUnsignedInteger:(NSUInteger)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:)); - -/// Sets the value of the specified key to the specified floating-point value. -/// -/// This is a convenience method that calls `-setObject:forKey:`. See the discussion of that method -/// for more details. -/// -/// @param value The floating-point value to store in the preferences. -/// @param key The key with which to associate with the value. -/// @see `-setObject:forKey:` -- (void)setFloat:(CGFloat)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:)); - -/// Sets the value of the specified key to the specified double value. -/// -/// This is a convenience method that calls `-setObject:forKey:`. See the discussion of that method -/// for more details. -/// -/// @param value The double value to store in the preferences. -/// @param key The key with which to associate with the value. -/// @see `-setObject:forKey:` -- (void)setDouble:(double)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:)); - -/// Sets the value of the specified key to the specified Boolean value. -/// -/// This is a convenience method that calls `-setObject:forKey:`. See the discussion of that method -/// for more details. -/// -/// @param value The Boolean value to store in the preferences. -/// @param key The key with which to associate with the value. -/// @see `-setObject:forKey:` -- (void)setBool:(BOOL)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:)); - -/// Sets the value of the specified key to the specified value. -/// -/// This method behaves the same as `-setObject:forKey:`, and enables the preferences object to be -/// used with a subscript (square brackets). For example: -/// -/// ```objc -/// NSString *fooBar = preferences[@"FooBar"]; -/// preferences[@"Awesome"] = @YES; -/// ``` -/// -/// @param object The value to store in the preferences. -/// @param key The key with which to associate with the value. -- (void)setObject:(nullable id)object forKeyedSubscript:(id)key; - -/// @name Removing Preference Values - -/// Removes a given key and its associated value from the dictionary. -/// -/// @param key The key to remove. -- (void)removeObjectForKey:(NSString *)key NS_SWIFT_NAME(removeValue(forKey:)); - -/// Removes all stored preferences. -/// -/// This method acts in the same way as discussed in `-removeObjectForKey:`. -- (void)removeAllObjects NS_SWIFT_NAME(removeAll()); - -/// @name Registering Variables - -/// Register an object to be automatically set to the user’s preference. -/// -/// If the preference is not yet set, the object will be set to the provided default. -/// -/// You must post a Darwin notification after updating preferences for this to work. In particular, -/// it must be set to the value of identifier, followed by `/ReloadPrefs` - for instance, -/// `ws.hbang.common.demo/ReloadPrefs`. In a Preferences specifier property list, you can use the -/// `PostNotification` key on your specifiers to achieve this: -/// -/// ```xml -/// -/// … -/// PostNotification -/// ws.hbang.common.demo/ReloadPrefs -/// -/// ``` -/// -/// @param object The pointer to the object. -/// @param defaultValue The default value to be used if no user preference is set. -/// @param key The key in the preferences property list. -/// @see `-registerObject:default:forKey:` -- (void)registerObject:(_Nullable id __strong * _Nonnull)object default:(nullable id)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:)); - -/// Register an integer value to be automatically set to the user’s preference. -/// -/// If the preference is not yet set, the object will be set to the provided default. -/// -/// @param object The pointer to the integer. -/// @param defaultValue The default value to be used if no user preference is set. -/// @param key The key in the preferences property list. -/// @see `-registerObject:default:forKey:` -- (void)registerInteger:(NSInteger *)object default:(NSInteger)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:)); - -/// Register an unsigned integer value to be automatically set to the user’s preference. -/// -/// If the preference is not yet set, the object will be set to the provided default. -/// -/// @param object The pointer to the unsigned integer. -/// @param defaultValue The default value to be used if no user preference is set. -/// @param key The key in the preferences property list. -/// @see `-registerObject:default:forKey:` -- (void)registerUnsignedInteger:(NSUInteger *)object default:(NSUInteger)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:)); - -/// Register a floating-point value to be automatically set to the user’s preference. -/// -/// If the preference is not yet set, the object will be set to the provided default. -/// -/// @param object The pointer to the integer. -/// @param defaultValue The default value to be used if no user preference is set. -/// @param key The key in the preferences property list. -/// @see `-registerObject:default:forKey:` -- (void)registerFloat:(CGFloat *)object default:(CGFloat)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:)); - -/// Register a double value to be automatically set to the user’s preference. -/// -/// If the preference is not yet set, the object will be set to the provided default. -/// -/// @param object The pointer to the double. -/// @param defaultValue The default value to be used if no user preference is set. -/// @param key The key in the preferences property list. -/// @see `-registerObject:default:forKey:` -- (void)registerDouble:(double *)object default:(double)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:)); - -/// Register a Boolean value to be automatically set to the user’s preference. -/// -/// If the preference is not yet set, the object will be set to the provided default. -/// -/// @param object The pointer to the Boolean. -/// @param defaultValue The default value to be used if no user preference is set. -/// @param key The key in the preferences property list. -/// @see `-registerObject:default:forKey:` -- (void)registerBool:(BOOL *)object default:(BOOL)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:)); - -/// @name Preference Change Callbacks - -/// Register a block to be called when a preference change is detected. -/// -/// Blocks are called after HBPreferences’ cache of values is updated. The block will also be called -/// immediately after calling this method. See `registerObject:default:forKey:` for details on how -/// to set up callbacks. -/// -/// @param callback A block object called when the specified key’s value changes. The block object -/// takes no parameters and returns no value. -/// @see `-registerObject:default:forKey:` -- (void)registerPreferenceChangeBlock:(HBPreferencesChangeCallback)callback; - -/// Register a block to be called when a specific preference is changed. -/// -/// Blocks are called after HBPreferences’ cache of values is updated. The block will also be called -/// immediately after calling this method. See `registerObject:default:forKey:` for details on how -/// to set up callbacks. -/// -/// @param key The key to listen for. -/// @param callback A block object called when the specified key’s value changes. The block object’s -/// parameters are the key and its new value. -/// @see `-registerObject:default:forKey:` -- (void)registerPreferenceChangeBlockForKey:(NSString *)key block:(HBPreferencesValueChangeCallback)callback; - -/// Register a block to be called when a specific preference is changed. -/// -/// Blocks are called after HBPreferences’ cache of values is updated. The block will also be called -/// immediately after calling this method. See `-registerObject:default:forKey:` for details on how -/// to set up callbacks. -/// -/// Deprecated. This method signature changed in Cephei 1.17 to better support the order of -/// arguments preferred by Swift closure syntax. Use `-registerPreferenceChangeBlockForKey:block:` -/// instead. -/// -/// @param callback A block object called when the specified key’s value changes. The block object’s -/// parameters are the key and its new value. -/// @param key The key to listen for. -/// @see `-registerPreferenceChangeBlockForKey:block:` -/// @see `-registerObject:default:forKey:` -- (void)registerPreferenceChangeBlock:(HBPreferencesValueChangeCallback)callback forKey:(NSString *)key __attribute((deprecated("Use registerPreferenceChangeBlockForKey:block: instead."))); - -@end - -/// Name of an exception that occurs when attempting to set preferences from a process not running -/// as the `mobile` user. -extern NSExceptionName const HBPreferencesNotMobileException NS_SWIFT_NAME(HBPreferences.notMobileException); - -/// This notification is posted when a change is made to a registered preferences identifier. The -/// notification object is the associated HBPreferences object. -extern NSNotificationName const HBPreferencesDidChangeNotification NS_SWIFT_NAME(HBPreferences.didChangeNotification); - -NS_ASSUME_NONNULL_END diff --git a/packages/Cephei.framework/Headers/HBRespringController.h b/packages/Cephei.framework/Headers/HBRespringController.h deleted file mode 100644 index c8e9fb1..0000000 --- a/packages/Cephei.framework/Headers/HBRespringController.h +++ /dev/null @@ -1,26 +0,0 @@ -#import - -NS_ASSUME_NONNULL_BEGIN - -/// The HBRespringController class in Cephei provides conveniences for restarting the system app -/// (usually SpringBoard). It also ensures battery usage statistics are not lost when performing the -/// restart. -@interface HBRespringController : NSObject - -/// Restart the system app. -/// -/// On iOS 8.0 and newer, fades out and then returns to the home screen (system remains unlocked). -/// On older iOS versions, a standard restart occurs. -+ (void)respring; - -/// Restart the system app and immediately launch a URL. -/// -/// Requires iOS 8.0 or newer. On older iOS versions, a standard restart occurs and the URL is not -/// opened. -/// -/// @param returnURL The URL to launch after restarting. -+ (void)respringAndReturnTo:(nullable NSURL *)returnURL; - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/Cephei.framework/Headers/NSDictionary+HBAdditions.h b/packages/Cephei.framework/Headers/NSDictionary+HBAdditions.h deleted file mode 100644 index 8ba01bb..0000000 --- a/packages/Cephei.framework/Headers/NSDictionary+HBAdditions.h +++ /dev/null @@ -1,20 +0,0 @@ -#import - -NS_ASSUME_NONNULL_BEGIN - -/// NSDictionary (HBAdditions) is a class category in Cephei that provides some convenience methods. -@interface NSDictionary (HBAdditions) - -/// Constructs and returns an NSString object that is the result of joining the dictionary keys and -/// values into an HTTP query string. -/// -/// On iOS 8.0 and newer, this uses the built in NSURLComponents functionality to deserialize the -/// query string. On earlier versions, uses an approximation implemented within Cephei. This -/// implementation is simplistic and does not handle edge cases that NSURLComponents does support. -/// -/// @return An NSString containing an HTTP query string. -- (NSString *)hb_queryString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/Cephei.framework/Headers/NSString+HBAdditions.h b/packages/Cephei.framework/Headers/NSString+HBAdditions.h deleted file mode 100644 index 4fff26c..0000000 --- a/packages/Cephei.framework/Headers/NSString+HBAdditions.h +++ /dev/null @@ -1,34 +0,0 @@ -#import - -NS_ASSUME_NONNULL_BEGIN - -/// NSString (HBAdditions) is a class category in Cephei that provides some convenience methods. -@interface NSString (HBAdditions) - -/// Returns a string encoded for an HTTP query parameter. -/// -/// This method encodes a variety of symbols that can conflict with other portions of a URL, such as -/// `&` and `=`, and other similar symbols that could otherwise be misinterpreted by some -/// implementations. -/// -/// @return A string encoded for an HTTP query parameter. -- (NSString *)hb_stringByEncodingQueryPercentEscapes; - -/// Returns a string decoded from an HTTP query parameter. -/// -/// This method decodes percent escapes, as well as spaces encoded with a `+`. -/// -/// @return A string decoded from an HTTP query parameter. -- (NSString *)hb_stringByDecodingQueryPercentEscapes; - -/// Returns a dictionary containing the HTTP query parameters in the string. -/// -/// The string is expected to be in the format `key=value&key=value`, with both keys and values -/// encoded where necessary. -/// -/// @return An NSDictionary object containing the keys and values from the query string. -- (NSDictionary *)hb_queryStringComponents; - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/Cephei.framework/Info.plist b/packages/Cephei.framework/Info.plist deleted file mode 100644 index 5fbbb2d..0000000 --- a/packages/Cephei.framework/Info.plist +++ /dev/null @@ -1,28 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - Cephei - CFBundleIdentifier - ws.hbang.common - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - Cephei - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - DTPlatformName - iphoneos - HBPackageIdentifier - ws.hbang.common - - diff --git a/packages/CepheiPrefs.framework/CepheiPrefs b/packages/CepheiPrefs.framework/CepheiPrefs deleted file mode 100755 index a3ee58e..0000000 Binary files a/packages/CepheiPrefs.framework/CepheiPrefs and /dev/null differ diff --git a/packages/CepheiPrefs.framework/DemoAbout.plist b/packages/CepheiPrefs.framework/DemoAbout.plist deleted file mode 100644 index c39b8bf..0000000 --- a/packages/CepheiPrefs.framework/DemoAbout.plist +++ /dev/null @@ -1,144 +0,0 @@ - - - - - items - - - cell - PSGroupCell - condensed - - headerCellClass - HBPackageNameHeaderCell - icon - icon.png - packageIdentifier - ws.hbang.common - packageNameOverride - Cephei - titleColor - #ffffff - subtitleColor - #aaaaaa - - - cell - PSGroupCell - - - big - - cellClass - HBLinkTableCell - height - 64 - label - HASHBANG Productions - subtitle - VISIT_WEBSITE - url - https://hashbang.productions/ - iconURL - https://hashbang.productions/favicon.ico - - - cell - PSGroupCell - label - Follow Us - - - cellClass - HBTwitterCell - label - HASHBANG Productions - user - hashbang - userID - 945654024 - - - cellClass - HBTwitterCell - label - Chariz - user - CharizTeam - userID - 3066301983 - - - cellClass - HBTwitterCell - label - Adam Demasi - user - hbkirb - userID - 103767197 - - - cell - PSGroupCell - footerText - DONATE_FOOTER - - - action - hb_sendSupportEmail - cell - PSLinkCell - cellClass - HBTintedTableCell - defaults - ws.hbang.common - label - EMAIL_SUPPORT - iconImageSystem - - name - envelope - backgroundColor - #007aff - - - - cell - PSButtonCell - cellClass - HBLinkTableCell - label - TRANSLATORS - url - https://hashbang.productions/translations/ - iconImageSystem - - name - globe - backgroundColor - #34c759 - - - - cell - PSButtonCell - cellClass - HBLinkTableCell - label - DONATE - url - https://hashbang.productions/donate/ - iconImageSystem - - name - heart - backgroundColor - #ff3b30 - - - - title - ABOUT - - diff --git a/packages/CepheiPrefs.framework/DemoRoot.plist b/packages/CepheiPrefs.framework/DemoRoot.plist deleted file mode 100644 index e1451e2..0000000 --- a/packages/CepheiPrefs.framework/DemoRoot.plist +++ /dev/null @@ -1,422 +0,0 @@ - - - - - items - - - cell - PSGroupCell - headerCellClass - HBPackageNameHeaderCell - icon - icon.png - packageIdentifier - ws.hbang.common - packageNameOverride - Cephei - titleColor - #ffffff - subtitleColor - #aaaaaa - footerText - This is a demo of Cephei features. Refer to https://hbang.github.io/libcephei/ for further details. - - - cell - PSGroupCell - - - cell - PSSwitchCell - default - - defaults - ws.hbang.common.demo - key - Switch - label - Awesome - iconImageSystem - - name - switch.2 - - - - cell - PSGroupCell - - - cell - PSLinkListCell - default - 0 - defaults - ws.hbang.common.demo - detail - PSListItemsController - key - Region - label - Region - validTitles - - Worldwide - Australia - Canada - China - France - Germany - Japan - New Zealand - United Kingdom - United States - - validValues - - 0 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - - iconImageSystem - - name - globe - - - - cellClass - HBStepperTableCell - default - 5 - defaults - ws.hbang.common.demo - key - Stepper - label - %i Things - max - 15 - min - 1 - singularLabel - 1 Thing - iconImageSystem - - name - number.circle - - - - cell - PSGroupCell - label - Sliders - - - cell - PSSliderCell - default - 5 - defaults - ws.hbang.common.demo - key - Slider - label - Slider - max - 15 - min - 1 - showValue - - leftImageSystem - - name - slider.horizontal.3 - - - - cell - PSSliderCell - cellClass - HBDiscreteSliderTableCell - default - 5 - defaults - ws.hbang.common.demo - key - Discrete - label - Discrete - max - 15 - min - 1 - leftImageSystem - - name - sun.min - - rightImageSystem - - name - sun.max - - - - cell - PSGroupCell - label - HBTintedTableCell - - - action - doStuffTapped: - cell - PSButtonCell - cellClass - HBSpinnerTableCell - label - Perform Magic Tricks - iconImageSystem - - name - wand.and.stars - weight - semibold - - - - cell - PSButtonCell - cellClass - HBTintedTableCell - label - Do Something Destructive - iconImageSystem - - name - exclamationmark.triangle - weight - bold - - tintColor - #ff3b30 - - - cell - PSGroupCell - label - HBLinkTableCell - - - cellClass - HBLinkTableCell - label - HASHBANG Productions - url - https://hashbang.productions/ - - - cellClass - HBLinkTableCell - label - Avatar from URL - url - https://hashbang.productions/ - iconURL - https://repo.chariz.com/CydiaIcon@3x.png - - - cellClass - HBLinkTableCell - label - Avatar from URL, circular - subtitle - They seem like a pretty cool bunch - url - https://hashbang.productions/ - iconURL - https://repo.chariz.com/CydiaIcon@3x.png - iconCircular - - big - - - - cellClass - HBLinkTableCell - label - Avatar from URL, big - subtitle - They seem like a pretty cool bunch - url - https://hashbang.productions/ - iconURL - https://repo.chariz.com/CydiaIcon@3x.png - big - - - - cellClass - HBLinkTableCell - label - Doesn’t Exist - url - http://localhost/ - iconURL - http://localhost/ - - - cell - PSGroupCell - label - HBPackageTableCell - - - cellClass - HBPackageTableCell - label - Cephei - packageIdentifier - ws.hbang.common - iconCornerRadius - 12 - - - cellClass - HBPackageTableCell - label - Cephei - subtitle - Cephei is awesome! - packageIdentifier - ws.hbang.common - iconURL - https://repo.chariz.com/CydiaIcon@3x.png - - - cellClass - HBPackageTableCell - label - NewTerm - subtitle - NewTerm is also awesome! - packageIdentifier - ws.hbang.newterm2 - - - cellClass - HBPackageTableCell - label - Quanta - subtitle - Quanta is hyper awesome! - packageIdentifier - ws.hbang.quanta - packageRepository - https://repo.chariz.com/ - - - cellClass - HBPackageTableCell - label - Doesn’t Exist - packageIdentifier - ws.hbang.common.doesntexist - - - cell - PSGroupCell - label - HBTwitterCell - - - cellClass - HBTwitterCell - label - Mismatched username - user - NotActuallyHashbang - userID - 945654024 - - - big - - cellClass - HBTwitterCell - height - 56 - label - Big cell - user - hashbang - - - cellClass - HBTwitterCell - label - No avatar - showAvatar - - user - hashbang - - - cellClass - HBTwitterCell - label - Avatar from URL - iconURL - https://chariz.com/img/favicon.png - iconCircular - - user - hashbang - - - cellClass - HBTwitterCell - label - Monogram initials - initials - HB - user - hashbang - - - cell - PSGroupCell - label - HBAboutListController - - - cell - PSLinkCell - detail - HBDemoAboutListController - isController - - label - ABOUT - iconImageSystem - - name - info.circle - - - - title - Cephei Demo - - diff --git a/packages/CepheiPrefs.framework/Headers/CepheiPrefs.h b/packages/CepheiPrefs.framework/Headers/CepheiPrefs.h deleted file mode 100644 index 00e3deb..0000000 --- a/packages/CepheiPrefs.framework/Headers/CepheiPrefs.h +++ /dev/null @@ -1,18 +0,0 @@ -#import "HBAboutListController.h" -#import "HBAppearanceSettings.h" -#import "HBDiscreteSliderTableCell.h" -#import "HBImageTableCell.h" -#import "HBInitialsLinkTableCell.h" -#import "HBLinkTableCell.h" -#import "HBListController.h" -#import "HBListController+Actions.h" -#import "HBListItemsController.h" -#import "HBPackageTableCell.h" -#import "HBPackageNameHeaderCell.h" -#import "HBRootListController.h" -#import "HBSpinnerTableCell.h" -#import "HBStepperTableCell.h" -#import "HBSupportController.h" -#import "HBTintedTableCell.h" -#import "HBTwitterCell.h" -#import "PSListController+HBTintAdditions.h" diff --git a/packages/CepheiPrefs.framework/Headers/HBAboutListController.h b/packages/CepheiPrefs.framework/Headers/HBAboutListController.h deleted file mode 100644 index a70efd4..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBAboutListController.h +++ /dev/null @@ -1,113 +0,0 @@ -#import "HBListController.h" - -NS_ASSUME_NONNULL_BEGIN - -/// The HBAboutListController class in CepheiPrefs provides a list controller with functions -/// that would typically be used on an "about" page. It includes two class methods you can override -/// to provide a developer website and donation URL, and a class method to provide an email address -/// so the user can send the developer an email right from the tweak's settings. -/// -/// There is a sample of an HBAboutListController implemented in the Cephei demo preferences. See -/// the Cephei readme for details. -/// -/// ### Example Usage -/// ```xml -/// -/// cell -/// PSLinkCell -/// cellClass -/// HBLinkTableCell -/// label -/// Visit Website -/// url -/// https://hashbang.productions/ -/// -/// -/// cell -/// PSGroupCell -/// label -/// Experiencing issues? -/// -/// -/// action -/// hb_sendSupportEmail -/// cell -/// PSLinkCell -/// label -/// Email Support -/// -/// -/// cell -/// PSGroupCell -/// footerText -/// If you like this tweak, please consider a donation. -/// -/// -/// cell -/// PSLinkCell -/// cellClass -/// HBLinkTableCell -/// label -/// Donate -/// url -/// https://hashbang.productions/donate/ -/// -/// ``` - -@interface HBAboutListController : HBListController - -/// @name Constants - -/// The website URL to open when tapping the “visit website” cell. Override this method to return -/// your own URL. -/// -/// Deprecated. It is encouraged to use an `HBLinkTableCell` instead. -/// -/// @return By default, https://hashbang.productions/. -+ (NSURL *)hb_websiteURL __attribute((deprecated("Use an HBLinkTableCell instead."))); - -/// The website URL to open when tapping the "donate" cell. Override this method to return your own -/// URL. -/// -/// Deprecated. It is encouraged to use an `HBLinkTableCell` instead. -/// -/// @return By default, https://hashbang.productions/donate/. -+ (NSURL *)hb_donateURL __attribute((deprecated("Use an HBLinkTableCell instead."))); - -/// The email address to use in the support email composer form. Override this method to return an -/// email address. -/// -/// If this method returns nil, the package’s author email address is used. -/// -/// @return By default, nil. -+ (nullable NSString *)hb_supportEmailAddress; - -/// No longer supported. -/// -/// @return By default, nil. -/// @see `HBSupportController` -+ (nullable NSArray *)hb_supportInstructions __attribute((deprecated("TechSupport is no longer supported."))); - -/// @name Preference Specifier Actions - -/// Opens the user's browser to the URL specified by `-hb_websiteURL`. -/// -/// Deprecated. Use an `HBLinkTableCell` instead. -- (void)hb_openWebsite __attribute((deprecated("Use an HBLinkTableCell instead."))); - -/// Opens the user's browser to the URL specified by `-hb_donateURL`. -/// -/// Deprecated. Use an `HBLinkTableCell` instead. -- (void)hb_openDonate __attribute((deprecated("Use an HBLinkTableCell instead."))); - -/// Displays a support composer form. -/// -/// The `-hb_supportEmailAddress` and `-hb_supportInstructions` methods are used to provide the -/// appropriate parameters to `HBSupportController`. -/// -/// @see `HBSupportController` -- (void)hb_sendSupportEmail; - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/CepheiPrefs.framework/Headers/HBAppearanceSettings.h b/packages/CepheiPrefs.framework/Headers/HBAppearanceSettings.h deleted file mode 100644 index 0f81b2a..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBAppearanceSettings.h +++ /dev/null @@ -1,167 +0,0 @@ -#import - -NS_ASSUME_NONNULL_BEGIN - -/// Constants indicating how to size the title of this item. -typedef NS_ENUM(NSUInteger, HBAppearanceSettingsLargeTitleStyle) { - /// Display a large title only when the current view controller is a subclass of - /// `HBRootListController`. - /// - /// This is the default mode. - HBAppearanceSettingsLargeTitleStyleRootOnly, - - /// Always display a large title. - HBAppearanceSettingsLargeTitleStyleAlways, - - /// Never display a large title. - HBAppearanceSettingsLargeTitleStyleNever -} NS_SWIFT_NAME(HBAppearanceSettings.LargeTitleStyle); - -/// The HBAppearanceSettings class in CepheiPrefs provides a model object read by other components -/// of Cephei to determine colors and other appearence settings to use in the user interface. -/// -/// Appearance settings are typically set on a view controller, via the -/// `-[PSListController(HBTintAdditions) hb_appearanceSettings]` property. This is automatically -/// managed by Cephei and provided to view controllers as they are pushed onto the stack. -/// -/// Most commonly, the API will be used by setting the `hb_appearanceSettings` property from the -/// init method. The following example sets the tint color, table view background color, and -/// customises the navigation bar with a background, title, and status bar color: -/// -/// ```objc -/// - (instancetype)init { -/// self = [super init]; -/// -/// if (self) { -/// HBAppearanceSettings *appearanceSettings = [[HBAppearanceSettings alloc] init]; -/// appearanceSettings.tintColor = [UIColor colorWithRed:66.f / 255.f green:105.f / 255.f blue:154.f / 255.f alpha:1]; -/// appearanceSettings.barTintColor = [UIColor systemRedColor]; -/// appearanceSettings.navigationBarTitleColor = [UIColor whiteColor]; -/// appearanceSettings.tableViewBackgroundColor = [UIColor colorWithWhite:242.f / 255.f alpha:1]; -/// appearanceSettings.statusBarStyle = UIStatusBarStyleLightContent; -/// self.hb_appearanceSettings = appearanceSettings; -/// } -/// -/// return self; -/// } -/// ``` - -@interface HBAppearanceSettings : NSObject - -/// @name General - -/// The tint color to use for interactable elements within the list controller. Set this property to -/// a UIColor to use. -/// -/// A nil value will cause no modification of the tint to occur. -/// -/// @return By default, nil. -@property (nonatomic, copy, nullable) UIColor *tintColor; - -#ifdef __IPHONE_13_0 -/// The user interface style to use. Set this property to a UIUserInterfaceStyle to use. -/// -/// @return By default, UIUserInterfaceStyleUnspecified. -@property (nonatomic, assign) UIUserInterfaceStyle userInterfaceStyle API_AVAILABLE(ios(13.0)); -#endif - -/// @name Navigation Bar - -/// The tint color to use for the navigation bar buttons, or, if invertedNavigationBar is set, the -/// background of the navigation bar. Set this property to a UIColor to use, if you don’t want to -/// use the same color as tintColor. -/// -/// A nil value will cause no modification of the navigation bar tint to occur. -/// -/// @return By default, nil. -@property (nonatomic, copy, nullable) UIColor *navigationBarTintColor; - -/// The color to use for the navigation bar title label. Set this property to a UIColor to use. -/// -/// A nil value will cause no modification of the navigation bar title color to occur. -/// -/// @return By default, nil. -@property (nonatomic, copy, nullable) UIColor *navigationBarTitleColor; - -/// The background color to use for the navigation bar. Set this property to a UIColor to use. -/// -/// A nil value will cause no modification of the navigation bar background to occur. -/// -/// @return By default, nil. -@property (nonatomic, copy, nullable) UIColor *navigationBarBackgroundColor; - -/// The status bar style to use. Set this property to a UIStatusBarStyle to use. -/// -/// @return By default, UIStatusBarStyleDefault. -@property (nonatomic, assign) UIStatusBarStyle statusBarStyle; - -/// The color to use for the status bar icons. Set this property to a UIColor to use. -/// -/// A nil value will cause no modification of the status bar color to occur. -/// -/// @return By default, nil. -/// @warning Setting the status bar to a custom color is no longer possible as of iOS 13. Set -/// statusBarStyle instead. -@property (nonatomic, copy, nullable) UIColor *statusBarTintColor __attribute((deprecated("Set statusBarStyle instead."))); - -/// Whether to use an inverted navigation bar. -/// -/// An inverted navigation bar has a tinted background, rather than the buttons being tinted. All -/// other interface elements will be tinted the same. -/// -/// @return By default, NO. -@property (nonatomic, assign) BOOL invertedNavigationBar __attribute((deprecated("Set navigationBarBackgroundColor and navigationBarTitleColor instead."))); - -/// Whether to use a translucent navigation bar. Set this property to YES if you want this behavior. -/// -/// @return By default, YES. -@property (nonatomic, assign) BOOL translucentNavigationBar; - -/// Whether to show the shadow (separator line) at the bottom of the navigation bar. -/// -/// Requires iOS 13 or later. -/// -/// @return By default, YES. -@property (nonatomic, assign) BOOL showsNavigationBarShadow; - -/// Whether to use a large title on iOS 11 and newer. Set this property to a value from -/// HBAppearanceSettingsLargeTitleStyle. -/// -/// @return By default, HBAppearanceSettingsLargeTitleStyleRootOnly. -@property (nonatomic, assign) HBAppearanceSettingsLargeTitleStyle largeTitleStyle; - -/// @name Table View - -/// The color to be used for the overall background of the table view. Set this property to a -/// UIColor to use. -/// -/// @return By default, nil. -@property (nonatomic, copy, nullable) UIColor *tableViewBackgroundColor; - -/// The color to be used for the text color of table view cells. Set this property to a UIColor to -/// use. -/// -/// @return By default, nil. -@property (nonatomic, copy, nullable) UIColor *tableViewCellTextColor; - -/// The color to be used for the background color of table view cells. Set this property to a -/// UIColor to use. -/// -/// @return By default, nil. -@property (nonatomic, copy, nullable) UIColor *tableViewCellBackgroundColor; - -/// The color to be used for the separator between table view cells. Set this property to a UIColor -/// to use. -/// -/// @return By default, nil. -@property (nonatomic, copy, nullable) UIColor *tableViewCellSeparatorColor; - -/// The color to be used when a table view cell is selected. This color will be shown when the cell -/// is in the highlighted state. -/// -/// @return By default, nil. -@property (nonatomic, copy, nullable) UIColor *tableViewCellSelectionColor; - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/CepheiPrefs.framework/Headers/HBDiscreteSliderTableCell.h b/packages/CepheiPrefs.framework/Headers/HBDiscreteSliderTableCell.h deleted file mode 100644 index d5e3091..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBDiscreteSliderTableCell.h +++ /dev/null @@ -1,46 +0,0 @@ -#import -#import - -/// The HBDiscreteSliderTableCell class in CepheiPrefs is a subclass of the standard slider -/// cell, which displays a vertical line at every whole number. Additionally, when dragging the -/// slider, it jumps to these lines so the user’s preference will always be a whole number. -/// -/// It is no longer necessary to use this as of iOS 8.2, which has built in `isSegmented` and -/// `segmentCount` parameters on PSSliderCell. This class is kept for backwards compatibility, and -/// will use the built-in implementation on iOS 8.2 and newer. -/// -/// Requires iOS 7.0 or later. A normal slider is shown for older versions. -/// -/// ### Specifier Parameters -/// All parameters specific to -/// [PSSliderCell](http://iphonedevwiki.net/index.php/Preferences_specifier_plist#PSSliderCell) -/// are applicable here. There are no custom parameters. -/// -/// ### Example Usage -/// ```xml -/// -/// cell -/// PSSliderCell -/// cellClass -/// HBDiscreteSliderTableCell -/// default -/// 5 -/// defaults -/// ws.hbang.common.demo -/// key -/// Discrete -/// label -/// Discrete -/// max -/// 15 -/// min -/// 1 -/// -/// ``` - -@interface HBDiscreteSliderTableCell : PSControlTableCell - -/// The slider control. -@property (nonatomic, retain) PSDiscreteSlider *control; - -@end diff --git a/packages/CepheiPrefs.framework/Headers/HBImageTableCell.h b/packages/CepheiPrefs.framework/Headers/HBImageTableCell.h deleted file mode 100644 index 5d0d1d5..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBImageTableCell.h +++ /dev/null @@ -1,45 +0,0 @@ -#import -#import - -/// The HBImageTableCell class in CepheiPrefs provides a simple way to display an image as a -/// table cell, or a header or footer. -/// -/// ### Specifier Parameters -/// -/// -/// -/// -///
icon Required. The file name of the image to display in the cell.
-/// -/// If you use `HBImageTableCell` as a header or footer with `headerCellClass` or `footerCellClass`, -/// it will size automatically to fit the image. If you use it as a cell with `cellClass`, you must -/// set the height yourself using the `height` key. -/// -/// ### Example Usage -/// ```xml -/// -/// -/// cell -/// PSGroupCell -/// headerCellClass -/// HBImageTableCell -/// height -/// 100 -/// icon -/// logo.png -/// -/// -/// -/// -/// cellClass -/// HBImageTableCell -/// height -/// 100 -/// icon -/// logo.png -/// -/// ``` - -@interface HBImageTableCell : PSTableCell - -@end diff --git a/packages/CepheiPrefs.framework/Headers/HBInitialsLinkTableCell.h b/packages/CepheiPrefs.framework/Headers/HBInitialsLinkTableCell.h deleted file mode 100644 index c83ceaa..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBInitialsLinkTableCell.h +++ /dev/null @@ -1,8 +0,0 @@ -#import "HBLinkTableCell.h" - -/// The HBInitialsLinkTableCell class in CepheiPrefs is a shim kept for compatibility reasons. -/// The class is now called `HBLinkTableCell`. - -@interface HBInitialsLinkTableCell : HBLinkTableCell - -@end diff --git a/packages/CepheiPrefs.framework/Headers/HBLinkTableCell.h b/packages/CepheiPrefs.framework/Headers/HBLinkTableCell.h deleted file mode 100644 index c03f638..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBLinkTableCell.h +++ /dev/null @@ -1,129 +0,0 @@ -#import "HBTintedTableCell.h" - -/// The HBLinkTableCell class in CepheiPrefs displays a button that, when tapped, opens the -/// specified URL. A typical icon can be used, or the initials key can be set to one or two -/// characters to show as the icon. -/// -/// This cell can either be used without setting any cell type, or by setting it to `PSButtonCell` -/// to get a tinted button. -/// -/// ### Specifier Parameters -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -///
url Required. The URL to open.
subtitle Optional. A subtitle to display below the label. The default is an empty -/// string, hiding the subtitle.
initials Optional. One or two characters to show as the icon.
iconURL Optional. The URL to an image to display. The default is no value, -/// hiding the image.
iconCircular Optional. Whether the icon should be displayed as a circle. The -/// default is NO when an iconURL is set, otherwise this property is unused.
iconCornerRadius Optional. A custom corner radius to use for the icon. Ignored -/// if iconCircular is set to true. If set to -1, the operating system’s default icon corner radius -/// is used. The default is -1.
-/// -/// ### Example Usage -/// ```xml -/// -/// -/// cellClass -/// HBLinkTableCell -/// icon -/// example.png -/// label -/// Example -/// url -/// http://example.com/ -/// -/// -/// -/// -/// cellClass -/// HBLinkTableCell -/// initials -/// XX -/// label -/// Example -/// url -/// http://example.com/ -/// -/// -/// -/// -/// cellClass -/// HBLinkTableCell -/// label -/// Example -/// subtitle -/// Visit our amazing website -/// url -/// http://example.com/ -/// -/// -/// -/// -/// big -/// -/// cellClass -/// HBLinkTableCell -/// height -/// 64 -/// label -/// Example -/// subtitle -/// Visit our amazing website -/// url -/// http://example.com/ -/// -/// ``` - -@interface HBLinkTableCell : HBTintedTableCell - -/// Whether the cell is 64 pixels or more in height. -/// -/// This is not set automatically; the specifier for the cell must set the `big` property to true -/// (see examples above). -@property (nonatomic, readonly) BOOL isBig; - -/// The view containing the icon image view. -@property (nonatomic, retain, readonly) UIView *iconView; - -/// The icon image view. -@property (nonatomic, retain, readonly) UIImageView *iconImageView; - -/// The image to display as the icon, if enabled. -@property (nonatomic, retain) UIImage *iconImage; - -/// A URL to load into iconImage to display as the icon, if enabled. -@property (nonatomic, retain) NSURL *iconURL; - -/// Whether the image displays as a circle. -/// -/// The default is YES if an iconURL is set in the specifier, otherwise NO. -@property (nonatomic, readonly) BOOL isIconCircular; - -/// Load and display the icon. -/// -/// You don’t need to call this unless subclassing. -- (void)loadIconIfNeeded; - -/// Handle failure to load the icon. -/// -/// You don’t need to call this unless subclassing. The default implementation replaces the image -/// with the operating system’s generic “no icon” placeholder if `iconCornerRadius` is set to -1, -/// and `isIconCircular` is set to NO. -- (void)iconLoadDidFailWithResponse:(NSURLResponse *)response error:(NSError *)error; - -@end diff --git a/packages/CepheiPrefs.framework/Headers/HBListController+Actions.h b/packages/CepheiPrefs.framework/Headers/HBListController+Actions.h deleted file mode 100644 index 4638c80..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBListController+Actions.h +++ /dev/null @@ -1,42 +0,0 @@ -#import "HBListController.h" - -@class PSSpecifier; - -NS_ASSUME_NONNULL_BEGIN - -/// The HBListController (Actions) class category in CepheiPrefs implements action methods you can -/// use with link and button specifiers. -@interface HBListController (Actions) - -/// Specifier action to perform a restart of the system app (respring). -/// -/// You should prefer to have preferences immediately take effect, rather than using this method. -/// -/// @see `-hb_respringAndReturn:` -- (void)hb_respring:(PSSpecifier *)specifier; - -/// Specifier action to perform a restart of the system app (respring), and return to the current -/// preferences screen. -/// -/// You should prefer to have preferences immediately take effect, rather than using this method. -/// -/// @see `-hb_respring:` -- (void)hb_respringAndReturn:(PSSpecifier *)specifier; - -/// Specifier action to open the URL specified by the specifier. -/// -/// This is intended to be used with `HBLinkTableCell`. -/// -/// @see `HBLinkTableCell` -- (void)hb_openURL:(PSSpecifier *)specifier; - -/// Specifier action to open the package specified by the specifier. -/// -/// This is intended to be used with `HBPackageTableCell`. -/// -/// @see `HBPackageTableCell` -- (void)hb_openPackage:(PSSpecifier *)specifier; - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/CepheiPrefs.framework/Headers/HBListController.h b/packages/CepheiPrefs.framework/Headers/HBListController.h deleted file mode 100644 index 04900dc..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBListController.h +++ /dev/null @@ -1,260 +0,0 @@ -#import -#import "PSListController+HBTintAdditions.h" - -NS_ASSUME_NONNULL_BEGIN - -/// The HBListController class in CepheiPrefs provides a list controller with various -/// conveniences such as a unique tint color for the list controllers within a preference bundle, -/// and bug fixes for common issues within the Settings app and Preferences framework. In -/// particular, a bug with the list controller’s content disappearing after closing the Settings -/// app and opening it again is worked around, as well as an issue on iOS 7 where in some cases a -/// cell may stay highlighted after being tapped. -/// -/// It includes two class methods you can override to return the name of a Preferences specifier -/// property list, and various methods to control appearance of the interface. -/// -/// If you use `HBLinkTableCell` or subclasses such as `HBTwitterCell` and `HBPackageTableCell`, it -/// is recommended to subclass from HBListController on the view controller classes containing these -/// cells to use CepheiPrefs’s built-in callback actions. If you do not subclass from -/// HBListController, you will need to implement action methods yourself. -/// -/// ### Specifier Parameters -/// HBListController extends specifiers with the following parameters: -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -///
pl_filter Optional. Supports additional filters that decide whether a specifier -/// should be displayed, as specified below.
iconImageSystem Optional. Supports displaying a system image as the cell icon, as -/// specified below.
leftImageSystem Optional. Supports displaying a system image as the icon to the -/// left of a PSSliderCell’s slider control, as specified below.
rightImageSystem Optional. Supports displaying a system image as the icon to the -/// right of a PSSliderCell’s slider control, as specified below.
-/// -/// #### PreferenceLoader Filter Parameters -/// The `pl_filter` key is inherited from PreferenceLoader’s libprefs, and can be used to specify -/// [CoreFoundation version](https://iphonedev.wiki/index.php/CoreFoundation.framework) criteria -/// for a specifier. Specifiers that do not meet the `pl_filter` criteria will be discarded. -/// -/// The version number of CoreFoundation is often used as a stable method of checking the operating -/// system version in use. It has the benefit of increasing in predictable amounts (to the next -/// hundred or more) for each major revision of Apple’s OS platforms, and it is typically roughly -/// the same between all Apple OS platforms at any point in time. -/// -/// -/// -/// -/// -///
CoreFoundationVersion Optional. An array of one or two CoreFoundation version -/// numbers in decimal (<real>). If one number is present, this is a minimum bound. The -/// current device’s CoreFoundation version must be greater than or equal to this number. If two -/// numbers are present, the first number is the lower bound, and the second number is one more than -/// the upper bound. The current device’s CoreFoundation version must be greater than or equal to -/// the first number, and less than (but not equal to) the second number.
-/// -/// ##### Example Usage -/// ```xml -/// -/// -/// cell -/// PSSwitchCell -/// label -/// My iOS 12+ Only Feature -/// pl_filter -/// -/// CoreFoundationVersion -/// -/// 1556.00 -/// -/// -/// -/// -/// -/// -/// cell -/// PSSwitchCell -/// label -/// My iOS 7-11 Only Feature -/// pl_filter -/// -/// CoreFoundationVersion -/// -/// 847.20 -/// 1556.00 -/// -/// -/// -/// -/// -/// -/// cell -/// PSSwitchCell -/// label -/// My iOS <12 Only Feature -/// pl_filter -/// -/// CoreFoundationVersion -/// -/// 0.0 -/// 1556.00 -/// -/// -/// -/// ``` -/// -/// #### System Icon Parameters -/// On iOS 13.0 and newer, you can specify a system icon -/// ([SF Symbols](https://developer.apple.com/sf-symbols/) glyph) to be displayed in a cell. Use the -/// SF Symbols app to find symbol names. -/// -/// When running on iOS versions earlier than 13.0, icons will not be rendered. This also applies -/// when a symbol name is specified that was added in a later iOS version than is currently in use. -/// In this case, you can supply a PNG icon through the usual means as a fallback. -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -///
name Required. The symbol name to use.
weight Optional. The weight to render the symbol at. The supported values are: -/// ultraLight, thin, light, regular, medium, semibold, bold, heavy, black. The default is -/// regular.
scale Optional. The scale to render the symbol at. The supported values are: small, -/// medium, large. The default is medium.
pointSize Optional. The equivalent font size to render the symbol at. The default -/// is 20.0.
tintColor Optional. The color to render the icon in. The default is no value, which -/// means the tint color will be inherited from the -[HBAppearanceSettings tintColor]; if neither -/// value is set, the default iOS blue tint color is used. When backgroundColor is set, no value -/// means white (#ffffff) will be used.
backgroundColor Optional. The background color to use for the symbol. When -/// specified, the symbol will be rendered inside an icon shape of the specified background color. -/// The symbol will be scaled down by 20% to appropriately fit the icon shape. The default is no -/// value, which means no icon shape will be rendered.
-/// -/// ##### Example Usage -/// -/// ```xml -/// -/// -/// cell -/// PSSwitchCell -/// label -/// Awesome -/// iconImageSystem -/// -/// name -/// switch.2 -/// -/// -/// -/// -/// -/// cell -/// PSLinkCell -/// detail -/// HBDemoAboutListController -/// isController -/// -/// label -/// ABOUT -/// iconImageSystem -/// -/// name -/// info.circle -/// -/// -/// -/// -/// -/// cell -/// PSSliderCell -/// min -/// 1 -/// max -/// 15 -/// leftImageSystem -/// -/// name -/// sun.min -/// -/// rightImageSystem -/// -/// name -/// sun.max -/// -/// -/// -/// -/// -/// cell -/// PSButtonCell -/// cellClass -/// HBLinkTableCell -/// label -/// DONATE -/// url -/// https://hashbang.productions/ -/// iconImageSystem -/// -/// name -/// heart -/// backgroundColor -/// #ff3b30 -/// -/// -/// ``` -@interface HBListController : PSListController - -/// @name Specifiers - -/// The property list that contains Preference framework specifiers to display as the content of the -/// list controller. Override this method to return the file name of a property list inside your -/// preference bundle, omitting the file extension. -/// -/// Example: -/// ```objc -/// + (NSString *)hb_specifierPlist { -/// return @"Root"; -/// } -/// ``` -/// -/// If you use this method and override the `specifiers` method, ensure you call the super method -/// with `[super specifiers];` first in your `specifiers` implementation. -/// -/// @return By default, nil. -@property (nonatomic, strong, readonly, class, nullable) NSString *hb_specifierPlist NS_SWIFT_NAME(specifierPlist); - -/// @name Related View Controllers - -/// Returns the “real” navigation controller for this view controller. -/// -/// As of iOS 8.0, the navigation controller that owns the navigation bar and other responsibilities -/// is actually a parent of `self.navigationController` on iPhone, due to the larger Plus models. -/// The realNavigationController method returns the correct navigation controller. -/// -/// @return The real navigation controller. -- (UINavigationController *)realNavigationController; - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/CepheiPrefs.framework/Headers/HBListItemsController.h b/packages/CepheiPrefs.framework/Headers/HBListItemsController.h deleted file mode 100644 index 76c9cec..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBListItemsController.h +++ /dev/null @@ -1,10 +0,0 @@ -#import -#import - -/// The HBListItemsController class in CepheiPrefs was used with previous versions to ensure -/// that the tint color from the previous view controller is retained. As of Cephei 1.4, this is no -/// longer needed, and this class is kept for backwards compatibility purposes. - -@interface HBListItemsController : PSListItemsController - -@end diff --git a/packages/CepheiPrefs.framework/Headers/HBPackageNameHeaderCell.h b/packages/CepheiPrefs.framework/Headers/HBPackageNameHeaderCell.h deleted file mode 100644 index b3aa3d2..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBPackageNameHeaderCell.h +++ /dev/null @@ -1,114 +0,0 @@ -#import -#import - -/// The HBPackageNameHeaderCell class in CepheiPrefs displays a header containing the package’s -/// icon, name, version number, and author. It can be displayed in a subtle condensed design, or, by -/// default, a tall header that might be displayed at the top of a preference bundle’s root list -/// controller, for instance. -/// -/// ### Specifier Parameters -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -///
condensed Optional. When true, displays an icon, the package name and version in -/// one line, and on another displays the author name. When false, displays a large package name, -/// and on two lines in small font the package version and author. The default is false.
icon Required in condensed mode. Not used otherwise. The file name of the icon to -/// use within the current preference bundle.
packageIdentifier Required. The package identifier to retrieve the required -/// information from.
packageNameOverride Optional. A custom name to use instead of the package’s -/// name.
showAuthor Optional. Whether to show the Author field of the package. The default -/// is true.
showVersion Optional. Whether to show the Version field of the package. The default -/// is true.
titleColor Optional. The color to apply to the name of the package. The default is -/// #111111.
subtitleColor Optional. The color to apply to the subtitles. The default is -/// #444444.
backgroundGradientColors Optional. An array of color stops to use as a background -/// gradient. At least one is required. The default is no background gradient.
-/// -/// ### Example Usage -/// ```xml -/// -/// -/// cell -/// PSGroupCell -/// headerCellClass -/// HBPackageNameHeaderCell -/// packageIdentifier -/// ws.hbang.common -/// -/// -/// -/// -/// cell -/// PSGroupCell -/// condensed -/// -/// headerCellClass -/// HBPackageNameHeaderCell -/// icon -/// icon.png -/// packageIdentifier -/// ws.hbang.common -/// -/// -/// -/// -/// cell -/// PSGroupCell -/// headerCellClass -/// HBPackageNameHeaderCell -/// packageIdentifier -/// ws.hbang.common -/// titleColor -/// #CC0000 -/// subtitleColor -/// -/// 55 -/// 147 -/// 230 -/// -/// -/// -/// -/// -/// cell -/// PSGroupCell -/// headerCellClass -/// HBPackageNameHeaderCell -/// packageIdentifier -/// ws.hbang.common -/// backgroundGradientColors -/// -/// #5AD427 -/// #FFDB4C -/// #EF4DB6 -/// #898C90 -/// -/// -/// ``` - -@interface HBPackageNameHeaderCell : PSTableCell - -@end diff --git a/packages/CepheiPrefs.framework/Headers/HBPackageTableCell.h b/packages/CepheiPrefs.framework/Headers/HBPackageTableCell.h deleted file mode 100644 index 13f57be..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBPackageTableCell.h +++ /dev/null @@ -1,63 +0,0 @@ -#import "HBLinkTableCell.h" - -/// The HBPackageTableCell class in CepheiPrefs provides a cell containing any package's icon, -/// name, and description. Tapping it opens the package in Cydia. -/// -/// ### Specifier Parameters -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -///
packageIdentifier Required. The package identifier to retrieve the required -/// information from.
packageRepository Optional. The URL to the repository the package is available on, -/// if not one of the default repos.
label Required. The name of the package.
subtitle Optional. Can be used for a description of the package.
-/// -/// ### Example Usage -/// ```xml -/// -/// -/// cellClass -/// HBPackageTableCell -/// label -/// Cephei -/// packageIdentifier -/// ws.hbang.common -/// -/// -/// -/// -/// cellClass -/// HBPackageTableCell -/// label -/// Cephei -/// packageIdentifier -/// ws.hbang.common -/// subtitle -/// Support library for tweaks -/// -/// -/// -/// -/// cellClass -/// HBPackageTableCell -/// label -/// Cephei -/// packageIdentifier -/// ws.hbang.common -/// packageRepository -/// https://repo.chariz.io -/// -/// ``` - -@interface HBPackageTableCell : HBLinkTableCell - -@end diff --git a/packages/CepheiPrefs.framework/Headers/HBRootListController.h b/packages/CepheiPrefs.framework/Headers/HBRootListController.h deleted file mode 100644 index 191e884..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBRootListController.h +++ /dev/null @@ -1,38 +0,0 @@ -#import "HBListController.h" - -NS_ASSUME_NONNULL_BEGIN - -/// The HBRootListController class in CepheiPrefs provides a list controller class that should -/// be used as the root of the package's settings. It includes two class methods you can override to -/// provide a default message and a URL that the user can share via a sharing button displayed to -/// the right of the navigation bar. -/// -/// It is recommended that you use this class even if its current features aren’t appealing in case -/// of future improvements or code that relies on the presence of an HBRootListController. - -@interface HBRootListController : HBListController - -/// @name Constants - -/// A string to be used as a default message when the user shares the package to a friend or social -/// website. Override this method to return your own string. -/// -/// If the return value of this method and `hb_shareURL `are nil, the sharing button will not be -/// displayed. -/// -/// @return By default, nil. -+ (nullable NSString *)hb_shareText; - - -/// The URL to be shared when the user shares the package to a friend or social website. Override -/// this method to return your own URL. -/// -/// If the return value of this method and `hb_shareText` are nil, the sharing button will not be -/// displayed. -/// -/// @return By default, nil. -+ (nullable NSURL *)hb_shareURL; - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/CepheiPrefs.framework/Headers/HBSpinnerTableCell.h b/packages/CepheiPrefs.framework/Headers/HBSpinnerTableCell.h deleted file mode 100644 index a122445..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBSpinnerTableCell.h +++ /dev/null @@ -1,35 +0,0 @@ -#import "HBTintedTableCell.h" - -/// The HBSpinnerTableCell class in CepheiPrefs displays an activity indicator when the cell is -/// disabled. -/// -/// ### Example Usage -/// Specifier plist: -/// -/// ```xml -/// -/// action -/// doStuffTapped: -/// cell -/// PSButtonCell -/// cellClass -/// HBSpinnerTableCell -/// label -/// Do Stuff -/// -/// ``` -/// -/// List controller implementation: -/// -/// ```objc -/// - (void)doStuffTapped:(PSSpecifier *)specifier { -/// PSTableCell *cell = [self cachedCellForSpecifier:specifier]; -/// cell.cellEnabled = NO; -/// // do something in the background… -/// cell.cellEnabled = YES; -/// } -/// ``` - -@interface HBSpinnerTableCell : HBTintedTableCell - -@end diff --git a/packages/CepheiPrefs.framework/Headers/HBStepperTableCell.h b/packages/CepheiPrefs.framework/Headers/HBStepperTableCell.h deleted file mode 100644 index f07402a..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBStepperTableCell.h +++ /dev/null @@ -1,52 +0,0 @@ -#import - -/// The HBStepperTableCell class in CepheiPrefs allows setting a value using a stepper control -/// ("minus" and "plus" buttons). -/// -/// Requires iOS 6.0 or later. -/// -/// ### Specifier Parameters -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -///
label Required. The label displayed when the value is plural. Use %i -/// to denote where the number should be displayed.
max Required. The highest possible numeric value for the stepper.
min Required. The lowest possible numeric value for the stepper.
singularLabel Required. The label displayed when the value is singular.
-/// -/// ### Example Usage -/// ```xml -/// -/// cellClass -/// HBStepperTableCell -/// default -/// 5 -/// defaults -/// ws.hbang.common.demo -/// key -/// Stepper -/// label -/// %i Things -/// max -/// 15 -/// min -/// 1 -/// singularLabel -/// 1 Thing -/// -/// ``` - -@interface HBStepperTableCell : PSControlTableCell - -/// The stepper control. -@property (nonatomic, retain) UIStepper *control; - -@end diff --git a/packages/CepheiPrefs.framework/Headers/HBSupportController.h b/packages/CepheiPrefs.framework/Headers/HBSupportController.h deleted file mode 100644 index e4bf5ab..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBSupportController.h +++ /dev/null @@ -1,77 +0,0 @@ -@import UIKit; - -NS_ASSUME_NONNULL_BEGIN - -/// The HBSupportController class in CepheiPrefs provides a factory that configures an email -/// composer for package support. -/// -/// The resulting view controller should be presented modally; it should not be pushed on a -/// navigation controller stack. - -@interface HBSupportController : NSObject - -/// Initialises a Mail composer by using information provided by a bundle and preferences identifier. -/// -/// Either a bundle or preferences identifier is required. If both are nil, an exception will be -/// thrown. The email address is derived from the `Author` field of the package’s control file. -/// `HBSupportController` implicitly adds the user’s package listing (output of `dpkg -l`) and the -/// preferences plist as attachments. -/// -/// @param bundle A bundle included with the package. -/// @param preferencesIdentifier A preferences identifier that is used by the package. -/// @return A pre-configured email composer. -/// @see `+supportViewControllerForBundle:preferencesIdentifier:sendToEmail:` -+ (UIViewController *)supportViewControllerForBundle:(nullable NSBundle *)bundle preferencesIdentifier:(nullable NSString *)preferencesIdentifier; - -/// Initialises a Mail composer by using information provided by a bundle, preferences identifier, -/// and optional email address. -/// -/// Either a bundle or preferences identifier is required. If both are nil, an exception will be -/// thrown. If sendToEmail is nil, the email address is derived from the `Author` field of the -/// package’s control file. `HBSupportController` implicitly adds the user’s package listing (output -/// of `dpkg -l`) and the preferences plist as attachments. -/// -/// @param bundle A bundle included with the package. -/// @param preferencesIdentifier A preferences identifier that is used by the package. -/// @param sendToEmail The email address to prefill in the To field. Pass nil to use the email -/// address from the package. -/// @return A pre-configured email composer. -+ (UIViewController *)supportViewControllerForBundle:(nullable NSBundle *)bundle preferencesIdentifier:(nullable NSString *)preferencesIdentifier sendToEmail:(nullable NSString *)sendToEmail; - -/// @name Deprecated - -/// No longer supported. Returns nil. -/// -/// @return nil. -+ (id)linkInstructionForEmailAddress:(NSString *)emailAddress __attribute((deprecated("TechSupport is no longer supported."))); - -/// Initialises a Mail composer by using information provided by a bundle. -/// -/// Refer to `+supportViewControllerForBundle:preferencesIdentifier:linkInstruction:supportInstructions:` -/// for information on how the bundle is used. -/// -/// @param bundle A bundle included with the package. -/// @return A pre-configured email composer. -/// @see `+supportViewControllerForBundle:preferencesIdentifier:sendToEmail:` -+ (UIViewController *)supportViewControllerForBundle:(NSBundle *)bundle __attribute((deprecated("TechSupport is no longer supported."))); - -/// Initialises a Mail composer by using information provided by either a bundle or a preferences -/// identifier, and providing it a custom link instruction and support instructions. -/// -/// The bundle may set the key `HBPackageIdentifier` in its Info.plist, containing the package -/// identifier to gather information from. Otherwise, the dpkg file lists are searched to find the -/// package that contains the bundle. The package’s name, identifier, and author will be used to -/// fill out fields in the information that the user will submit. -/// -/// @param bundle A bundle included with the package. -/// @param preferencesIdentifier The preferences identifier of the package, if it’s different from -/// the package identifier that contains the bundle. -/// @param linkInstruction Ignored. -/// @param supportInstructions Ignored. -/// @return A pre-configured email composer. -/// @see `+supportViewControllerForBundle:preferencesIdentifier:` -+ (UIViewController *)supportViewControllerForBundle:(nullable NSBundle *)bundle preferencesIdentifier:(nullable NSString *)preferencesIdentifier linkInstruction:(nullable id)linkInstruction supportInstructions:(nullable NSArray *)supportInstructions __attribute((deprecated("Use +[HBSupportController supportViewControllerForBundle:preferencesIdentifier:]."))); - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/CepheiPrefs.framework/Headers/HBTintedTableCell.h b/packages/CepheiPrefs.framework/Headers/HBTintedTableCell.h deleted file mode 100644 index 3e33fa0..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBTintedTableCell.h +++ /dev/null @@ -1,43 +0,0 @@ -#import - -/// The HBTintedTableCell class in CepheiPrefs ensures that a tint set with `HBAppearanceSettings` -/// will also be applied to the title label of a of a cell intended to be used as a button. -/// -/// ### Specifier Parameters -/// HBListController extends specifiers with the following parameters: -/// -/// -/// -/// -/// -///
tintColor Optional. The color to use for the label of the cell. The default is no -/// value, which means the tint color will be inherited from the -[HBAppearanceSettings tintColor]; -/// if neither value is set, the default iOS blue tint color is used.
-/// -/// ### Example Usage -/// ```xml -/// -/// cell -/// PSButtonCell -/// cellClass -/// HBTintedTableCell -/// label -/// Do Something -/// -/// -/// -/// -/// cell -/// PSButtonCell -/// cellClass -/// HBTintedTableCell -/// label -/// Do Something -/// tintColor -/// #33b5e5 -/// -/// ``` - -@interface HBTintedTableCell : PSTableCell - -@end diff --git a/packages/CepheiPrefs.framework/Headers/HBTwitterCell.h b/packages/CepheiPrefs.framework/Headers/HBTwitterCell.h deleted file mode 100644 index deb1b80..0000000 --- a/packages/CepheiPrefs.framework/Headers/HBTwitterCell.h +++ /dev/null @@ -1,83 +0,0 @@ -#import "HBLinkTableCell.h" - -/// The HBTwitterCell class in CepheiPrefs displays a button containing a person’s name, along -/// with their Twitter username and avatar. When tapped, a Twitter client installed on the user’s -/// device or the Twitter website is opened to the person’s profile. -/// -/// ### Specifier Parameters -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -///
big Optional. Whether to display the username below the name (true) or to the right -/// of it (false). The default is false. If you set this to true, you should also set the cell’s -/// height to 56pt.
initials Optional. One or two characters to show instead of an avatar.
label Required. The name of the person.
user Required. The Twitter username of the person.
userID Optional. The Twitter user identifier number of the person. You can find -/// the user ID using online tools. -///
showAvatar Optional. Whether to show the avatar of the user. The default is -/// true.
iconURL Optional. The URL to an image to display. The default is no value, meaning -/// meaning to retrieve the avatar for the Twitter username specified in the user property.
iconCircular Optional. Whether the icon should be displayed as a circle. The -/// default is YES.
-/// -/// ### Example Usage -/// ```xml -/// -/// -/// cellClass -/// HBTwitterCell -/// label -/// HASHBANG Productions -/// user -/// hashbang -/// -/// -/// -/// -/// big -/// -/// cellClass -/// HBTwitterCell -/// height -/// 56 -/// label -/// HASHBANG Productions -/// user -/// hashbang -/// -/// -/// -/// -/// cellClass -/// HBTwitterCell -/// label -/// HASHBANG Productions -/// showAvatar -/// -/// user -/// hashbang -/// -/// ``` - -@interface HBTwitterCell : HBLinkTableCell - -@end diff --git a/packages/CepheiPrefs.framework/Headers/PSListController+HBTintAdditions.h b/packages/CepheiPrefs.framework/Headers/PSListController+HBTintAdditions.h deleted file mode 100644 index a11379f..0000000 --- a/packages/CepheiPrefs.framework/Headers/PSListController+HBTintAdditions.h +++ /dev/null @@ -1,20 +0,0 @@ -#import - -@class HBAppearanceSettings; - -NS_ASSUME_NONNULL_BEGIN - -/// The PSListController (HBTintAdditions) class category in CepheiPrefs provides a property for -/// setting the desired appearance settings of the view controller. - -@interface PSListController (HBTintAdditions) - -/// The appearance settings for the view controller. -/// -/// This should only be set in an init or viewDidLoad method of the view controller. The result when -/// this property or its properties are changed after the view has appeared is undefined. -@property (nonatomic, copy, nullable, setter=hb_setAppearanceSettings:) HBAppearanceSettings *hb_appearanceSettings NS_SWIFT_NAME(appearanceSettings); - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/CepheiPrefs.framework/Info.plist b/packages/CepheiPrefs.framework/Info.plist deleted file mode 100644 index 3b60382..0000000 --- a/packages/CepheiPrefs.framework/Info.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - CepheiPrefs - CFBundleIdentifier - ws.hbang.common.prefs - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - Cephei - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - DTPlatformName - iphoneos - HBPackageIdentifier - ws.hbang.common - NSPrincipalClass - HBDemoRootListController - - diff --git a/packages/CepheiPrefs.framework/ar.lproj/Common.strings b/packages/CepheiPrefs.framework/ar.lproj/Common.strings deleted file mode 100644 index 7f212b1..0000000 --- a/packages/CepheiPrefs.framework/ar.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - حول - CREDITS - الشُكر والتقدير - GENERAL - عام - SUPPORT - الدعم - - - ENABLED - تشغيل - - - OFF - إيقاف - ON - تشغيل - - - VISIT_WEBSITE - زيارة موقعنا - - - EMAIL_SUPPORT_HEADER - لديك مشكلة؟ - - - EMAIL_SUPPORT - الدعم بواسطة البريد الإلكتروني - - - DONATE - جرة البقشيش - - - DONATE_FOOTER - يرجى التفكير في إظهار تقديرك لهذه الأداة عبر تبرع صغير لجرة البقشيش. - - - DEVELOPER - المبرمج - DEVELOPERS - المبرمجون - LEAD_DEVELOPER - رئيس المبرمجين - DESIGNER - المُصمم - DESIGNERS - المُصممون - ICON - الأيكونة - ICONS - الأيكونات - TRANSLATORS - المترجمون - - - ENTER_VALUE - أدخل قيمة - - diff --git a/packages/CepheiPrefs.framework/ar.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/ar.lproj/PackageCell.strings deleted file mode 100644 index 567cb75..0000000 --- a/packages/CepheiPrefs.framework/ar.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - فتح في... - - - OPEN_PACKAGE_IN_REPO_NOTICE - سيتم تثبيت هذه الحزمة من مستودع %@. - - diff --git a/packages/CepheiPrefs.framework/ar.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/ar.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index b5f0379..0000000 --- a/packages/CepheiPrefs.framework/ar.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - رقم الإصدار %@ - - - HEADER_AUTHOR - بواسطة %@ - - diff --git a/packages/CepheiPrefs.framework/ar.lproj/Support.strings b/packages/CepheiPrefs.framework/ar.lproj/Support.strings deleted file mode 100644 index 3c61b2e..0000000 --- a/packages/CepheiPrefs.framework/ar.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - الدعم - - - SUPPORT_EMAIL_SUBJECT - الدعم - %@ %@ - - - NO_EMAIL_ACCOUNTS_TITLE - لم يتم إعداد أي حسابات بريد. - - - NO_EMAIL_ACCOUNTS_BODY - استخدم إعدادات البريد لإضافة حساب جديد. - - diff --git a/packages/CepheiPrefs.framework/ca.lproj/Common.strings b/packages/CepheiPrefs.framework/ca.lproj/Common.strings deleted file mode 100644 index 673b163..0000000 --- a/packages/CepheiPrefs.framework/ca.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Sobre - CREDITS - Crèdits - GENERAL - General - SUPPORT - Suport - - - ENABLED - Habilitat - - - OFF - No - ON - - - - VISIT_WEBSITE - Visitar pàgina web - - - EMAIL_SUPPORT_HEADER - Tens problemes? - - - EMAIL_SUPPORT - Suport per correu-e - - - DONATE - Fer una donació - - - DONATE_FOOTER - Si us plau, mostreu el vostra apreci per aquest tweak mitjançant una donació. - - - DEVELOPER - Desenvolupador - DEVELOPERS - Desenvolupadors - LEAD_DEVELOPER - Desenvolupador en cap - DESIGNER - Dissenyador - DESIGNERS - Dissenyadors - ICON - Icona - ICONS - Icones - TRANSLATORS - Traductors - - - ENTER_VALUE - Introduir valor - - diff --git a/packages/CepheiPrefs.framework/ca.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/ca.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/ca.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/ca.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/ca.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index c7e7d41..0000000 --- a/packages/CepheiPrefs.framework/ca.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versió %@ - - - HEADER_AUTHOR - Fet per %@ - - diff --git a/packages/CepheiPrefs.framework/ca.lproj/Support.strings b/packages/CepheiPrefs.framework/ca.lproj/Support.strings deleted file mode 100644 index 69212ed..0000000 --- a/packages/CepheiPrefs.framework/ca.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Suport - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Suport - - diff --git a/packages/CepheiPrefs.framework/cs.lproj/Common.strings b/packages/CepheiPrefs.framework/cs.lproj/Common.strings deleted file mode 100644 index 03ff35d..0000000 --- a/packages/CepheiPrefs.framework/cs.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - O aplikaci - CREDITS - Podìkování - GENERAL - Obecné - SUPPORT - Podpora - - - ENABLED - Povoleno - - - OFF - Vypnuto - ON - Zapnuto - - - VISIT_WEBSITE - Navštívit stránku - - - EMAIL_SUPPORT_HEADER - Máte problémy? - - - EMAIL_SUPPORT - E-Mailová podpora - - - DONATE - Přispívání - - - DONATE_FOOTER - Poděkujte tomuto projektu přispěním do projektu. - - - DEVELOPER - Vývojář - DEVELOPERS - Vývojáři - LEAD_DEVELOPER - Hlavní vývojář - DESIGNER - Designér - DESIGNERS - Designeři - ICON - Ikona - ICONS - Ikony - TRANSLATORS - Překladatelé - - - ENTER_VALUE - Přidat hodnotu - - diff --git a/packages/CepheiPrefs.framework/cs.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/cs.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/cs.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/cs.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/cs.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 3d53175..0000000 --- a/packages/CepheiPrefs.framework/cs.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Verze %@ - - - HEADER_AUTHOR - Od %@ - - diff --git a/packages/CepheiPrefs.framework/cs.lproj/Support.strings b/packages/CepheiPrefs.framework/cs.lproj/Support.strings deleted file mode 100644 index 8133b3d..0000000 --- a/packages/CepheiPrefs.framework/cs.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Podpora - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Podpora - - diff --git a/packages/CepheiPrefs.framework/da.lproj/Common.strings b/packages/CepheiPrefs.framework/da.lproj/Common.strings deleted file mode 100644 index e4d0a82..0000000 --- a/packages/CepheiPrefs.framework/da.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Om - CREDITS - Tak til - GENERAL - Generelt - SUPPORT - Support - - - ENABLED - Aktiveret - - - OFF - Fra - ON - Til - - - VISIT_WEBSITE - Besøg Hjemmesiden - - - EMAIL_SUPPORT_HEADER - Har du problemer? - - - EMAIL_SUPPORT - Email Support - - - DONATE - Donér - - - DONATE_FOOTER - Overvej venligst at vise din taknemmelighed for denne tweak med en lille donation. - - - DEVELOPER - Udvikler - DEVELOPERS - Udviklere - LEAD_DEVELOPER - Hoved Udvikler - DESIGNER - Designer - DESIGNERS - Designere - ICON - Ikon - ICONS - Icons - TRANSLATORS - Oversættere - - - ENTER_VALUE - Indtast værdi - - diff --git a/packages/CepheiPrefs.framework/da.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/da.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/da.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/da.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/da.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 41f724a..0000000 --- a/packages/CepheiPrefs.framework/da.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Version %@ - - - HEADER_AUTHOR - Af %@ - - \ No newline at end of file diff --git a/packages/CepheiPrefs.framework/da.lproj/Support.strings b/packages/CepheiPrefs.framework/da.lproj/Support.strings deleted file mode 100644 index 18575e4..0000000 --- a/packages/CepheiPrefs.framework/da.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Support - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Support - - \ No newline at end of file diff --git a/packages/CepheiPrefs.framework/de.lproj/Common.strings b/packages/CepheiPrefs.framework/de.lproj/Common.strings deleted file mode 100644 index e64155d..0000000 --- a/packages/CepheiPrefs.framework/de.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Informationen - CREDITS - Credits - GENERAL - Allgemein - SUPPORT - Support - - - ENABLED - Aktiviert - - - OFF - Aus - ON - Ein - - - VISIT_WEBSITE - Website besuchen - - - EMAIL_SUPPORT_HEADER - Bestehen Probleme? - - - EMAIL_SUPPORT - Email Support - - - DONATE - Spenden - - - DONATE_FOOTER - Zeigen Sie Ihr Interesse an dieser Optimierung, indem Sie eine Spende machen. - - - DEVELOPER - Entwickler - DEVELOPERS - Entwickler - LEAD_DEVELOPER - Führender Entwickler - DESIGNER - Designer - DESIGNERS - Designer - ICON - Symbol - ICONS - Symbole - TRANSLATORS - Übersetzer - - - ENTER_VALUE - Wert eingeben - - diff --git a/packages/CepheiPrefs.framework/de.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/de.lproj/PackageCell.strings deleted file mode 100644 index f623aa1..0000000 --- a/packages/CepheiPrefs.framework/de.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Öffnen in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Dieses Paket wird von der Quelle %@ installiert.. - - diff --git a/packages/CepheiPrefs.framework/de.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/de.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 573caee..0000000 --- a/packages/CepheiPrefs.framework/de.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Version %@ - - - HEADER_AUTHOR - Von %@ - - diff --git a/packages/CepheiPrefs.framework/de.lproj/Support.strings b/packages/CepheiPrefs.framework/de.lproj/Support.strings deleted file mode 100644 index d6fe3e4..0000000 --- a/packages/CepheiPrefs.framework/de.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Support - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Support - - - NO_EMAIL_ACCOUNTS_TITLE - Es ist kein E-Mail-Konto konfiguriert. - - - NO_EMAIL_ACCOUNTS_BODY - Verwenden Sie die E-Mail-Optionen, um ein neues Konto hinzuzufügen. - - diff --git a/packages/CepheiPrefs.framework/el.lproj/Common.strings b/packages/CepheiPrefs.framework/el.lproj/Common.strings deleted file mode 100644 index 42fa81c..0000000 --- a/packages/CepheiPrefs.framework/el.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Σχετικά - CREDITS - Έπαινοι - GENERAL - Γενικά - SUPPORT - Υποστήριξη - - - ENABLED - Ενεργοποιημένο - - - OFF - Όχι - ON - Ναι - - - VISIT_WEBSITE - Επισκεφθείτε την ιστοσελίδα - - - EMAIL_SUPPORT_HEADER - Παρουσιάζονται προβλήματα; - - - EMAIL_SUPPORT - Υποστήριξη μέσω Email - - - DONATE - Εισφορά - - - DONATE_FOOTER - Παρακαλώ όπως δείξετε την εκτίμησή σας για αυτό το tweak με μια εισφορά. - - - DEVELOPER - Δημιουργός - DEVELOPERS - Δημιουργοί - LEAD_DEVELOPER - Κύριος Δημιουργός - DESIGNER - Σχεδιαστής - DESIGNERS - Σχεδιαστές - ICON - Εικονίδιο - ICONS - Εικονίδια - TRANSLATORS - Μεταφραστές - - - ENTER_VALUE - Εισάγετε τιμή - - diff --git a/packages/CepheiPrefs.framework/el.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/el.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/el.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/el.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/el.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 41f8b9c..0000000 --- a/packages/CepheiPrefs.framework/el.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Έκδοση %@ - - - HEADER_AUTHOR - Από %@ - - diff --git a/packages/CepheiPrefs.framework/el.lproj/Support.strings b/packages/CepheiPrefs.framework/el.lproj/Support.strings deleted file mode 100644 index b7d0e51..0000000 --- a/packages/CepheiPrefs.framework/el.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Υποστήριξη - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Υποστήριξη - - diff --git a/packages/CepheiPrefs.framework/en.lproj/Common.strings b/packages/CepheiPrefs.framework/en.lproj/Common.strings deleted file mode 100644 index 62e11aa..0000000 --- a/packages/CepheiPrefs.framework/en.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - About - CREDITS - Credits - GENERAL - General - SUPPORT - Support - - - ENABLED - Enabled - - - OFF - Off - ON - On - - - VISIT_WEBSITE - Visit Website - - - EMAIL_SUPPORT_HEADER - Having Problems? - - - EMAIL_SUPPORT - Email Support - - - DONATE - Tip Jar - - - DONATE_FOOTER - Please consider showing your appreciation for this tweak with a small donation to the tip jar. - - - DEVELOPER - Developer - DEVELOPERS - Developers - LEAD_DEVELOPER - Lead Developer - DESIGNER - Designer - DESIGNERS - Designers - ICON - Icon - ICONS - Icons - TRANSLATORS - Translators - - - ENTER_VALUE - Enter Value - - diff --git a/packages/CepheiPrefs.framework/en.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/en.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/en.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/en.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/en.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index c49fca8..0000000 --- a/packages/CepheiPrefs.framework/en.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Version %@ - - - HEADER_AUTHOR - By %@ - - diff --git a/packages/CepheiPrefs.framework/en.lproj/Support.strings b/packages/CepheiPrefs.framework/en.lproj/Support.strings deleted file mode 100644 index 9779ef2..0000000 --- a/packages/CepheiPrefs.framework/en.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Support - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Support - - - NO_EMAIL_ACCOUNTS_TITLE - No mail accounts are set up. - - - NO_EMAIL_ACCOUNTS_BODY - Use the Mail settings to add a new account. - - diff --git a/packages/CepheiPrefs.framework/en_AU.lproj/Common.strings b/packages/CepheiPrefs.framework/en_AU.lproj/Common.strings deleted file mode 100644 index 62e11aa..0000000 --- a/packages/CepheiPrefs.framework/en_AU.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - About - CREDITS - Credits - GENERAL - General - SUPPORT - Support - - - ENABLED - Enabled - - - OFF - Off - ON - On - - - VISIT_WEBSITE - Visit Website - - - EMAIL_SUPPORT_HEADER - Having Problems? - - - EMAIL_SUPPORT - Email Support - - - DONATE - Tip Jar - - - DONATE_FOOTER - Please consider showing your appreciation for this tweak with a small donation to the tip jar. - - - DEVELOPER - Developer - DEVELOPERS - Developers - LEAD_DEVELOPER - Lead Developer - DESIGNER - Designer - DESIGNERS - Designers - ICON - Icon - ICONS - Icons - TRANSLATORS - Translators - - - ENTER_VALUE - Enter Value - - diff --git a/packages/CepheiPrefs.framework/en_AU.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/en_AU.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/en_AU.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/en_AU.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/en_AU.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index c49fca8..0000000 --- a/packages/CepheiPrefs.framework/en_AU.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Version %@ - - - HEADER_AUTHOR - By %@ - - diff --git a/packages/CepheiPrefs.framework/en_AU.lproj/Support.strings b/packages/CepheiPrefs.framework/en_AU.lproj/Support.strings deleted file mode 100644 index 9779ef2..0000000 --- a/packages/CepheiPrefs.framework/en_AU.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Support - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Support - - - NO_EMAIL_ACCOUNTS_TITLE - No mail accounts are set up. - - - NO_EMAIL_ACCOUNTS_BODY - Use the Mail settings to add a new account. - - diff --git a/packages/CepheiPrefs.framework/en_GB.lproj/Common.strings b/packages/CepheiPrefs.framework/en_GB.lproj/Common.strings deleted file mode 100644 index 62e11aa..0000000 --- a/packages/CepheiPrefs.framework/en_GB.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - About - CREDITS - Credits - GENERAL - General - SUPPORT - Support - - - ENABLED - Enabled - - - OFF - Off - ON - On - - - VISIT_WEBSITE - Visit Website - - - EMAIL_SUPPORT_HEADER - Having Problems? - - - EMAIL_SUPPORT - Email Support - - - DONATE - Tip Jar - - - DONATE_FOOTER - Please consider showing your appreciation for this tweak with a small donation to the tip jar. - - - DEVELOPER - Developer - DEVELOPERS - Developers - LEAD_DEVELOPER - Lead Developer - DESIGNER - Designer - DESIGNERS - Designers - ICON - Icon - ICONS - Icons - TRANSLATORS - Translators - - - ENTER_VALUE - Enter Value - - diff --git a/packages/CepheiPrefs.framework/en_GB.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/en_GB.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/en_GB.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/en_GB.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/en_GB.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index c49fca8..0000000 --- a/packages/CepheiPrefs.framework/en_GB.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Version %@ - - - HEADER_AUTHOR - By %@ - - diff --git a/packages/CepheiPrefs.framework/en_GB.lproj/Support.strings b/packages/CepheiPrefs.framework/en_GB.lproj/Support.strings deleted file mode 100644 index 9779ef2..0000000 --- a/packages/CepheiPrefs.framework/en_GB.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Support - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Support - - - NO_EMAIL_ACCOUNTS_TITLE - No mail accounts are set up. - - - NO_EMAIL_ACCOUNTS_BODY - Use the Mail settings to add a new account. - - diff --git a/packages/CepheiPrefs.framework/entry.plist b/packages/CepheiPrefs.framework/entry.plist deleted file mode 100644 index 5e064e5..0000000 --- a/packages/CepheiPrefs.framework/entry.plist +++ /dev/null @@ -1,21 +0,0 @@ - - - - - entry - - bundle - Cephei - cell - PSLinkCell - detail - HBDemoRootListController - icon - icon.png - isController - - label - Cephei Demo - - - diff --git a/packages/CepheiPrefs.framework/es.lproj/Common.strings b/packages/CepheiPrefs.framework/es.lproj/Common.strings deleted file mode 100644 index daf1b0a..0000000 --- a/packages/CepheiPrefs.framework/es.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Acerca - CREDITS - Créditos - GENERAL - General - SUPPORT - Soporte - - - ENABLED - Habilitado - - - OFF - No - ON - - - - VISIT_WEBSITE - Visitar sitio web - - - EMAIL_SUPPORT_HEADER - ¿Tienes problemas? - - - EMAIL_SUPPORT - Soporte por email - - - DONATE - Tarro de Donaciones - - - DONATE_FOOTER - Considera mostrar tu aprecio a este tweak con una pequeña donación al tarro de donaciones. - - - DEVELOPER - Desarrollador - DEVELOPERS - Desarrolladores - LEAD_DEVELOPER - Desarrollador principal - DESIGNER - Diseñador - DESIGNERS - Diseñadores - ICON - Icono - ICONS - Iconos - TRANSLATORS - Traductores - - - ENTER_VALUE - Introducid valor - - diff --git a/packages/CepheiPrefs.framework/es.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/es.lproj/PackageCell.strings deleted file mode 100644 index 3088dc5..0000000 --- a/packages/CepheiPrefs.framework/es.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Abrir en… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Este paquete será instalado del repositorio %@. - - diff --git a/packages/CepheiPrefs.framework/es.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/es.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index ec293d8..0000000 --- a/packages/CepheiPrefs.framework/es.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versión %@ - - - HEADER_AUTHOR - Por %@ - - diff --git a/packages/CepheiPrefs.framework/es.lproj/Support.strings b/packages/CepheiPrefs.framework/es.lproj/Support.strings deleted file mode 100644 index 7c9b7a3..0000000 --- a/packages/CepheiPrefs.framework/es.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Soporte - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Soporte - - - NO_EMAIL_ACCOUNTS_TITLE - No hay cuentas de correo configuradas. - - - NO_EMAIL_ACCOUNTS_BODY - Usa los ajustes de Mail para añadir una nueva cuenta. - - diff --git a/packages/CepheiPrefs.framework/es_MX.lproj/Common.strings b/packages/CepheiPrefs.framework/es_MX.lproj/Common.strings deleted file mode 100644 index daf1b0a..0000000 --- a/packages/CepheiPrefs.framework/es_MX.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Acerca - CREDITS - Créditos - GENERAL - General - SUPPORT - Soporte - - - ENABLED - Habilitado - - - OFF - No - ON - - - - VISIT_WEBSITE - Visitar sitio web - - - EMAIL_SUPPORT_HEADER - ¿Tienes problemas? - - - EMAIL_SUPPORT - Soporte por email - - - DONATE - Tarro de Donaciones - - - DONATE_FOOTER - Considera mostrar tu aprecio a este tweak con una pequeña donación al tarro de donaciones. - - - DEVELOPER - Desarrollador - DEVELOPERS - Desarrolladores - LEAD_DEVELOPER - Desarrollador principal - DESIGNER - Diseñador - DESIGNERS - Diseñadores - ICON - Icono - ICONS - Iconos - TRANSLATORS - Traductores - - - ENTER_VALUE - Introducid valor - - diff --git a/packages/CepheiPrefs.framework/es_MX.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/es_MX.lproj/PackageCell.strings deleted file mode 100644 index 3088dc5..0000000 --- a/packages/CepheiPrefs.framework/es_MX.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Abrir en… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Este paquete será instalado del repositorio %@. - - diff --git a/packages/CepheiPrefs.framework/es_MX.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/es_MX.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index ec293d8..0000000 --- a/packages/CepheiPrefs.framework/es_MX.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versión %@ - - - HEADER_AUTHOR - Por %@ - - diff --git a/packages/CepheiPrefs.framework/es_MX.lproj/Support.strings b/packages/CepheiPrefs.framework/es_MX.lproj/Support.strings deleted file mode 100644 index 7c9b7a3..0000000 --- a/packages/CepheiPrefs.framework/es_MX.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Soporte - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Soporte - - - NO_EMAIL_ACCOUNTS_TITLE - No hay cuentas de correo configuradas. - - - NO_EMAIL_ACCOUNTS_BODY - Usa los ajustes de Mail para añadir una nueva cuenta. - - diff --git a/packages/CepheiPrefs.framework/fi.lproj/Common.strings b/packages/CepheiPrefs.framework/fi.lproj/Common.strings deleted file mode 100644 index 4a7f878..0000000 --- a/packages/CepheiPrefs.framework/fi.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Tietoja - CREDITS - Kiitokset - GENERAL - Yleiset - SUPPORT - Tuki - - - ENABLED - Päällä - - - OFF - Pois - ON - Päällä - - - VISIT_WEBSITE - Vieraile verkkosivulla - - - EMAIL_SUPPORT_HEADER - Onko ongelmia? - - - EMAIL_SUPPORT - Sähköpostituki - - - DONATE - Lahjoita - - - DONATE_FOOTER - Mikäli olet tyytyväinen tähän twiikkiin, harkitse lahjoituksen antamista. - - - DEVELOPER - Kehittäjä - DEVELOPERS - Kehittäjät - LEAD_DEVELOPER - Pääkehittäjä - DESIGNER - Suunnittelija - DESIGNERS - Suunnittelijat - ICON - Kuvake - ICONS - Kuvakkeet - TRANSLATORS - Kääntäjät - - - ENTER_VALUE - Anna arvo - - diff --git a/packages/CepheiPrefs.framework/fi.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/fi.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/fi.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/fi.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/fi.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index f8251f4..0000000 --- a/packages/CepheiPrefs.framework/fi.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versio %@ - - - HEADER_AUTHOR - %@ - - diff --git a/packages/CepheiPrefs.framework/fi.lproj/Support.strings b/packages/CepheiPrefs.framework/fi.lproj/Support.strings deleted file mode 100644 index 6478758..0000000 --- a/packages/CepheiPrefs.framework/fi.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Tuki - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Tuki - - diff --git a/packages/CepheiPrefs.framework/fr.lproj/Common.strings b/packages/CepheiPrefs.framework/fr.lproj/Common.strings deleted file mode 100644 index bdefc76..0000000 --- a/packages/CepheiPrefs.framework/fr.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - À propos - CREDITS - Crédits - GENERAL - Général - SUPPORT - Aide - - - ENABLED - Activé - - - OFF - Désactivé - ON - Activé - - - VISIT_WEBSITE - Visiter le site web - - - EMAIL_SUPPORT_HEADER - Des problèmes ? - - - EMAIL_SUPPORT - Aide par email - - - DONATE - Faire un don - - - DONATE_FOOTER - Montrez votre intérêt pour ce tweak en faisant un don - - - DEVELOPER - Développeur - DEVELOPERS - Développeurs - LEAD_DEVELOPER - Développeur principal - DESIGNER - Designer - DESIGNERS - Designers - ICON - Icône - ICONS - Icônes - TRANSLATORS - Traducteurs - - - ENTER_VALUE - Entrer une valeur - - diff --git a/packages/CepheiPrefs.framework/fr.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/fr.lproj/PackageCell.strings deleted file mode 100644 index e3a81ac..0000000 --- a/packages/CepheiPrefs.framework/fr.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Ouvrir dans… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Ce paquet sera installé depuis la source %@. - - diff --git a/packages/CepheiPrefs.framework/fr.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/fr.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 384dbfc..0000000 --- a/packages/CepheiPrefs.framework/fr.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Version %@ - - - HEADER_AUTHOR - Par %@ - - diff --git a/packages/CepheiPrefs.framework/fr.lproj/Support.strings b/packages/CepheiPrefs.framework/fr.lproj/Support.strings deleted file mode 100644 index ea69abd..0000000 --- a/packages/CepheiPrefs.framework/fr.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Aide - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Aide - - - NO_EMAIL_ACCOUNTS_TITLE - Aucun compte mail n'est paramétré - - - NO_EMAIL_ACCOUNTS_BODY - Utilisez les options de Mail pour ajouter un nouveau compte. - - diff --git a/packages/CepheiPrefs.framework/fr_CA.lproj/Common.strings b/packages/CepheiPrefs.framework/fr_CA.lproj/Common.strings deleted file mode 100644 index fc0ef5c..0000000 --- a/packages/CepheiPrefs.framework/fr_CA.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - À propos - CREDITS - Crédits - GENERAL - Général - SUPPORT - Aide - - - ENABLED - Activé - - - OFF - Désactivé - ON - Activé - - - VISIT_WEBSITE - Visiter le site web - - - EMAIL_SUPPORT_HEADER - Des problèmes? - - - EMAIL_SUPPORT - Aide par email - - - DONATE - Faire un don - - - DONATE_FOOTER - Montrez votre intérêt pour ce tweak en faisant un don - - - DEVELOPER - Développeur - DEVELOPERS - Développeurs - LEAD_DEVELOPER - Développeur principal - DESIGNER - Designer - DESIGNERS - Designers - ICON - Icône - ICONS - Icônes - TRANSLATORS - Traducteurs - - - ENTER_VALUE - Entrer une valeur - - diff --git a/packages/CepheiPrefs.framework/fr_CA.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/fr_CA.lproj/PackageCell.strings deleted file mode 100644 index e3a81ac..0000000 --- a/packages/CepheiPrefs.framework/fr_CA.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Ouvrir dans… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Ce paquet sera installé depuis la source %@. - - diff --git a/packages/CepheiPrefs.framework/fr_CA.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/fr_CA.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 384dbfc..0000000 --- a/packages/CepheiPrefs.framework/fr_CA.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Version %@ - - - HEADER_AUTHOR - Par %@ - - diff --git a/packages/CepheiPrefs.framework/fr_CA.lproj/Support.strings b/packages/CepheiPrefs.framework/fr_CA.lproj/Support.strings deleted file mode 100644 index ea69abd..0000000 --- a/packages/CepheiPrefs.framework/fr_CA.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Aide - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Aide - - - NO_EMAIL_ACCOUNTS_TITLE - Aucun compte mail n'est paramétré - - - NO_EMAIL_ACCOUNTS_BODY - Utilisez les options de Mail pour ajouter un nouveau compte. - - diff --git a/packages/CepheiPrefs.framework/he.lproj/Common.strings b/packages/CepheiPrefs.framework/he.lproj/Common.strings deleted file mode 100644 index 5f537fa..0000000 --- a/packages/CepheiPrefs.framework/he.lproj/Common.strings +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - ABOUT - אודות - CREDITS - קרדיטים - GENERAL - כללי - SUPPORT - תמיכה - - - ENABLED - מופעל - - - OFF - כבוי - ON - פעיל - - - VISIT_WEBSITE - בקר/י באתר - - - EMAIL_SUPPORT_HEADER - חווה בעיות? - - - EMAIL_SUPPORT - שלח/י דואר לתמיכה - - - DONATE - כוס טיפים - - DONATE_FOOTER - אנא שקול/י להראות את הערתך לטוויק זה עם תרומה קטנה לכוס הטיפים. - - - DEVELOPER - מפתח - DEVELOPERS - מפתחים - LEAD_DEVELOPER - מפתח מוביל - DESIGNER - מעצב - DESIGNERS - מעצבים - ICON - אייקון - ICONS - אייקונים - TRANSLATORS - מתרגמים - - - ENTER_VALUE - הכנס ערך - - diff --git a/packages/CepheiPrefs.framework/he.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/he.lproj/PackageCell.strings deleted file mode 100644 index fdb699a..0000000 --- a/packages/CepheiPrefs.framework/he.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - פתח ב... - - - OPEN_PACKAGE_IN_REPO_NOTICE - חבילה זו תותקן מהמקור %@. - - diff --git a/packages/CepheiPrefs.framework/he.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/he.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index f554c76..0000000 --- a/packages/CepheiPrefs.framework/he.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - גרסה %@ - - - HEADER_AUTHOR - על ידי %@ - - diff --git a/packages/CepheiPrefs.framework/he.lproj/Support.strings b/packages/CepheiPrefs.framework/he.lproj/Support.strings deleted file mode 100644 index 7de3ca6..0000000 --- a/packages/CepheiPrefs.framework/he.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - אין חשבונות דוא"ל שהוגדרו.. - - - NO_EMAIL_ACCOUNTS_BODY - השתמש/י בהגדרות דוא"ל כדי להוסיף חשבון חדש. - - diff --git a/packages/CepheiPrefs.framework/heart.png b/packages/CepheiPrefs.framework/heart.png deleted file mode 100644 index aa4fae4..0000000 Binary files a/packages/CepheiPrefs.framework/heart.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/heart@2x.png b/packages/CepheiPrefs.framework/heart@2x.png deleted file mode 100644 index 994a89c..0000000 Binary files a/packages/CepheiPrefs.framework/heart@2x.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/heart@3x.png b/packages/CepheiPrefs.framework/heart@3x.png deleted file mode 100644 index 393ba39..0000000 Binary files a/packages/CepheiPrefs.framework/heart@3x.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/hi.lproj/Common.strings b/packages/CepheiPrefs.framework/hi.lproj/Common.strings deleted file mode 100644 index 3cca655..0000000 --- a/packages/CepheiPrefs.framework/hi.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - के बारे में - CREDITS - क्रेडिट्स - GENERAL - सामान्य - SUPPORT - समर्थन - - - ENABLED - सक्षम किया - - - OFF - बंद - ON - चालू - - - VISIT_WEBSITE - बेवसाइट देखना - - - EMAIL_SUPPORT_HEADER - समस्याएं आ रही हैं? - - - EMAIL_SUPPORT - ई - मेल समर्थन - - - DONATE - दान - - - DONATE_FOOTER - एक दान के साथ इस tweak के लिए अपनी प्रशंसा दिखा पर विचार करें। - - - DEVELOPER - डेवलपर - DEVELOPERS - डेवलपर्स - LEAD_DEVELOPER - प्रमुख डेवलपर - DESIGNER - डिजाइनर - DESIGNERS - डिजाइनर - ICON - चिह्न - ICONS - प्रतीक - TRANSLATORS - अनुवादक - - - ENTER_VALUE - मूल्य दर्ज करें - - diff --git a/packages/CepheiPrefs.framework/hi.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/hi.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/hi.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/hi.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/hi.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index d697405..0000000 --- a/packages/CepheiPrefs.framework/hi.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - संस्करण %@ - - - HEADER_AUTHOR - द्वारा %@ - - diff --git a/packages/CepheiPrefs.framework/hi.lproj/Support.strings b/packages/CepheiPrefs.framework/hi.lproj/Support.strings deleted file mode 100644 index ee3d499..0000000 --- a/packages/CepheiPrefs.framework/hi.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - समर्थन - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – समर्थन - - diff --git a/packages/CepheiPrefs.framework/hr.lproj/Common.strings b/packages/CepheiPrefs.framework/hr.lproj/Common.strings deleted file mode 100644 index 5d4122d..0000000 --- a/packages/CepheiPrefs.framework/hr.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - O Nama - CREDITS - Zasluge - GENERAL - Općenito - SUPPORT - Podrška - - - ENABLED - Uključeno - - - OFF - Isključeno - ON - Uključeno - - - VISIT_WEBSITE - Posjeti Web Stranicu - - - EMAIL_SUPPORT_HEADER - Imaš Poteškoća? - - - EMAIL_SUPPORT - Kontaktiraj Podršku - - - DONATE - Doniraj - - - DONATE_FOOTER - Molimo pokažite zahvalnost za ovaj tweak donirajući. - - - DEVELOPER - Programer - DEVELOPERS - Programeri - LEAD_DEVELOPER - Glavni Programer - DESIGNER - Dizajner - DESIGNERS - Dizajneri - ICON - Ikona - ICONS - Ikone - TRANSLATORS - Prevoditelji - - - ENTER_VALUE - Unesi vrijednost - - diff --git a/packages/CepheiPrefs.framework/hr.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/hr.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/hr.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/hr.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/hr.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index f9a7d25..0000000 --- a/packages/CepheiPrefs.framework/hr.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Verzija %@ - - - HEADER_AUTHOR - Od %@ - - diff --git a/packages/CepheiPrefs.framework/hr.lproj/Support.strings b/packages/CepheiPrefs.framework/hr.lproj/Support.strings deleted file mode 100644 index 6dc5e02..0000000 --- a/packages/CepheiPrefs.framework/hr.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Podrška - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Podrška - - diff --git a/packages/CepheiPrefs.framework/hu.lproj/Common.strings b/packages/CepheiPrefs.framework/hu.lproj/Common.strings deleted file mode 100644 index 5d48738..0000000 --- a/packages/CepheiPrefs.framework/hu.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Infó - CREDITS - Készítõk - GENERAL - Általános - SUPPORT - Támogatás - - - ENABLED - Engedélyezés - - - OFF - Ki - ON - Be - - - VISIT_WEBSITE - Weboldal megtekintése - - - EMAIL_SUPPORT_HEADER - Problémád akadt? - - - EMAIL_SUPPORT - Email támogatás - - - DONATE - Adakozás - - - DONATE_FOOTER - Munkánk elismeréseként kérlek fontold meg az adakozást számunkra. - - - DEVELOPER - Fejleszõ - DEVELOPERS - Fejlesztõk - LEAD_DEVELOPER - Vezetõ fejlesztõ - DESIGNER - Tervezõ - DESIGNERS - Tervezõk - ICON - Ikon - ICONS - Ikonok - TRANSLATORS - Fordítók - - - ENTER_VALUE - Adj meg egy értéket - - diff --git a/packages/CepheiPrefs.framework/hu.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/hu.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/hu.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/hu.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/hu.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 49c7a33..0000000 --- a/packages/CepheiPrefs.framework/hu.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Verzió %@ - - - HEADER_AUTHOR - Készítette %@ - - diff --git a/packages/CepheiPrefs.framework/hu.lproj/Support.strings b/packages/CepheiPrefs.framework/hu.lproj/Support.strings deleted file mode 100644 index da220b2..0000000 --- a/packages/CepheiPrefs.framework/hu.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Támogatás - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Támogatás - - diff --git a/packages/CepheiPrefs.framework/icon.png b/packages/CepheiPrefs.framework/icon.png deleted file mode 100644 index 4506924..0000000 Binary files a/packages/CepheiPrefs.framework/icon.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/icon@2x.png b/packages/CepheiPrefs.framework/icon@2x.png deleted file mode 100644 index 96e2f07..0000000 Binary files a/packages/CepheiPrefs.framework/icon@2x.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/icon@3x.png b/packages/CepheiPrefs.framework/icon@3x.png deleted file mode 100644 index c8e80d6..0000000 Binary files a/packages/CepheiPrefs.framework/icon@3x.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/id.lproj/Common.strings b/packages/CepheiPrefs.framework/id.lproj/Common.strings deleted file mode 100644 index fe77361..0000000 --- a/packages/CepheiPrefs.framework/id.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Tentang - CREDITS - Daftar Penghargaan - GENERAL - Umum - SUPPORT - Bantuan - - - ENABLED - Diaktifkan - - - OFF - Mati - ON - Nyala - - - VISIT_WEBSITE - Kunjungi Situs - - - EMAIL_SUPPORT_HEADER - Ada masalah? - - - EMAIL_SUPPORT - Email Bantuan - - - DONATE - Kotak donasi - - - DONATE_FOOTER - Tunjukkan apresiasimu terhadap tweak ini dengan donasi. - - - DEVELOPER - Pengembang - DEVELOPERS - Pengembang - LEAD_DEVELOPER - Pimpinan Pengembang - DESIGNER - Desainer - DESIGNERS - Desainer - ICON - Ikon - ICONS - Ikon - TRANSLATORS - Penerjemah - - - ENTER_VALUE - Masukan nilai - - diff --git a/packages/CepheiPrefs.framework/id.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/id.lproj/PackageCell.strings deleted file mode 100644 index dc99aeb..0000000 --- a/packages/CepheiPrefs.framework/id.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Buka dengan… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Paket ini akan dipasang dari repository %@. - - diff --git a/packages/CepheiPrefs.framework/id.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/id.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 55826f5..0000000 --- a/packages/CepheiPrefs.framework/id.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versi %@ - - - HEADER_AUTHOR - Oleh %@ - - diff --git a/packages/CepheiPrefs.framework/id.lproj/Support.strings b/packages/CepheiPrefs.framework/id.lproj/Support.strings deleted file mode 100644 index 13ac704..0000000 --- a/packages/CepheiPrefs.framework/id.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Bantuan - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Bantuan - - - NO_EMAIL_ACCOUNTS_TITLE - Tidak ada akun email yang terdaftar. - - - NO_EMAIL_ACCOUNTS_BODY - Gunakan pengaturan email untuk menambahkan akun. - - diff --git a/packages/CepheiPrefs.framework/it.lproj/Common.strings b/packages/CepheiPrefs.framework/it.lproj/Common.strings deleted file mode 100644 index d136e13..0000000 --- a/packages/CepheiPrefs.framework/it.lproj/Common.strings +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - ABOUT - Info - CREDITS - Crediti - GENERAL - Generali - SUPPORT - Supporto - - - ENABLED - Abilitato - - - OFF - Disattivato - ON - Attivata - - - VISIT_WEBSITE - Visita il sito - - - EMAIL_SUPPORT_HEADER - Hai problemi? - - - EMAIL_SUPPORT - Email supporto - - - DONATE - Barattolo delle mance - - DONATE_FOOTER - Per favore, considera di mostrare il tuo apprezzamento per questo tweak attraverso una piccola donazione al barattolo delle mance. - - - DEVELOPER - Sviluppatore - DEVELOPERS - Sviluppatori - LEAD_DEVELOPER - Sviluppatore principale - DESIGNER - Progettista - DESIGNERS - Progettisti - ICON - Icona - ICONS - Icone - TRANSLATORS - Traduttori - - - ENTER_VALUE - Inserisci un valore - - diff --git a/packages/CepheiPrefs.framework/it.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/it.lproj/PackageCell.strings deleted file mode 100644 index 5249546..0000000 --- a/packages/CepheiPrefs.framework/it.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Apri in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Questo pacchetto sarà installato dalla repository %@. - - diff --git a/packages/CepheiPrefs.framework/it.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/it.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index a39f271..0000000 --- a/packages/CepheiPrefs.framework/it.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versione %@ - - - HEADER_AUTHOR - Di %@ - - diff --git a/packages/CepheiPrefs.framework/it.lproj/Support.strings b/packages/CepheiPrefs.framework/it.lproj/Support.strings deleted file mode 100644 index e9306cd..0000000 --- a/packages/CepheiPrefs.framework/it.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Supporto - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Supporto - - - NO_EMAIL_ACCOUNTS_TITLE - Nessun account di posta elettronica configurato. - - - NO_EMAIL_ACCOUNTS_BODY - Usa le impostazioni di Mail per aggiungere un nuovo account. - - diff --git a/packages/CepheiPrefs.framework/ja.lproj/Common.strings b/packages/CepheiPrefs.framework/ja.lproj/Common.strings deleted file mode 100644 index 0fb381f..0000000 --- a/packages/CepheiPrefs.framework/ja.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - 情報 - CREDITS - クレジット - GENERAL - 一般 - SUPPORT - サポート - - - ENABLED - 使用する - - - OFF - オフ - ON - オン - - - VISIT_WEBSITE - ウェブサイトを開く - - - EMAIL_SUPPORT_HEADER - 問題がありますか? - - - EMAIL_SUPPORT - メールサポート - - - DONATE - 寄付する - - - DONATE_FOOTER - このTweakへの感謝を表現するために寄付をご検討ください。 - - - DEVELOPER - 開発者 - DEVELOPERS - 開発者 - LEAD_DEVELOPER - リード開発者 - DESIGNER - デザイナー - DESIGNERS - デザイナー - ICON - アイコン - ICONS - アイコン - TRANSLATORS - 翻訳者 - - - ENTER_VALUE - 値を入力 - - diff --git a/packages/CepheiPrefs.framework/ja.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/ja.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/ja.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/ja.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/ja.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index e805a2a..0000000 --- a/packages/CepheiPrefs.framework/ja.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - バージョン %@ - - - HEADER_AUTHOR - %@ によって - - diff --git a/packages/CepheiPrefs.framework/ja.lproj/Support.strings b/packages/CepheiPrefs.framework/ja.lproj/Support.strings deleted file mode 100644 index a3e322a..0000000 --- a/packages/CepheiPrefs.framework/ja.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - サポート - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – サポート - - diff --git a/packages/CepheiPrefs.framework/ko.lproj/Common.strings b/packages/CepheiPrefs.framework/ko.lproj/Common.strings deleted file mode 100644 index 2c2f05d..0000000 --- a/packages/CepheiPrefs.framework/ko.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - 정보 - CREDITS - 제작진 - GENERAL - 일반 - SUPPORT - 문의 - - - ENABLED - 사용 - - - OFF - - ON - - - - VISIT_WEBSITE - 웹사이트 방문 - - - EMAIL_SUPPORT_HEADER - 문제가 있나요? - - - EMAIL_SUPPORT - 이메일 지원 - - - DONATE - 팁 저금통 - - - DONATE_FOOTER - 팁 저금통에 약간의 기부로 여러분의 감사 표시를 남겨주시면 감사드리겠습니다. - - - DEVELOPER - 개발자 - DEVELOPERS - 개발자 - LEAD_DEVELOPER - 주 개발자 - DESIGNER - 디자이너 - DESIGNERS - 디자이너 - ICON - 아이콘 - ICONS - 아이콘 - TRANSLATORS - 번역자 - - - ENTER_VALUE - 값을 입력해주세요 - - diff --git a/packages/CepheiPrefs.framework/ko.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/ko.lproj/PackageCell.strings deleted file mode 100644 index 9000740..0000000 --- a/packages/CepheiPrefs.framework/ko.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - 다음으로 열기… - - - OPEN_PACKAGE_IN_REPO_NOTICE - 이 패키지는 %@ 저장소에서 설치됩니다. - - diff --git a/packages/CepheiPrefs.framework/ko.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/ko.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 062dcff..0000000 --- a/packages/CepheiPrefs.framework/ko.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - 버전 %@ - - - HEADER_AUTHOR - 제작: %@ - - \ No newline at end of file diff --git a/packages/CepheiPrefs.framework/ko.lproj/Support.strings b/packages/CepheiPrefs.framework/ko.lproj/Support.strings deleted file mode 100644 index 60e9ce1..0000000 --- a/packages/CepheiPrefs.framework/ko.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - 문의 - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – 문의 - - - NO_EMAIL_ACCOUNTS_TITLE - 설정된 이메일 계정이 없습니다.. - - - NO_EMAIL_ACCOUNTS_BODY - 메일 설정에서 새 계정을 추가해주세요. - - \ No newline at end of file diff --git a/packages/CepheiPrefs.framework/ms.lproj/Common.strings b/packages/CepheiPrefs.framework/ms.lproj/Common.strings deleted file mode 100644 index 407440e..0000000 --- a/packages/CepheiPrefs.framework/ms.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Tentang - CREDITS - Kredit - GENERAL - Umum - SUPPORT - Bantuan - - - ENABLED - Membolehkan - - - OFF - Mati - ON - Aktif - - - VISIT_WEBSITE - Lawati Laman Web - - - EMAIL_SUPPORT_HEADER - Ada Masalah? - - - EMAIL_SUPPORT - Bantuan Emel - - - DONATE - Balang Derma - - - DONATE_FOOTER - Sila pertimbangkan untuk memberi penghargaan untuk tweak ini dengan memberi sejumlah derma di balang derma. - - - DEVELOPER - Pembuat - DEVELOPERS - Pembuat-pembuat - LEAD_DEVELOPER - Ketua Pembuat - DESIGNER - Pereka - DESIGNERS - Pereka-pereka - ICON - Ikon - ICONS - Ikon-ikon - TRANSLATORS - Penterjemah - - - ENTER_VALUE - Masukan nilai - - diff --git a/packages/CepheiPrefs.framework/ms.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/ms.lproj/PackageCell.strings deleted file mode 100644 index 7adc39e..0000000 --- a/packages/CepheiPrefs.framework/ms.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Buka dalam… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Pekej ini akan dipasang di dalam repositori %@. - - diff --git a/packages/CepheiPrefs.framework/ms.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/ms.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 55826f5..0000000 --- a/packages/CepheiPrefs.framework/ms.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versi %@ - - - HEADER_AUTHOR - Oleh %@ - - diff --git a/packages/CepheiPrefs.framework/ms.lproj/Support.strings b/packages/CepheiPrefs.framework/ms.lproj/Support.strings deleted file mode 100644 index 0d4b664..0000000 --- a/packages/CepheiPrefs.framework/ms.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Bantuan - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Bantuan - - - NO_EMAIL_ACCOUNTS_TITLE - Didapati tiada akaun emel dibuat. - - - NO_EMAIL_ACCOUNTS_BODY - Gunakan tetapan aplikasi Mail untuk untuk membuat akaun baru. - - diff --git a/packages/CepheiPrefs.framework/nb.lproj/Common.strings b/packages/CepheiPrefs.framework/nb.lproj/Common.strings deleted file mode 100644 index f2706b6..0000000 --- a/packages/CepheiPrefs.framework/nb.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Om - CREDITS - Medvirkende - GENERAL - Generelt - SUPPORT - Support - - - ENABLED - Aktivert - - - OFF - Av - ON - - - - VISIT_WEBSITE - Besøk nettsiden - - - EMAIL_SUPPORT_HEADER - Opplever du feil? - - - EMAIL_SUPPORT - Epost support - - - DONATE - Donere - - - DONATE_FOOTER - Vennligst vurder å vise din takknemlighet for tweaken med en donasjon. - - - DEVELOPER - Utvikler - DEVELOPERS - Utviklere - LEAD_DEVELOPER - Hoved utvikler - DESIGNER - Designer - DESIGNERS - Designere - ICON - Ikon - ICONS - Ikoner - TRANSLATORS - Oversettere - - - ENTER_VALUE - Angi verdi - - diff --git a/packages/CepheiPrefs.framework/nb.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/nb.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/nb.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/nb.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/nb.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 9f76a8d..0000000 --- a/packages/CepheiPrefs.framework/nb.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versjon %@ - - - HEADER_AUTHOR - Av %@ - - diff --git a/packages/CepheiPrefs.framework/nb.lproj/Support.strings b/packages/CepheiPrefs.framework/nb.lproj/Support.strings deleted file mode 100644 index 8949575..0000000 --- a/packages/CepheiPrefs.framework/nb.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Support - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Support - - diff --git a/packages/CepheiPrefs.framework/nl.lproj/Common.strings b/packages/CepheiPrefs.framework/nl.lproj/Common.strings deleted file mode 100644 index b9d5ba0..0000000 --- a/packages/CepheiPrefs.framework/nl.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Over - CREDITS - Credits - GENERAL - Algemeen - SUPPORT - Ondersteuning - - - ENABLED - Ingeschakeld - - - OFF - Uit - ON - Aan - - - VISIT_WEBSITE - Bezoek website - - - EMAIL_SUPPORT_HEADER - Ervaar je problemen? - - - EMAIL_SUPPORT - E-mail Ondersteuning - - - DONATE - Fooi Pot - - - DONATE_FOOTER - Laat uw waardering zien door middel van kleine donatie. - - - DEVELOPER - Ontwikkelaar - DEVELOPERS - Ontwikkelaars - LEAD_DEVELOPER - Hoofd-ontwikkelaar - DESIGNER - Ontwerper - DESIGNERS - Ontwerpers - ICON - Icoon - ICONS - Iconen - TRANSLATORS - Vertalers - - - ENTER_VALUE - Voer waarde in - - diff --git a/packages/CepheiPrefs.framework/nl.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/nl.lproj/PackageCell.strings deleted file mode 100644 index badb60d..0000000 --- a/packages/CepheiPrefs.framework/nl.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Dit pakket wordt vanuit de repository %@ geïnstalleerd. - - diff --git a/packages/CepheiPrefs.framework/nl.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/nl.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 61f3280..0000000 --- a/packages/CepheiPrefs.framework/nl.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versie %@ - - - HEADER_AUTHOR - Door %@ - - diff --git a/packages/CepheiPrefs.framework/nl.lproj/Support.strings b/packages/CepheiPrefs.framework/nl.lproj/Support.strings deleted file mode 100644 index 988c9c2..0000000 --- a/packages/CepheiPrefs.framework/nl.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Ondersteuning - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Ondersteuning - - - NO_EMAIL_ACCOUNTS_TITLE - Er zijn geen mail accounts geconfigureerd. - - - NO_EMAIL_ACCOUNTS_BODY - Ga naar uw mailinstellingen om een mailaccount toe te voegen. - - diff --git a/packages/CepheiPrefs.framework/package.png b/packages/CepheiPrefs.framework/package.png deleted file mode 100644 index d3fc583..0000000 Binary files a/packages/CepheiPrefs.framework/package.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/package@2x.png b/packages/CepheiPrefs.framework/package@2x.png deleted file mode 100644 index fb21f09..0000000 Binary files a/packages/CepheiPrefs.framework/package@2x.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/package@3x.png b/packages/CepheiPrefs.framework/package@3x.png deleted file mode 100644 index 4e9a64d..0000000 Binary files a/packages/CepheiPrefs.framework/package@3x.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/pl.lproj/Common.strings b/packages/CepheiPrefs.framework/pl.lproj/Common.strings deleted file mode 100644 index 64fe9a5..0000000 --- a/packages/CepheiPrefs.framework/pl.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Informacje - CREDITS - Podziękowania - GENERAL - Ogólne - SUPPORT - Wsparcie - - - ENABLED - Włączony - - - OFF - Wyłączone - ON - Włączone - - - VISIT_WEBSITE - Odwiedź naszą witrynę - - - EMAIL_SUPPORT_HEADER - Masz problemy? - - - EMAIL_SUPPORT - Wsparcie - - - DONATE - Napiwkir - - - DONATE_FOOTER - Jeżeli spodobało Ci się rozszerzenie, rozważ wsparcie autorów. - - - DEVELOPER - Programista - DEVELOPERS - Programiści - LEAD_DEVELOPER - Główny programista - DESIGNER - Projektant - DESIGNERS - Projektanci - ICON - Ikona - ICONS - Ikony - TRANSLATORS - Tłumacze - - - ENTER_VALUE - Wprowadź wartość - - diff --git a/packages/CepheiPrefs.framework/pl.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/pl.lproj/PackageCell.strings deleted file mode 100644 index ed9cab0..0000000 --- a/packages/CepheiPrefs.framework/pl.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Otwórz w… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Paczka zostanie zainstalowana z wybranego repo %@. - - diff --git a/packages/CepheiPrefs.framework/pl.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/pl.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 5138bda..0000000 --- a/packages/CepheiPrefs.framework/pl.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Wersja %@ - - - HEADER_AUTHOR - Przez %@ - - diff --git a/packages/CepheiPrefs.framework/pl.lproj/Support.strings b/packages/CepheiPrefs.framework/pl.lproj/Support.strings deleted file mode 100644 index 719e28d..0000000 --- a/packages/CepheiPrefs.framework/pl.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Wsparcie - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Wsparcie - - - NO_EMAIL_ACCOUNTS_TITLE - Konto mailowe nie zostało dodane. - - - NO_EMAIL_ACCOUNTS_BODY - Użyj konfiguratora aplikacji Mail, aby dodać konto. - - diff --git a/packages/CepheiPrefs.framework/pt.lproj/Common.strings b/packages/CepheiPrefs.framework/pt.lproj/Common.strings deleted file mode 100644 index 67b104e..0000000 --- a/packages/CepheiPrefs.framework/pt.lproj/Common.strings +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - ABOUT - Sobre - CREDITS - Créditos - GENERAL - Geral - SUPPORT - Suporte - - - ENABLED - Ativo - - - OFF - Inativo - ON - Ativo - - - VISIT_WEBSITE - Visitar website - - - EMAIL_SUPPORT_HEADER - Havendo problemas? - - - EMAIL_SUPPORT - Suporte via e-mail - - - DONATE - Gorjeta - - DONATE_FOOTER - Considere mostrar seu apreço por esse tweak com uma pequena doação. - - - DEVELOPER - Desenvolvedor - DEVELOPERS - Desenvolvedores - LEAD_DEVELOPER - Desenvolvedor Líder - DESIGNER - Designer - DESIGNERS - Designers - ICON - Ícone - ICONS - Ícones - TRANSLATORS - Tradutores - - - ENTER_VALUE - Digite valor - - diff --git a/packages/CepheiPrefs.framework/pt.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/pt.lproj/PackageCell.strings deleted file mode 100644 index a2398f1..0000000 --- a/packages/CepheiPrefs.framework/pt.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Abrir em… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Esse pacote será instalado do repositor %@. - - diff --git a/packages/CepheiPrefs.framework/pt.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/pt.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 1df1bc2..0000000 --- a/packages/CepheiPrefs.framework/pt.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versão %@ - - - HEADER_AUTHOR - Por %@ - - diff --git a/packages/CepheiPrefs.framework/pt.lproj/Support.strings b/packages/CepheiPrefs.framework/pt.lproj/Support.strings deleted file mode 100644 index 72837a6..0000000 --- a/packages/CepheiPrefs.framework/pt.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Suporte - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Suporte - - - NO_EMAIL_ACCOUNTS_TITLE - Nenhuma conta de e-mail configurada. - - - NO_EMAIL_ACCOUNTS_BODY - Use as configurações do email para adicionar uma nova conta. - - diff --git a/packages/CepheiPrefs.framework/pt_PT.lproj/Common.strings b/packages/CepheiPrefs.framework/pt_PT.lproj/Common.strings deleted file mode 100644 index f0aa54d..0000000 --- a/packages/CepheiPrefs.framework/pt_PT.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Sobre - CREDITS - Créditos - GENERAL - Geral - SUPPORT - Suporte - - - ENABLED - Ativo - - - OFF - Desligado - ON - Ligado - - - VISIT_WEBSITE - Visitar website - - - EMAIL_SUPPORT_HEADER - Havendo problemas? - - - EMAIL_SUPPORT - Suporte via e-mail - - - DONATE - Doar - - - DONATE_FOOTER - Por favor considere demonstrar sua apreciação pelo tweak por doação. - - - DEVELOPER - Desenvolvedor - DEVELOPERS - Desenvolvedores - LEAD_DEVELOPER - Desenvolvedor Líder - DESIGNER - Designer - DESIGNERS - Designers - ICON - Ícone - ICONS - Ícones - TRANSLATORS - Tradutores - - - ENTER_VALUE - Digite valor - - diff --git a/packages/CepheiPrefs.framework/pt_PT.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/pt_PT.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/pt_PT.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/pt_PT.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/pt_PT.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 1df1bc2..0000000 --- a/packages/CepheiPrefs.framework/pt_PT.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versão %@ - - - HEADER_AUTHOR - Por %@ - - diff --git a/packages/CepheiPrefs.framework/pt_PT.lproj/Support.strings b/packages/CepheiPrefs.framework/pt_PT.lproj/Support.strings deleted file mode 100644 index c16373f..0000000 --- a/packages/CepheiPrefs.framework/pt_PT.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Suporte - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Suporte - - diff --git a/packages/CepheiPrefs.framework/ro.lproj/Common.strings b/packages/CepheiPrefs.framework/ro.lproj/Common.strings deleted file mode 100644 index 69386e5..0000000 --- a/packages/CepheiPrefs.framework/ro.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Despre - CREDITS - Credite - GENERAL - General - SUPPORT - Suport - - - ENABLED - Activat - - - OFF - Dezactivat - ON - Activat - - - VISIT_WEBSITE - Viziteaza Website - - - EMAIL_SUPPORT_HEADER - Probleme? - - - EMAIL_SUPPORT - Email Suport - - - DONATE - Cutia cu gogoși - - - DONATE_FOOTER - Te rugăm să iei în calcul manifestarea aprecierii pentru acest tweak cu o mică donație pentru cutia cu gogoși. - - - DEVELOPER - Dezvoltator - DEVELOPERS - Dezvoltatori - LEAD_DEVELOPER - Dezvoltator principal - DESIGNER - Designer - DESIGNERS - Designeri - ICON - Icoana - ICONS - Icone - TRANSLATORS - Traducatori - - - ENTER_VALUE - Introdu valoarea - - diff --git a/packages/CepheiPrefs.framework/ro.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/ro.lproj/PackageCell.strings deleted file mode 100644 index fbdac59..0000000 --- a/packages/CepheiPrefs.framework/ro.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Deschide în… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Acest pachet va fi instalat din repozitoriul %@. - - diff --git a/packages/CepheiPrefs.framework/ro.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/ro.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index c63c880..0000000 --- a/packages/CepheiPrefs.framework/ro.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versiunea %@ - - - HEADER_AUTHOR - By %@ - - \ No newline at end of file diff --git a/packages/CepheiPrefs.framework/ro.lproj/Support.strings b/packages/CepheiPrefs.framework/ro.lproj/Support.strings deleted file mode 100644 index 673997e..0000000 --- a/packages/CepheiPrefs.framework/ro.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Suport - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Support - Romanian language interface - - - NO_EMAIL_ACCOUNTS_TITLE - Niciun cont de email este configurat. - - - NO_EMAIL_ACCOUNTS_BODY - Folosește setările aplicației Mail pentru a adăuga un cont nou. - - diff --git a/packages/CepheiPrefs.framework/ru.lproj/Common.strings b/packages/CepheiPrefs.framework/ru.lproj/Common.strings deleted file mode 100644 index 4bcccc7..0000000 --- a/packages/CepheiPrefs.framework/ru.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - О программе - CREDITS - Титры - GENERAL - Основные - SUPPORT - поддержка - - - ENABLED - Включить - - - OFF - Выкл. - ON - Вкл. - - - VISIT_WEBSITE - Посетить сайт - - - EMAIL_SUPPORT_HEADER - Что-то не так? - - - EMAIL_SUPPORT - Свяжитесь с разработчиком - - - DONATE - Пожертвовать - - - DONATE_FOOTER - Выразите свою благодарность данному твику небольшим пожертвованием. - - - DEVELOPER - Разработчик - DEVELOPERS - Разработчики - LEAD_DEVELOPER - Главный разработчик - DESIGNER - Дизайнер - DESIGNERS - Дизайнеры - ICON - Значок - ICONS - Графика - TRANSLATORS - Переводчики - - - ENTER_VALUE - Введите значение - - \ No newline at end of file diff --git a/packages/CepheiPrefs.framework/ru.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/ru.lproj/PackageCell.strings deleted file mode 100644 index a06d1da..0000000 --- a/packages/CepheiPrefs.framework/ru.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Открыть в… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Данный пакет будет установлен из репозитория %@. - - diff --git a/packages/CepheiPrefs.framework/ru.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/ru.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index aba9575..0000000 --- a/packages/CepheiPrefs.framework/ru.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Версия %@ - - - HEADER_AUTHOR - от %@ - - \ No newline at end of file diff --git a/packages/CepheiPrefs.framework/ru.lproj/Support.strings b/packages/CepheiPrefs.framework/ru.lproj/Support.strings deleted file mode 100644 index 8210130..0000000 --- a/packages/CepheiPrefs.framework/ru.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Поддержка - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – поддержка - - - NO_EMAIL_ACCOUNTS_TITLE - Почтовые аккаунты не настроены. - - - NO_EMAIL_ACCOUNTS_BODY - Добавьте почтовый аккаунт в настройках. - - \ No newline at end of file diff --git a/packages/CepheiPrefs.framework/safari.png b/packages/CepheiPrefs.framework/safari.png deleted file mode 100644 index f5c0d35..0000000 Binary files a/packages/CepheiPrefs.framework/safari.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/safari@2x.png b/packages/CepheiPrefs.framework/safari@2x.png deleted file mode 100644 index 682d838..0000000 Binary files a/packages/CepheiPrefs.framework/safari@2x.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/safari@3x.png b/packages/CepheiPrefs.framework/safari@3x.png deleted file mode 100644 index 9e18abc..0000000 Binary files a/packages/CepheiPrefs.framework/safari@3x.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/sk.lproj/Common.strings b/packages/CepheiPrefs.framework/sk.lproj/Common.strings deleted file mode 100644 index e34d964..0000000 --- a/packages/CepheiPrefs.framework/sk.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - O - CREDITS - Credits - GENERAL - Všeobecné - SUPPORT - Podpora - - - ENABLED - Povolené - - - OFF - Vyp. - ON - Zap. - - - VISIT_WEBSITE - Navšíviť stránku - - - EMAIL_SUPPORT_HEADER - Máte problémy? - - - EMAIL_SUPPORT - Email podpora - - - DONATE - Darovať - - - DONATE_FOOTER - Ak sa vám tento Tweak páčil, prosím darujte nám pár dolárikov. - - - DEVELOPER - Developer - DEVELOPERS - Developéri - LEAD_DEVELOPER - Hlavný Developer - DESIGNER - Dizajnér - DESIGNERS - Dizajnéri - ICON - Ikona - ICONS - Ikony - TRANSLATORS - Prekladatelia - - - ENTER_VALUE - Vložte hodnotu - - diff --git a/packages/CepheiPrefs.framework/sk.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/sk.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/sk.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/sk.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/sk.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index bca0ff0..0000000 --- a/packages/CepheiPrefs.framework/sk.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Verzia %@ - - - HEADER_AUTHOR - %@ - - diff --git a/packages/CepheiPrefs.framework/sk.lproj/Support.strings b/packages/CepheiPrefs.framework/sk.lproj/Support.strings deleted file mode 100644 index 8133b3d..0000000 --- a/packages/CepheiPrefs.framework/sk.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Podpora - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Podpora - - diff --git a/packages/CepheiPrefs.framework/sv.lproj/Common.strings b/packages/CepheiPrefs.framework/sv.lproj/Common.strings deleted file mode 100644 index 0cca7d9..0000000 --- a/packages/CepheiPrefs.framework/sv.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Om - CREDITS - Medverkande - GENERAL - Allmänt - SUPPORT - Support - - - ENABLED - Aktiverad - - - OFF - Av - ON - - - - VISIT_WEBSITE - Besök webbsidan - - - EMAIL_SUPPORT_HEADER - Om du har problem - - - EMAIL_SUPPORT - E-Posta support - - - DONATE - Donera - - - DONATE_FOOTER - Vänligen överväg att visa din uppskattning för detta program med en donation. - - - DEVELOPER - Utvecklare - DEVELOPERS - Utvecklarna - LEAD_DEVELOPER - Huvud utvecklare - DESIGNER - Designer - DESIGNERS - Designers - ICON - Ikon - ICONS - Ikoner - TRANSLATORS - Översättare - - - ENTER_VALUE - Ange Värde - - diff --git a/packages/CepheiPrefs.framework/sv.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/sv.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/sv.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/sv.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/sv.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 66413bb..0000000 --- a/packages/CepheiPrefs.framework/sv.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Version %@ - - - HEADER_AUTHOR - Av %@ - - diff --git a/packages/CepheiPrefs.framework/sv.lproj/Support.strings b/packages/CepheiPrefs.framework/sv.lproj/Support.strings deleted file mode 100644 index 8949575..0000000 --- a/packages/CepheiPrefs.framework/sv.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Support - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Support - - diff --git a/packages/CepheiPrefs.framework/th.lproj/Common.strings b/packages/CepheiPrefs.framework/th.lproj/Common.strings deleted file mode 100644 index f09ff6e..0000000 --- a/packages/CepheiPrefs.framework/th.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - เกี่ยวกับ - CREDITS - เครดิต - GENERAL - ทั่วไป - SUPPORT - การช่วยเหลือ - - - ENABLED - เปิด - - - OFF - ปิดอยู่ - ON - เปิดอยู่ - - - VISIT_WEBSITE - ชมเว็บไซต์ - - - EMAIL_SUPPORT_HEADER - พบปัญหา ? - - - EMAIL_SUPPORT - ส่งอีเมลขอความช่วยเหลือ - - - DONATE - ให้ทิป - - - DONATE_FOOTER - คุณสามารถแสดงความขอบคุณได้โดยการให้ทิปเล็กๆ น้อยๆ - - - DEVELOPER - นักพัฒนา - DEVELOPERS - ทีมนักพัฒนา - LEAD_DEVELOPER - หัวหน้านักพัฒนา - DESIGNER - นักออกแบบ - DESIGNERS - ทีมนักออกแบบ - ICON - ผู้ไอคอน - ICONS - ทีมผู้สร้างไอคอน - TRANSLATORS - ทีมผู้แปล - - - ENTER_VALUE - ใส่ค่า - - diff --git a/packages/CepheiPrefs.framework/th.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/th.lproj/PackageCell.strings deleted file mode 100644 index 4a98d9f..0000000 --- a/packages/CepheiPrefs.framework/th.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - เปิดใน… - - - OPEN_PACKAGE_IN_REPO_NOTICE - โปรแกรมนี้จะถูกติดตั้งจากซอส %@ - - diff --git a/packages/CepheiPrefs.framework/th.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/th.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 46c858d..0000000 --- a/packages/CepheiPrefs.framework/th.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - เวอร์ชัน %@ - - - HEADER_AUTHOR - โดย %@ - - diff --git a/packages/CepheiPrefs.framework/th.lproj/Support.strings b/packages/CepheiPrefs.framework/th.lproj/Support.strings deleted file mode 100644 index cf158fe..0000000 --- a/packages/CepheiPrefs.framework/th.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - การช่วยเหลือ - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – การช่วยเหลือ - - - NO_EMAIL_ACCOUNTS_TITLE - ไม่มีบัญชีอีเมลที่ใช้ได้ - - - NO_EMAIL_ACCOUNTS_BODY - ไปตั้งค่าในแอพ Mail เพื่อเพิ่มบัญชีอีเมล - - diff --git a/packages/CepheiPrefs.framework/tr.lproj/Common.strings b/packages/CepheiPrefs.framework/tr.lproj/Common.strings deleted file mode 100644 index 8eee150..0000000 --- a/packages/CepheiPrefs.framework/tr.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Hakkında - CREDITS - Katkıda Bulunanlar - GENERAL - Genel - SUPPORT - Destek - - - ENABLED - Etkin - - - OFF - Kapalı - ON - Açık - - - VISIT_WEBSITE - Websiteyi ziyaret et - - - EMAIL_SUPPORT_HEADER - Sorun Var Mı? - - - EMAIL_SUPPORT - Email Destek - - - DONATE - Bağış - - - DONATE_FOOTER - Lütfen bu tweak için desteğinizi ufak bir bağış ile gösterin. - - - DEVELOPER - Geliştirici - DEVELOPERS - Geliştiriciler - LEAD_DEVELOPER - Baş Geliştirici - DESIGNER - Tasarımcı - DESIGNERS - Tasarımcılar - ICON - Simge - ICONS - Simgeler - TRANSLATORS - Çevirmenler - - - ENTER_VALUE - Bir Değer Girin - - diff --git a/packages/CepheiPrefs.framework/tr.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/tr.lproj/PackageCell.strings deleted file mode 100644 index 09df3ff..0000000 --- a/packages/CepheiPrefs.framework/tr.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Şununla aç… - - - OPEN_PACKAGE_IN_REPO_NOTICE - Bu paket %@ reposundan indirilecektir. - - diff --git a/packages/CepheiPrefs.framework/tr.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/tr.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 4277ef8..0000000 --- a/packages/CepheiPrefs.framework/tr.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Versiyon %@ - - - HEADER_AUTHOR - %@ tarafından - - diff --git a/packages/CepheiPrefs.framework/tr.lproj/Support.strings b/packages/CepheiPrefs.framework/tr.lproj/Support.strings deleted file mode 100644 index 23698c0..0000000 --- a/packages/CepheiPrefs.framework/tr.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - Destek - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Destek - - - NO_EMAIL_ACCOUNTS_TITLE - Ayarlanmış mail adresi yok. - - - NO_EMAIL_ACCOUNTS_BODY - Mail ayarlarını kullanarak bir mail adresi ekleyin. - - diff --git a/packages/CepheiPrefs.framework/twitter.png b/packages/CepheiPrefs.framework/twitter.png deleted file mode 100644 index f708572..0000000 Binary files a/packages/CepheiPrefs.framework/twitter.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/twitter@2x.png b/packages/CepheiPrefs.framework/twitter@2x.png deleted file mode 100644 index 2f74d76..0000000 Binary files a/packages/CepheiPrefs.framework/twitter@2x.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/twitter@3x.png b/packages/CepheiPrefs.framework/twitter@3x.png deleted file mode 100644 index 4738fb5..0000000 Binary files a/packages/CepheiPrefs.framework/twitter@3x.png and /dev/null differ diff --git a/packages/CepheiPrefs.framework/uk.lproj/Common.strings b/packages/CepheiPrefs.framework/uk.lproj/Common.strings deleted file mode 100644 index ff18438..0000000 --- a/packages/CepheiPrefs.framework/uk.lproj/Common.strings +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - ABOUT - Про нас - CREDITS - Подяка - GENERAL - Загальні - SUPPORT - Служба підтримки - - - ENABLED - Увімкнено - - - OFF - Вимк. - ON - Увімк. - - - VISIT_WEBSITE - Відвідати сайт - - - EMAIL_SUPPORT_HEADER - Потрібна допомога? - - - EMAIL_SUPPORT - Служба підтримки - - - DONATE - Підтримати проект - - - DONATE_FOOTER - Будь ласка, зробіть пожертву, якщо ви хочете подякувати нам за це розширення. - - - DEVELOPER - Розробник - DEVELOPERS - Розробники - LEAD_DEVELOPER - Провідний розробник - DESIGNER - Дизайнер - DESIGNERS - Дизайнери - ICON - Піктограма - ICONS - Піктограми - TRANSLATORS - Перекладачі - - diff --git a/packages/CepheiPrefs.framework/uk.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/uk.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/uk.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/uk.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/uk.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index c833dea..0000000 --- a/packages/CepheiPrefs.framework/uk.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Версія %@ - - - HEADER_AUTHOR - %@ - - diff --git a/packages/CepheiPrefs.framework/uk.lproj/Support.strings b/packages/CepheiPrefs.framework/uk.lproj/Support.strings deleted file mode 100644 index cfbbc1b..0000000 --- a/packages/CepheiPrefs.framework/uk.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Служба підтримки - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Служба підтримки - - diff --git a/packages/CepheiPrefs.framework/vi.lproj/Common.strings b/packages/CepheiPrefs.framework/vi.lproj/Common.strings deleted file mode 100644 index 13151b2..0000000 --- a/packages/CepheiPrefs.framework/vi.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - Về cái tweak này - CREDITS - Khen Ngợi - GENERAL - Cài đặt chung - SUPPORT - Hỗ Trợ - - - ENABLED - Cho Phép - - - OFF - Tắt - ON - Bật - - - VISIT_WEBSITE - Truy Cập Trang Web - - - EMAIL_SUPPORT_HEADER - Có Vấn Đề? - - - EMAIL_SUPPORT - Hỗ Trợ Bằng Email - - - DONATE - Quyên Góp - - - DONATE_FOOTER - Nếu các bạn thích và muốn ủng hộ tweak này, các bạn có thể quyên góp ủng hộ các nhà phát triển để nhiều tweak hơn nữa trong tương lai. - - - DEVELOPER - Người Phát Triển - DEVELOPERS - Những Người Phát Triển - LEAD_DEVELOPER - Người Phát Triển Chính - DESIGNER - Người Thiết Kế - DESIGNERS - Những Người Thiết Kế - ICON - Biểu Tượng - ICONS - Những Biểu Tượng - TRANSLATORS - Người Dịch - - - ENTER_VALUE - Nhập giá trị - - diff --git a/packages/CepheiPrefs.framework/vi.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/vi.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/vi.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/vi.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/vi.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 5ac7e99..0000000 --- a/packages/CepheiPrefs.framework/vi.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - Phiên Bản %@ - - - HEADER_AUTHOR - Bởi %@ - - diff --git a/packages/CepheiPrefs.framework/vi.lproj/Support.strings b/packages/CepheiPrefs.framework/vi.lproj/Support.strings deleted file mode 100644 index 1451dc3..0000000 --- a/packages/CepheiPrefs.framework/vi.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - Hỗ Trợ - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – Hỗ Trợ - - diff --git a/packages/CepheiPrefs.framework/zh_CN.lproj/Common.strings b/packages/CepheiPrefs.framework/zh_CN.lproj/Common.strings deleted file mode 100644 index 441345e..0000000 --- a/packages/CepheiPrefs.framework/zh_CN.lproj/Common.strings +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - ABOUT - 关于 - CREDITS - 参予人员 - GENERAL - 通用 - SUPPORT - 支援 - - - ENABLED - 激活 - - - OFF - 关闭 - ON - 打开 - - - VISIT_WEBSITE - 访问网站 - - - EMAIL_SUPPORT_HEADER - 遇到问题了? - - - EMAIL_SUPPORT - 电邮支援 - - - DONATE - 捐赠 - - - DONATE_FOOTER - 请考虑用捐赠来表达您对此插件的感谢。 - - - DEVELOPER - 开发者 - DEVELOPERS - 开发者 - LEAD_DEVELOPER - 主要开发者 - DESIGNER - 设计者 - DESIGNERS - 设计者 - ICON - 图标 - ICONS - 图标 - TRANSLATORS - 翻译人员 - - diff --git a/packages/CepheiPrefs.framework/zh_CN.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/zh_CN.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/zh_CN.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/zh_CN.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/zh_CN.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 440dadb..0000000 --- a/packages/CepheiPrefs.framework/zh_CN.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - 版本 %@ - - - HEADER_AUTHOR - 由 %@ - - diff --git a/packages/CepheiPrefs.framework/zh_CN.lproj/Support.strings b/packages/CepheiPrefs.framework/zh_CN.lproj/Support.strings deleted file mode 100644 index a9704a9..0000000 --- a/packages/CepheiPrefs.framework/zh_CN.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - 支援 - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – 支援 - - diff --git a/packages/CepheiPrefs.framework/zh_HK.lproj/Common.strings b/packages/CepheiPrefs.framework/zh_HK.lproj/Common.strings deleted file mode 100644 index bf01397..0000000 --- a/packages/CepheiPrefs.framework/zh_HK.lproj/Common.strings +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - ABOUT - 關於 - CREDITS - 參與人員 - GENERAL - 一般 - SUPPORT - 支援 - - - ENABLED - 啟用 - - - OFF - 關閉 - ON - 開啟 - - - VISIT_WEBSITE - 訪問網站 - - - EMAIL_SUPPORT_HEADER - 遇到問題了? - - - EMAIL_SUPPORT - 電郵支援 - - - DONATE - 捐贈 - - - DONATE_FOOTER - 請考慮用捐贈來表達您對此插件的感謝。 - - - DEVELOPER - 開發者 - DEVELOPERS - 開發者 - LEAD_DEVELOPER - 主要開發者 - DESIGNER - 設計者 - DESIGNERS - 設計者 - ICON - 圖標 - ICONS - 圖標 - TRANSLATORS - 翻譯人員 - - diff --git a/packages/CepheiPrefs.framework/zh_HK.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/zh_HK.lproj/PackageCell.strings deleted file mode 100644 index c6145e5..0000000 --- a/packages/CepheiPrefs.framework/zh_HK.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - Open in… - - - OPEN_PACKAGE_IN_REPO_NOTICE - This package will be installed from the repository %@. - - diff --git a/packages/CepheiPrefs.framework/zh_HK.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/zh_HK.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 440dadb..0000000 --- a/packages/CepheiPrefs.framework/zh_HK.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - 版本 %@ - - - HEADER_AUTHOR - 由 %@ - - diff --git a/packages/CepheiPrefs.framework/zh_HK.lproj/Support.strings b/packages/CepheiPrefs.framework/zh_HK.lproj/Support.strings deleted file mode 100644 index a9704a9..0000000 --- a/packages/CepheiPrefs.framework/zh_HK.lproj/Support.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - SUPPORT_TITLE - 支援 - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – 支援 - - diff --git a/packages/CepheiPrefs.framework/zh_TW.lproj/Common.strings b/packages/CepheiPrefs.framework/zh_TW.lproj/Common.strings deleted file mode 100644 index 37e7983..0000000 --- a/packages/CepheiPrefs.framework/zh_TW.lproj/Common.strings +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - ABOUT - 關於 - CREDITS - 參與人員 - GENERAL - 一般 - SUPPORT - 支援 - - - ENABLED - 啟用 - - - OFF - 關閉 - ON - 開啟 - - - VISIT_WEBSITE - 訪問網站 - - - EMAIL_SUPPORT_HEADER - 遇到問題了? - - - EMAIL_SUPPORT - 電郵支援 - - - DONATE - 捐款贊助 - - - DONATE_FOOTER - 請考慮捐款,以對作者表達感謝。 - - - DEVELOPER - 開發者 - DEVELOPERS - 開發者 - LEAD_DEVELOPER - 主要開發者 - DESIGNER - 設計者 - DESIGNERS - 設計者 - ICON - 圖標 - ICONS - 圖標 - TRANSLATORS - 翻譯人員 - - - ENTER_VALUE - 輸入數值 - - diff --git a/packages/CepheiPrefs.framework/zh_TW.lproj/PackageCell.strings b/packages/CepheiPrefs.framework/zh_TW.lproj/PackageCell.strings deleted file mode 100644 index 18a61ff..0000000 --- a/packages/CepheiPrefs.framework/zh_TW.lproj/PackageCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - OPEN_PACKAGE_IN_TITLE - 開啟… - - - OPEN_PACKAGE_IN_REPO_NOTICE - 請在「設定」中設定電子郵件帳號 %@. - - diff --git a/packages/CepheiPrefs.framework/zh_TW.lproj/PackageNameHeaderCell.strings b/packages/CepheiPrefs.framework/zh_TW.lproj/PackageNameHeaderCell.strings deleted file mode 100644 index 440dadb..0000000 --- a/packages/CepheiPrefs.framework/zh_TW.lproj/PackageNameHeaderCell.strings +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - HEADER_VERSION - 版本 %@ - - - HEADER_AUTHOR - 由 %@ - - diff --git a/packages/CepheiPrefs.framework/zh_TW.lproj/Support.strings b/packages/CepheiPrefs.framework/zh_TW.lproj/Support.strings deleted file mode 100644 index 68dc957..0000000 --- a/packages/CepheiPrefs.framework/zh_TW.lproj/Support.strings +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - SUPPORT_TITLE - 支援 - - - SUPPORT_EMAIL_SUBJECT - %@ %@ – 支援 - - - NO_EMAIL_ACCOUNTS_TITLE - 電子郵件帳號未設定 - - - NO_EMAIL_ACCOUNTS_BODY - 請在「設定」中設定電子郵件帳號 - - diff --git a/packages/CepheiUI.framework/CepheiUI b/packages/CepheiUI.framework/CepheiUI deleted file mode 100755 index 1b2bbb4..0000000 Binary files a/packages/CepheiUI.framework/CepheiUI and /dev/null differ diff --git a/packages/CepheiUI.framework/Headers/CepheiUI.h b/packages/CepheiUI.framework/Headers/CepheiUI.h deleted file mode 100644 index 3a47081..0000000 --- a/packages/CepheiUI.framework/Headers/CepheiUI.h +++ /dev/null @@ -1,2 +0,0 @@ -#import "CompactConstraint/CompactConstraint.h" -#import "UIColor+HBAdditions.h" diff --git a/packages/CepheiUI.framework/Headers/CompactConstraint.h b/packages/CepheiUI.framework/Headers/CompactConstraint.h deleted file mode 100644 index 9d10991..0000000 --- a/packages/CepheiUI.framework/Headers/CompactConstraint.h +++ /dev/null @@ -1,7 +0,0 @@ -// -// Created by Marco Arment on 2014-04-06. -// Copyright (c) 2014 Marco Arment. See included LICENSE file. -// - -#import "NSLayoutConstraint+CompactConstraint.h" -#import "UIView+CompactConstraint.h" diff --git a/packages/CepheiUI.framework/Headers/NSLayoutConstraint+CompactConstraint.h b/packages/CepheiUI.framework/Headers/NSLayoutConstraint+CompactConstraint.h deleted file mode 100644 index af9afec..0000000 --- a/packages/CepheiUI.framework/Headers/NSLayoutConstraint+CompactConstraint.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// Created by Marco Arment on 2014-04-06. -// Copyright (c) 2014 Marco Arment. See included LICENSE file. -// - -#import - -/// NSLayoutConstraint (CompactConstraint), a class category from Marco Arment’s -/// [CompactConstraint](https://github.com/marcoarment/CompactConstraint) library, is integrated -/// with Cephei. CompactConstraint provides an Auto Layout grammar and methods that are easier to -/// use and understand than UIKit’s built in functions for programmatically adding constraints. -/// -/// Refer to [its readme](https://github.com/marcoarment/CompactConstraint/blob/master/README.md) to -/// learn how to use it. There are two changes to note: most importantly, the methods have an `hb_` -/// prefix, and two methods that are marked as deprecated in the original project have been removed. -/// -/// CompactConstraint is licensed under the MIT License. -@interface NSLayoutConstraint (CompactConstraint) - -/// Instantiate a single constraint with the compact syntax. -+ (instancetype)hb_compactConstraint:(NSString *)relationship metrics:(NSDictionary *)metrics views:(NSDictionary *)views self:(id)selfView; - -/// Instantiate any number of constraints. Can also mix in Visual Format Language strings. -+ (NSArray *)hb_compactConstraints:(NSArray *)relationshipStrings metrics:(NSDictionary *)metrics views:(NSDictionary *)views self:(id)selfView; - -/// And a convenient shortcut for creating constraints with the visualFormat string as the identifier -+ (NSArray *)hb_identifiedConstraintsWithVisualFormat:(NSString *)format options:(NSLayoutFormatOptions)opts metrics:(NSDictionary *)metrics views:(NSDictionary *)views; - -@end diff --git a/packages/CepheiUI.framework/Headers/UIColor+HBAdditions.h b/packages/CepheiUI.framework/Headers/UIColor+HBAdditions.h deleted file mode 100644 index 6a92994..0000000 --- a/packages/CepheiUI.framework/Headers/UIColor+HBAdditions.h +++ /dev/null @@ -1,79 +0,0 @@ -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/// UIColor (HBAdditions) is a class category in Cephei that provides some convenience methods. -@interface UIColor (HBAdditions) - -/// Creates and returns a color object using data from the specified object. -/// -/// The value is expected to be one of the types specified in hb_initWithPropertyListValue:. -/// -/// @param value The object to retrieve data from. See the discussion for the supported object -/// types. -/// @return The color object. The color information represented by this object is in the device RGB -/// colorspace. -/// @see `-hb_initWithPropertyListValue:` -+ (instancetype)hb_colorWithPropertyListValue:(id)value NS_SWIFT_NAME(init(propertyListValue:)); - -/// Initializes and returns a color object using data from the specified object. -/// -/// The value is expected to be one of: -/// -/// * An array of 3 or 4 integer RGB or RGBA color components, with values between 0 and 255 (e.g. -/// `@[ 218, 192, 222 ]`) -/// * A CSS-style hex string, with an optional alpha component (e.g. `#DAC0DE` or `#DACODE55`) -/// * A short CSS-style hex string, with an optional alpha component (e.g. `#DC0` or `#DC05`) -/// -/// @param value The object to retrieve data from. See the discussion for the supported object -/// types. -/// @return An initialized color object. The color information represented by this object is in the -/// device RGB colorspace. -- (instancetype)hb_initWithPropertyListValue:(id)value NS_SWIFT_UNAVAILABLE("Use init(propertyListValue:)"); - -/// Initializes and returns a dynamic color object using the provided interface style variants. -/// -/// This color dynamically changes based on the interface style on iOS 13 and newer. If dynamic -/// colors are not supported by the operating system, the value for UIUserInterfaceStyleLight or -/// UIUserInterfaceStyleUnspecified is returned. -/// -/// Example: -/// -/// ```objc -/// UIColor *myColor = [UIColor hb_colorWithInterfaceStyleVariants:@{ -/// @(UIUserInterfaceStyleLight): [UIColor systemRedColor], -/// @(UIUserInterfaceStyleDark): [UIColor systemOrangeColor] -/// }]; -/// ``` -/// -/// @param variants A dictionary of interface style keys and UIColor values. -/// @return An initialized dynamic color object, or the receiver if dynamic colors are unsupported -/// by the current operating system. -+ (instancetype)hb_colorWithInterfaceStyleVariants:(NSDictionary *)variants; - -/// Initializes and returns a dynamic color object, with saturation decreased by 4% in the dark -/// interface style. -/// -/// @return If the color is already a dynamic color, returns the receiver. Otherwise, a new dynamic -/// color object. -/// @see `+hb_colorWithInterfaceStyleVariants:` -- (instancetype)hb_colorWithDarkInterfaceVariant NS_SWIFT_NAME(withDarkInterfaceVariant()); - -/// Initializes and returns a dynamic color object, with the specified variant color for the dark -/// interface style. -/// -/// Example: -/// -/// ```objc -/// UIColor *myColor = [[UIColor systemRedColor] hb_colorWithDarkInterfaceVariant:[UIColor systemOrangeColor]]; -/// ``` -/// -/// @param darkColor The color to use in the dark interface style. -/// @return A new dynamic color object. -/// @see `-hb_colorWithInterfaceStyleVariants:` -- (instancetype)hb_colorWithDarkInterfaceVariant:(UIColor *)darkColor NS_SWIFT_NAME(withDarkInterfaceVariant(_:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/packages/CepheiUI.framework/Headers/UIView+CompactConstraint.h b/packages/CepheiUI.framework/Headers/UIView+CompactConstraint.h deleted file mode 100644 index cf12b0f..0000000 --- a/packages/CepheiUI.framework/Headers/UIView+CompactConstraint.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// Created by Marco Arment on 2014-04-06. -// Copyright (c) 2014 Marco Arment. See included LICENSE file. -// - -#import "NSLayoutConstraint+CompactConstraint.h" - -/// UIView (CompactConstraint), a class category from Marco Arment’s -/// [CompactConstraint](https://github.com/marcoarment/CompactConstraint) library, is integrated -/// with Cephei. CompactConstraint provides an Auto Layout grammar and methods that are easier to -/// use and understand than UIKit’s built in functions for programmatically adding constraints. -/// -/// Refer to [its readme](https://github.com/marcoarment/CompactConstraint/blob/master/README.md) to -/// learn how to use it. There are two changes to note: most importantly, the methods have an `hb_` -/// prefix, and two methods that are marked as deprecated in the original project have been removed. -/// -/// CompactConstraint is licensed under the MIT License. -@interface UIView (CompactConstraint) - -/// Add a single constraint with the compact syntax. -- (NSLayoutConstraint *)hb_addCompactConstraint:(NSString *)relationship metrics:(NSDictionary *)metrics views:(NSDictionary *)views; - -/// Add any number of constraints. Can also mix in Visual Format Language strings. -- (NSArray *)hb_addCompactConstraints:(NSArray *)relationshipStrings metrics:(NSDictionary *)metrics views:(NSDictionary *)views; - -/// And a convenient shortcut for what we always end up doing with the visualFormat call. -- (void)hb_addConstraintsWithVisualFormat:(NSString *)format options:(NSLayoutFormatOptions)opts metrics:(NSDictionary *)metrics views:(NSDictionary *)views; - -@end diff --git a/packages/CepheiUI.framework/Info.plist b/packages/CepheiUI.framework/Info.plist deleted file mode 100644 index 1ae90ba..0000000 Binary files a/packages/CepheiUI.framework/Info.plist and /dev/null differ