├── .gitignore ├── .gitmodules ├── .tx └── config ├── GPL-LICENSE.txt ├── Hive.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Hive (Fresh Install).xcscheme │ ├── Hive (Java Debugger).xcscheme │ ├── Hive (Test Network).xcscheme │ └── Hive.xcscheme ├── Hive.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── WorkspaceSettings.xcsettings ├── Hive ├── Backend │ ├── BCClient.h │ ├── BCClient.m │ ├── Backups │ │ ├── HIBackupAdapter.h │ │ ├── HIBackupAdapter.m │ │ ├── HIBackupManager.h │ │ ├── HIBackupManager.m │ │ ├── HIDropboxBackup.h │ │ ├── HIDropboxBackup.m │ │ ├── HIGoogleDriveBackup.h │ │ ├── HIGoogleDriveBackup.m │ │ ├── HILocalBackup.h │ │ ├── HILocalBackup.m │ │ ├── HISyncingAppAdapter.h │ │ ├── HISyncingAppAdapter.m │ │ ├── HITimeMachineBackup.h │ │ └── HITimeMachineBackup.m │ ├── HIBitcoinFormatService.h │ ├── HIBitcoinFormatService.m │ ├── HIBitcoinURIService.h │ ├── HIBitcoinURIService.m │ ├── HICurrencyFormatService.h │ ├── HICurrencyFormatService.m │ ├── HIDatabaseManager.h │ ├── HIDatabaseManager.m │ ├── HIExchangeRateService.h │ ├── HIExchangeRateService.m │ ├── HILogFileManager.h │ ├── HILogFileManager.m │ ├── HINameFormatService.h │ ├── HINameFormatService.m │ ├── HINetworkConnectionMonitor.h │ ├── HINetworkConnectionMonitor.m │ ├── HINotificationService.h │ ├── HINotificationService.m │ ├── HISendFeedbackService.h │ ├── HISendFeedbackService.m │ ├── HIShortcutService.h │ └── HIShortcutService.m ├── Categories │ ├── NSAlert+Hive.h │ ├── NSAlert+Hive.m │ ├── NSColor+Hive.h │ ├── NSColor+Hive.m │ ├── NSDecimalNumber+HISatoshiConversion.h │ ├── NSDecimalNumber+HISatoshiConversion.m │ ├── NSImage+NPEffects.h │ ├── NSImage+NPEffects.m │ ├── NSString+HICleanUpNumber.h │ ├── NSString+HICleanUpNumber.m │ ├── NSView+Hive.h │ ├── NSView+Hive.m │ ├── NSWindow+HIShake.h │ └── NSWindow+HIShake.m ├── Controllers │ ├── HIAboutHiveWindowController.h │ ├── HIAboutHiveWindowController.m │ ├── HIAboutHiveWindowController.xib │ ├── HIBackupCenterWindowController.h │ ├── HIBackupCenterWindowController.m │ ├── HICameraWindowController.h │ ├── HICameraWindowController.m │ ├── HIContactAutocompleteWindowController.h │ ├── HIContactAutocompleteWindowController.m │ ├── HIContactAutocompleteWindowController.xib │ ├── HIContactInfoViewController.h │ ├── HIContactInfoViewController.m │ ├── HIContactTabBarController.h │ ├── HIContactTabBarController.m │ ├── HIContactViewController.h │ ├── HIContactViewController.m │ ├── HIContactsViewController.h │ ├── HIContactsViewController.m │ ├── HIDebuggingInfoWindowController.h │ ├── HIDebuggingInfoWindowController.m │ ├── HIDebuggingToolsWindowController.h │ ├── HIDebuggingToolsWindowController.m │ ├── HIDebuggingToolsWindowController.xib │ ├── HIErrorWindowController.h │ ├── HIErrorWindowController.m │ ├── HIExportPrivateKeyWindowController.h │ ├── HIExportPrivateKeyWindowController.m │ ├── HIFeeDetailsViewController.h │ ├── HIFeeDetailsViewController.m │ ├── HIFirstRunWizardWindowController.h │ ├── HIFirstRunWizardWindowController.m │ ├── HIFirstRunWizardWindowController.xib │ ├── HIGeneralPreferencesViewController.h │ ├── HIGeneralPreferencesViewController.m │ ├── HIKeyPreferencesViewController.h │ ├── HIKeyPreferencesViewController.m │ ├── HILicenseInfoPanelController.h │ ├── HILicenseInfoPanelController.m │ ├── HILicenseInfoPanelController.xib │ ├── HILockScreenViewController.h │ ├── HILockScreenViewController.m │ ├── HIMainWindowController.h │ ├── HIMainWindowController.m │ ├── HINavigationController.h │ ├── HINavigationController.m │ ├── HINewContactViewController.h │ ├── HINewContactViewController.m │ ├── HIPasswordChangeWindowController.h │ ├── HIPasswordChangeWindowController.m │ ├── HIPasswordCreationInputHandler.h │ ├── HIPasswordCreationInputHandler.m │ ├── HIPasswordHolder.h │ ├── HIPasswordHolder.m │ ├── HIPasswordInputViewController.h │ ├── HIPasswordInputViewController.m │ ├── HIPreferencesWindowController.h │ ├── HIPreferencesWindowController.m │ ├── HIProfilePermissionWindowController.h │ ├── HIProfilePermissionWindowController.m │ ├── HIProfileViewController.h │ ├── HIProfileViewController.m │ ├── HIQRCodeWindowController.h │ ├── HIQRCodeWindowController.m │ ├── HIQRCodeWindowController.xib │ ├── HISendBitcoinsWindowController.h │ ├── HISendBitcoinsWindowController.m │ ├── HIShutdownAnnouncementWindowController.h │ ├── HIShutdownAnnouncementWindowController.m │ ├── HIShutdownAnnouncementWindowController.xib │ ├── HISidebarController.h │ ├── HISidebarController.m │ ├── HISignMessageWindowController.h │ ├── HISignMessageWindowController.m │ ├── HITransactionPopoverViewController.h │ ├── HITransactionPopoverViewController.m │ ├── HITransactionsViewController.h │ ├── HITransactionsViewController.m │ ├── HIViewController.h │ ├── HIViewController.m │ ├── HIWizardBackupViewController.h │ ├── HIWizardBackupViewController.m │ ├── HIWizardCompletedViewController.h │ ├── HIWizardCompletedViewController.m │ ├── HIWizardPasswordViewController.h │ ├── HIWizardPasswordViewController.m │ ├── HIWizardViewController.h │ ├── HIWizardViewController.m │ ├── HIWizardViewController.xib │ ├── HIWizardWelcomeViewController.h │ ├── HIWizardWelcomeViewController.m │ ├── HIWizardWindowController.h │ ├── HIWizardWindowController.m │ ├── ar.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── cs.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── da.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── de.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── el.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── en.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── es.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── fa.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── fi.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── fil.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── fr.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── hi.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── hu.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── it.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── ja.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── ko.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── nb.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── nl.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── pl.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── pt-PT.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── pt.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── ro.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── ru.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── sr-Latn.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── sr.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── sv.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── th.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── tr.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── uk.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ ├── ur.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib │ └── zh-Hans.lproj │ │ ├── HIBackupCenterWindowController.strings │ │ ├── HIBackupCenterWindowController.xib │ │ ├── HICameraWindowController.strings │ │ ├── HICameraWindowController.xib │ │ ├── HIContactInfoViewController.strings │ │ ├── HIContactInfoViewController.xib │ │ ├── HIContactViewController.strings │ │ ├── HIContactViewController.xib │ │ ├── HIContactsViewController.strings │ │ ├── HIContactsViewController.xib │ │ ├── HIDebuggingInfoWindowController.strings │ │ ├── HIDebuggingInfoWindowController.xib │ │ ├── HIErrorWindowController.strings │ │ ├── HIErrorWindowController.xib │ │ ├── HIExportPrivateKeyWindowController.strings │ │ ├── HIExportPrivateKeyWindowController.xib │ │ ├── HIFeeDetailsViewController.strings │ │ ├── HIFeeDetailsViewController.xib │ │ ├── HIGeneralPreferencesViewController.strings │ │ ├── HIGeneralPreferencesViewController.xib │ │ ├── HIKeyPreferencesViewController.strings │ │ ├── HIKeyPreferencesViewController.xib │ │ ├── HILockScreenViewController.strings │ │ ├── HILockScreenViewController.xib │ │ ├── HIMainWindowController.strings │ │ ├── HIMainWindowController.xib │ │ ├── HINewContactViewController.strings │ │ ├── HINewContactViewController.xib │ │ ├── HIPasswordChangeWindowController.strings │ │ ├── HIPasswordChangeWindowController.xib │ │ ├── HIPasswordInputViewController.strings │ │ ├── HIPasswordInputViewController.xib │ │ ├── HIProfilePermissionWindowController.strings │ │ ├── HIProfilePermissionWindowController.xib │ │ ├── HIProfileViewController.strings │ │ ├── HIProfileViewController.xib │ │ ├── HISendBitcoinsWindowController.strings │ │ ├── HISendBitcoinsWindowController.xib │ │ ├── HISignMessageWindowController.strings │ │ ├── HISignMessageWindowController.xib │ │ ├── HITransactionPopoverViewController.strings │ │ ├── HITransactionPopoverViewController.xib │ │ ├── HITransactionsViewController.strings │ │ ├── HITransactionsViewController.xib │ │ ├── HIWizardBackupViewController.strings │ │ ├── HIWizardBackupViewController.xib │ │ ├── HIWizardCompletedViewController.strings │ │ ├── HIWizardCompletedViewController.xib │ │ ├── HIWizardPasswordViewController.strings │ │ ├── HIWizardPasswordViewController.xib │ │ ├── HIWizardWelcomeViewController.strings │ │ └── HIWizardWelcomeViewController.xib ├── Credits.rtf ├── Database │ ├── HIAddress.h │ ├── HIAddress.m │ ├── HIContact.h │ ├── HIContact.m │ ├── HITransaction.h │ ├── HITransaction.m │ └── Hive.xcdatamodeld │ │ ├── .xccurrentversion │ │ ├── 2013121701.xcdatamodel │ │ └── contents │ │ ├── 2014012001.xcdatamodel │ │ └── contents │ │ ├── 2014043001.xcdatamodel │ │ └── contents │ │ ├── 2014081101.xcdatamodel │ │ └── contents │ │ ├── 2014081102.xcdatamodel │ │ └── contents │ │ ├── 2014081103.xcdatamodel │ │ └── contents │ │ ├── 2014081201.xcdatamodel │ │ └── contents │ │ ├── 2014082101.xcdatamodel │ │ └── contents │ │ ├── 2014082102.xcdatamodel │ │ └── contents │ │ ├── 2014082701.xcdatamodel │ │ └── contents │ │ ├── 2014082801.xcdatamodel │ │ └── contents │ │ ├── 2014083001.xcdatamodel │ │ └── contents │ │ ├── 2014090501.xcdatamodel │ │ └── contents │ │ ├── 2015020801.xcdatamodel │ │ └── contents │ │ └── Hive.xcdatamodel │ │ └── contents ├── Formatters │ ├── HILogFormatter.h │ └── HILogFormatter.m ├── HIAppDelegate.h ├── HIAppDelegate.m ├── Hive-Info.plist ├── Hive-Prefix.pch ├── Images │ ├── avatar-empty.pdf │ ├── bg-sidebar.pdf │ ├── button__inset.pdf │ ├── dropbox-glyph-blue.pdf │ ├── google-drive-128.png │ ├── hive-mac-demo.png │ ├── honey_im_subtle.png │ ├── honey_im_subtle@2x.png │ ├── icon-bitcoin.pdf │ ├── icon-delete.pdf │ ├── icon-dropdown-close.pdf │ ├── icon-dropdown-open.pdf │ ├── icon-gray-btc.pdf │ ├── icon-group__active.pdf │ ├── icon-group__inactive.pdf │ ├── icon-lock.png │ ├── icon-lock@2x.png │ ├── icon-nav-bar-back.pdf │ ├── icon-next.pdf │ ├── icon-next__active.pdf │ ├── icon-plus.pdf │ ├── icon-qr.png │ ├── icon-sadface.pdf │ ├── icon-search.pdf │ ├── icon-success.png │ ├── icon-success@2x.png │ ├── icon-tabbar-timeline__active.pdf │ ├── icon-tabbar-timeline__inactive.pdf │ ├── icon-tabbar-user__active.pdf │ ├── icon-tabbar-user__inactive.pdf │ ├── icon-timeline__active.pdf │ ├── icon-timeline__inactive.pdf │ ├── icon-transactions-arrow-left.pdf │ ├── icon-transactions-arrow-right.pdf │ ├── icon-transactions-btc-symbol.pdf │ ├── icon-transactions-minus.pdf │ ├── icon-transactions-plus.pdf │ ├── icon-your-profile__active.pdf │ ├── icon-your-profile__inactive.pdf │ └── wizard-background.png ├── Licenses.rtf ├── Models │ ├── HIBitcoinURI.h │ ├── HIBitcoinURI.m │ ├── HIPerson.h │ ├── HIProfile.h │ ├── HIProfile.m │ ├── HITemporaryContact.h │ └── HITemporaryContact.m ├── Views │ ├── HIAddressesBox.h │ ├── HIAddressesBox.m │ ├── HIAvatarEditBar.h │ ├── HIAvatarEditBar.m │ ├── HIBackupActionsCellView.h │ ├── HIBackupActionsCellView.m │ ├── HIBackupStatusCellView.h │ ├── HIBackupStatusCellView.m │ ├── HIBox.h │ ├── HIBox.m │ ├── HIBreadcrumbsView.h │ ├── HIBreadcrumbsView.m │ ├── HIButtonCell.h │ ├── HIButtonCell.m │ ├── HIButtonWithSpinner.h │ ├── HIButtonWithSpinner.m │ ├── HIClearView.h │ ├── HIClearView.m │ ├── HIContactAutocompleteCellView.h │ ├── HIContactAutocompleteCellView.m │ ├── HIContactRowView.h │ ├── HIContactRowView.m │ ├── HICopyView.h │ ├── HICopyView.m │ ├── HIDeleteButtonCell.h │ ├── HIDeleteButtonCell.m │ ├── HIDoneButtonCell.h │ ├── HIDoneButtonCell.m │ ├── HIDraggableButton.h │ ├── HIDraggableButton.m │ ├── HIEditableImageView.h │ ├── HIEditableImageView.m │ ├── HIEmptyTransactionsView.h │ ├── HIEmptyTransactionsView.m │ ├── HIErrorBar.h │ ├── HIErrorBar.m │ ├── HIFlippedView.h │ ├── HIFlippedView.m │ ├── HIGradientButtonCell.h │ ├── HIGradientButtonCell.m │ ├── HIImageCell.h │ ├── HIImageCell.m │ ├── HIKeyObservingWindow.h │ ├── HIKeyObservingWindow.m │ ├── HILabelPopUpButton.h │ ├── HILabelPopUpButton.m │ ├── HILinkTextField.h │ ├── HILinkTextField.m │ ├── HILockScreenView.h │ ├── HILockScreenView.m │ ├── HIPaddedSecureTextFieldCell.h │ ├── HIPaddedSecureTextFieldCell.m │ ├── HIProfileTabView.h │ ├── HIProfileTabView.m │ ├── HIRightPointingArrowView.h │ ├── HIRightPointingArrowView.m │ ├── HISeparatorView.h │ ├── HISeparatorView.m │ ├── HISidebarButton.h │ ├── HISidebarButton.m │ ├── HISidebarView.h │ ├── HISidebarView.m │ ├── HITextField.h │ ├── HITextField.m │ ├── HITextFieldCell.h │ ├── HITextFieldCell.m │ ├── HITitleView.h │ ├── HITitleView.m │ ├── HITransactionCellView.h │ ├── HITransactionCellView.m │ ├── HIWizardButtonCell.h │ ├── HIWizardButtonCell.m │ ├── HIWizardSmallButtonCell.h │ └── HIWizardSmallButtonCell.m ├── ar.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── bitcoinkit.checkpoints ├── cs.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── da.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── de.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── dsa_pub.pem ├── el.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── en.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── es.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── fa.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── fi.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── fil.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── fr.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── get_gdrive_folder.sh ├── hi.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── hu.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── it.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── ja.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── ko.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── main.m ├── nb.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── nl.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── pl.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── pt-PT.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── pt.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── ro.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── ru.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── sr-Latn.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── sr.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── sv.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── th.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── tr.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── uk.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── ur.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib └── zh-Hans.lproj │ ├── Localizable.strings │ ├── MainMenu.strings │ └── MainMenu.xib ├── HiveTests ├── HIBitcoinFormatServiceSpec.m ├── HICurrencyFormatServiceSpec.m ├── HiveTests-Info.plist ├── HiveTests-Prefix.pch └── NSDecimalNumberSpec.m ├── HockeySDK.framework ├── Headers ├── HockeySDK ├── Resources └── Versions │ ├── A │ ├── Headers │ │ ├── BITCrashExceptionApplication.h │ │ ├── BITCrashManager.h │ │ ├── BITCrashManagerDelegate.h │ │ ├── BITFeedbackManager.h │ │ ├── BITFeedbackWindowController.h │ │ ├── BITHockeyBaseManager.h │ │ ├── BITHockeyManager.h │ │ ├── BITHockeyManagerDelegate.h │ │ ├── BITSystemProfile.h │ │ └── HockeySDK.h │ ├── HockeySDK │ ├── Resources │ │ ├── BITCrashReportUI.nib │ │ ├── BITFeedbackWindowController.nib │ │ ├── Info.plist │ │ ├── de.lproj │ │ │ └── HockeySDK.strings │ │ ├── en.lproj │ │ │ └── HockeySDK.strings │ │ ├── fi.lproj │ │ │ └── HockeySDK.strings │ │ ├── fr.lproj │ │ │ └── HockeySDK.strings │ │ ├── it.lproj │ │ │ └── HockeySDK.strings │ │ ├── ja.lproj │ │ │ └── HockeySDK.strings │ │ ├── nb.lproj │ │ │ └── HockeySDK.strings │ │ └── sv.lproj │ │ │ └── HockeySDK.strings │ └── _CodeSignature │ │ └── CodeResources │ └── Current ├── Icon.icns ├── Podfile ├── Podfile.lock ├── README.md ├── appcast.xml ├── generate_appcast_code.rb ├── generate_strings.sh ├── pull_strings.rb ├── push_strings.sh ├── reuse_translation.rb ├── sort_imports.py ├── sort_imports.sh ├── update_strings.rb └── update_xibs.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/.tx/config -------------------------------------------------------------------------------- /GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/GPL-LICENSE.txt -------------------------------------------------------------------------------- /Hive.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Hive.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Hive.xcodeproj/xcshareddata/xcschemes/Hive.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive.xcodeproj/xcshareddata/xcschemes/Hive.xcscheme -------------------------------------------------------------------------------- /Hive.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Hive.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Hive/Backend/BCClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/BCClient.h -------------------------------------------------------------------------------- /Hive/Backend/BCClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/BCClient.m -------------------------------------------------------------------------------- /Hive/Backend/Backups/HIBackupAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HIBackupAdapter.h -------------------------------------------------------------------------------- /Hive/Backend/Backups/HIBackupAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HIBackupAdapter.m -------------------------------------------------------------------------------- /Hive/Backend/Backups/HIBackupManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HIBackupManager.h -------------------------------------------------------------------------------- /Hive/Backend/Backups/HIBackupManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HIBackupManager.m -------------------------------------------------------------------------------- /Hive/Backend/Backups/HIDropboxBackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HIDropboxBackup.h -------------------------------------------------------------------------------- /Hive/Backend/Backups/HIDropboxBackup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HIDropboxBackup.m -------------------------------------------------------------------------------- /Hive/Backend/Backups/HIGoogleDriveBackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HIGoogleDriveBackup.h -------------------------------------------------------------------------------- /Hive/Backend/Backups/HIGoogleDriveBackup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HIGoogleDriveBackup.m -------------------------------------------------------------------------------- /Hive/Backend/Backups/HILocalBackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HILocalBackup.h -------------------------------------------------------------------------------- /Hive/Backend/Backups/HILocalBackup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HILocalBackup.m -------------------------------------------------------------------------------- /Hive/Backend/Backups/HISyncingAppAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HISyncingAppAdapter.h -------------------------------------------------------------------------------- /Hive/Backend/Backups/HISyncingAppAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HISyncingAppAdapter.m -------------------------------------------------------------------------------- /Hive/Backend/Backups/HITimeMachineBackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HITimeMachineBackup.h -------------------------------------------------------------------------------- /Hive/Backend/Backups/HITimeMachineBackup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/Backups/HITimeMachineBackup.m -------------------------------------------------------------------------------- /Hive/Backend/HIBitcoinFormatService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HIBitcoinFormatService.h -------------------------------------------------------------------------------- /Hive/Backend/HIBitcoinFormatService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HIBitcoinFormatService.m -------------------------------------------------------------------------------- /Hive/Backend/HIBitcoinURIService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HIBitcoinURIService.h -------------------------------------------------------------------------------- /Hive/Backend/HIBitcoinURIService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HIBitcoinURIService.m -------------------------------------------------------------------------------- /Hive/Backend/HICurrencyFormatService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HICurrencyFormatService.h -------------------------------------------------------------------------------- /Hive/Backend/HICurrencyFormatService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HICurrencyFormatService.m -------------------------------------------------------------------------------- /Hive/Backend/HIDatabaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HIDatabaseManager.h -------------------------------------------------------------------------------- /Hive/Backend/HIDatabaseManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HIDatabaseManager.m -------------------------------------------------------------------------------- /Hive/Backend/HIExchangeRateService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HIExchangeRateService.h -------------------------------------------------------------------------------- /Hive/Backend/HIExchangeRateService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HIExchangeRateService.m -------------------------------------------------------------------------------- /Hive/Backend/HILogFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HILogFileManager.h -------------------------------------------------------------------------------- /Hive/Backend/HILogFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HILogFileManager.m -------------------------------------------------------------------------------- /Hive/Backend/HINameFormatService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HINameFormatService.h -------------------------------------------------------------------------------- /Hive/Backend/HINameFormatService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HINameFormatService.m -------------------------------------------------------------------------------- /Hive/Backend/HINetworkConnectionMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HINetworkConnectionMonitor.h -------------------------------------------------------------------------------- /Hive/Backend/HINetworkConnectionMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HINetworkConnectionMonitor.m -------------------------------------------------------------------------------- /Hive/Backend/HINotificationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HINotificationService.h -------------------------------------------------------------------------------- /Hive/Backend/HINotificationService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HINotificationService.m -------------------------------------------------------------------------------- /Hive/Backend/HISendFeedbackService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HISendFeedbackService.h -------------------------------------------------------------------------------- /Hive/Backend/HISendFeedbackService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HISendFeedbackService.m -------------------------------------------------------------------------------- /Hive/Backend/HIShortcutService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HIShortcutService.h -------------------------------------------------------------------------------- /Hive/Backend/HIShortcutService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Backend/HIShortcutService.m -------------------------------------------------------------------------------- /Hive/Categories/NSAlert+Hive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSAlert+Hive.h -------------------------------------------------------------------------------- /Hive/Categories/NSAlert+Hive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSAlert+Hive.m -------------------------------------------------------------------------------- /Hive/Categories/NSColor+Hive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSColor+Hive.h -------------------------------------------------------------------------------- /Hive/Categories/NSColor+Hive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSColor+Hive.m -------------------------------------------------------------------------------- /Hive/Categories/NSDecimalNumber+HISatoshiConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSDecimalNumber+HISatoshiConversion.h -------------------------------------------------------------------------------- /Hive/Categories/NSDecimalNumber+HISatoshiConversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSDecimalNumber+HISatoshiConversion.m -------------------------------------------------------------------------------- /Hive/Categories/NSImage+NPEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSImage+NPEffects.h -------------------------------------------------------------------------------- /Hive/Categories/NSImage+NPEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSImage+NPEffects.m -------------------------------------------------------------------------------- /Hive/Categories/NSString+HICleanUpNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSString+HICleanUpNumber.h -------------------------------------------------------------------------------- /Hive/Categories/NSString+HICleanUpNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSString+HICleanUpNumber.m -------------------------------------------------------------------------------- /Hive/Categories/NSView+Hive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSView+Hive.h -------------------------------------------------------------------------------- /Hive/Categories/NSView+Hive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSView+Hive.m -------------------------------------------------------------------------------- /Hive/Categories/NSWindow+HIShake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSWindow+HIShake.h -------------------------------------------------------------------------------- /Hive/Categories/NSWindow+HIShake.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Categories/NSWindow+HIShake.m -------------------------------------------------------------------------------- /Hive/Controllers/HIAboutHiveWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIAboutHiveWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIAboutHiveWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIAboutHiveWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIAboutHiveWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIAboutHiveWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/HIBackupCenterWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIBackupCenterWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIBackupCenterWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIBackupCenterWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HICameraWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HICameraWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HICameraWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HICameraWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIContactAutocompleteWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactAutocompleteWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIContactAutocompleteWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactAutocompleteWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIContactAutocompleteWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactAutocompleteWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/HIContactInfoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactInfoViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIContactInfoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactInfoViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIContactTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactTabBarController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIContactTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactTabBarController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIContactViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIContactViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIContactsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactsViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIContactsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIContactsViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIDebuggingInfoWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIDebuggingInfoWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIDebuggingInfoWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIDebuggingInfoWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIDebuggingToolsWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIDebuggingToolsWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIDebuggingToolsWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIDebuggingToolsWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIDebuggingToolsWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIDebuggingToolsWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/HIErrorWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIErrorWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIErrorWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIErrorWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIExportPrivateKeyWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIExportPrivateKeyWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIExportPrivateKeyWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIExportPrivateKeyWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIFeeDetailsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIFeeDetailsViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIFeeDetailsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIFeeDetailsViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIFirstRunWizardWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIFirstRunWizardWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIFirstRunWizardWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIFirstRunWizardWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIFirstRunWizardWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIFirstRunWizardWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/HIGeneralPreferencesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIGeneralPreferencesViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIGeneralPreferencesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIGeneralPreferencesViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIKeyPreferencesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIKeyPreferencesViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIKeyPreferencesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIKeyPreferencesViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HILicenseInfoPanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HILicenseInfoPanelController.h -------------------------------------------------------------------------------- /Hive/Controllers/HILicenseInfoPanelController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HILicenseInfoPanelController.m -------------------------------------------------------------------------------- /Hive/Controllers/HILicenseInfoPanelController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HILicenseInfoPanelController.xib -------------------------------------------------------------------------------- /Hive/Controllers/HILockScreenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HILockScreenViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HILockScreenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HILockScreenViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIMainWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIMainWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIMainWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIMainWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HINavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HINavigationController.h -------------------------------------------------------------------------------- /Hive/Controllers/HINavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HINavigationController.m -------------------------------------------------------------------------------- /Hive/Controllers/HINewContactViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HINewContactViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HINewContactViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HINewContactViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIPasswordChangeWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIPasswordChangeWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIPasswordChangeWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIPasswordChangeWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIPasswordCreationInputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIPasswordCreationInputHandler.h -------------------------------------------------------------------------------- /Hive/Controllers/HIPasswordCreationInputHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIPasswordCreationInputHandler.m -------------------------------------------------------------------------------- /Hive/Controllers/HIPasswordHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIPasswordHolder.h -------------------------------------------------------------------------------- /Hive/Controllers/HIPasswordHolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIPasswordHolder.m -------------------------------------------------------------------------------- /Hive/Controllers/HIPasswordInputViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIPasswordInputViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIPasswordInputViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIPasswordInputViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIPreferencesWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIPreferencesWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIPreferencesWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIPreferencesWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIProfilePermissionWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIProfilePermissionWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIProfilePermissionWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIProfilePermissionWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIProfileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIProfileViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIProfileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIProfileViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIQRCodeWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIQRCodeWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIQRCodeWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIQRCodeWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIQRCodeWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIQRCodeWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/HISendBitcoinsWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HISendBitcoinsWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HISendBitcoinsWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HISendBitcoinsWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIShutdownAnnouncementWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIShutdownAnnouncementWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIShutdownAnnouncementWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIShutdownAnnouncementWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIShutdownAnnouncementWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIShutdownAnnouncementWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/HISidebarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HISidebarController.h -------------------------------------------------------------------------------- /Hive/Controllers/HISidebarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HISidebarController.m -------------------------------------------------------------------------------- /Hive/Controllers/HISignMessageWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HISignMessageWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HISignMessageWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HISignMessageWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/HITransactionPopoverViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HITransactionPopoverViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HITransactionPopoverViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HITransactionPopoverViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HITransactionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HITransactionsViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HITransactionsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HITransactionsViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardBackupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardBackupViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardBackupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardBackupViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardCompletedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardCompletedViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardCompletedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardCompletedViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardPasswordViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardPasswordViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardPasswordViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardPasswordViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardWelcomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardWelcomeViewController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardWelcomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardWelcomeViewController.m -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardWindowController.h -------------------------------------------------------------------------------- /Hive/Controllers/HIWizardWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/HIWizardWindowController.m -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HICameraWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HICameraWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIContactInfoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIContactInfoViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIContactViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIContactViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIContactsViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIContactsViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIErrorWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIErrorWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIPasswordInputViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIPasswordInputViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HISignMessageWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HISignMessageWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HITransactionsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HITransactionsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIWizardBackupViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIWizardBackupViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ar.lproj/HIWizardWelcomeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ar.lproj/HIWizardWelcomeViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HICameraWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HICameraWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIContactInfoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIContactInfoViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIContactViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIContactViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIContactsViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIContactsViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIErrorWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIErrorWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIPasswordInputViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIPasswordInputViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HISignMessageWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HISignMessageWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HITransactionsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HITransactionsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIWizardBackupViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIWizardBackupViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/cs.lproj/HIWizardWelcomeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/cs.lproj/HIWizardWelcomeViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HICameraWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HICameraWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIContactInfoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIContactInfoViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIContactViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIContactViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIContactsViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIContactsViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIErrorWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIErrorWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIPasswordInputViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIPasswordInputViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HISignMessageWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HISignMessageWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HITransactionsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HITransactionsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIWizardBackupViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIWizardBackupViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/da.lproj/HIWizardWelcomeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/da.lproj/HIWizardWelcomeViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HICameraWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HICameraWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIContactInfoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIContactInfoViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIContactViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIContactViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIContactsViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIContactsViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIErrorWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIErrorWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIPasswordInputViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIPasswordInputViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HISignMessageWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HISignMessageWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HITransactionsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HITransactionsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIWizardBackupViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIWizardBackupViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/de.lproj/HIWizardWelcomeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/de.lproj/HIWizardWelcomeViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HICameraWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HICameraWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIContactInfoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIContactInfoViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIContactViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIContactViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIContactsViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIContactsViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIErrorWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIErrorWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIPasswordInputViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIPasswordInputViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HISignMessageWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HISignMessageWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HITransactionsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HITransactionsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIWizardBackupViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIWizardBackupViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/el.lproj/HIWizardWelcomeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/el.lproj/HIWizardWelcomeViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HICameraWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HICameraWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIContactInfoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIContactInfoViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIContactViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIContactViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIContactsViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIContactsViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIErrorWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIErrorWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIPasswordInputViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIPasswordInputViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HISignMessageWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HISignMessageWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HITransactionsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HITransactionsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIWizardBackupViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIWizardBackupViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/en.lproj/HIWizardWelcomeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/en.lproj/HIWizardWelcomeViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HICameraWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HICameraWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIContactInfoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIContactInfoViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIContactViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIContactViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIContactsViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIContactsViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIErrorWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIErrorWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIPasswordInputViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIPasswordInputViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HISignMessageWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HISignMessageWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HITransactionsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HITransactionsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIWizardBackupViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIWizardBackupViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/es.lproj/HIWizardWelcomeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/es.lproj/HIWizardWelcomeViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HICameraWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HICameraWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIContactInfoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HIContactInfoViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIContactViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HIContactViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIContactsViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HIContactsViewController.strings -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/fa.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fa.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fi.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fi.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fi.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fi.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fi.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fi.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fi.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fi.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fi.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/fi.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fi.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fil.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fil.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fil.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fil.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fil.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fil.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fil.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fil.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fil.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fil.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fil.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/fil.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fil.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fr.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fr.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fr.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fr.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fr.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fr.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fr.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fr.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fr.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/fr.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/fr.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hi.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hi.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hi.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hi.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hi.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hi.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hi.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hi.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hi.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/hi.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hi.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hu.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hu.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hu.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hu.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hu.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hu.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hu.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hu.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hu.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/hu.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/hu.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/it.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/it.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/it.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/it.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/it.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/it.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/it.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/it.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/it.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/it.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/it.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ja.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ja.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ja.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ja.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ja.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ja.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ja.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ja.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ja.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/ja.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ja.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ko.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ko.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ko.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ko.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ko.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ko.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ko.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ko.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ko.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/ko.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ko.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nb.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nb.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nb.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nb.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nb.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nb.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nb.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nb.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nb.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/nb.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nb.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nl.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nl.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nl.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nl.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nl.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nl.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nl.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nl.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nl.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/nl.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/nl.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pl.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pl.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pl.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pl.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pl.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pl.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pl.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pl.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pl.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/pl.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pl.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt-PT.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt-PT.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt-PT.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt-PT.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt-PT.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt-PT.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt-PT.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/pt-PT.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt-PT.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/pt.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/pt.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ro.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ro.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ro.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ro.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ro.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ro.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ro.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ro.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ro.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/ro.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ro.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ru.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ru.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ru.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ru.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ru.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ru.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ru.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ru.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ru.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/ru.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ru.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sr-Latn.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sr.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sr.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sr.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sr.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sr.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sr.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sr.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sr.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sr.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/sr.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sr.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sv.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sv.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sv.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sv.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sv.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sv.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sv.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sv.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sv.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/sv.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/sv.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/th.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/th.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/th.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/th.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/th.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/th.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/th.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/th.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/th.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/th.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/th.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/tr.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/tr.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/tr.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/tr.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/tr.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/tr.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/tr.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/tr.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/tr.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/tr.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/tr.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/uk.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/uk.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/uk.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/uk.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/uk.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/uk.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/uk.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/uk.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/uk.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/uk.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/uk.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HICameraWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ur.lproj/HICameraWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HIContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ur.lproj/HIContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HIContactsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ur.lproj/HIContactsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HIErrorWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ur.lproj/HIErrorWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HIFeeDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ur.lproj/HIFeeDetailsViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HILockScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ur.lproj/HILockScreenViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HIMainWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ur.lproj/HIMainWindowController.strings -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HIMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ur.lproj/HIMainWindowController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HINewContactViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ur.lproj/HINewContactViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Controllers/ur.lproj/HIProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Controllers/ur.lproj/HIProfileViewController.xib -------------------------------------------------------------------------------- /Hive/Controllers/zh-Hans.lproj/HIProfileViewController.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hive/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Credits.rtf -------------------------------------------------------------------------------- /Hive/Database/HIAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Database/HIAddress.h -------------------------------------------------------------------------------- /Hive/Database/HIAddress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Database/HIAddress.m -------------------------------------------------------------------------------- /Hive/Database/HIContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Database/HIContact.h -------------------------------------------------------------------------------- /Hive/Database/HIContact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Database/HIContact.m -------------------------------------------------------------------------------- /Hive/Database/HITransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Database/HITransaction.h -------------------------------------------------------------------------------- /Hive/Database/HITransaction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Database/HITransaction.m -------------------------------------------------------------------------------- /Hive/Database/Hive.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Database/Hive.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Hive/Formatters/HILogFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Formatters/HILogFormatter.h -------------------------------------------------------------------------------- /Hive/Formatters/HILogFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Formatters/HILogFormatter.m -------------------------------------------------------------------------------- /Hive/HIAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/HIAppDelegate.h -------------------------------------------------------------------------------- /Hive/HIAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/HIAppDelegate.m -------------------------------------------------------------------------------- /Hive/Hive-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Hive-Info.plist -------------------------------------------------------------------------------- /Hive/Hive-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Hive-Prefix.pch -------------------------------------------------------------------------------- /Hive/Images/avatar-empty.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/avatar-empty.pdf -------------------------------------------------------------------------------- /Hive/Images/bg-sidebar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/bg-sidebar.pdf -------------------------------------------------------------------------------- /Hive/Images/button__inset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/button__inset.pdf -------------------------------------------------------------------------------- /Hive/Images/dropbox-glyph-blue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/dropbox-glyph-blue.pdf -------------------------------------------------------------------------------- /Hive/Images/google-drive-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/google-drive-128.png -------------------------------------------------------------------------------- /Hive/Images/hive-mac-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/hive-mac-demo.png -------------------------------------------------------------------------------- /Hive/Images/honey_im_subtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/honey_im_subtle.png -------------------------------------------------------------------------------- /Hive/Images/honey_im_subtle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/honey_im_subtle@2x.png -------------------------------------------------------------------------------- /Hive/Images/icon-bitcoin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-bitcoin.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-delete.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-delete.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-dropdown-close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-dropdown-close.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-dropdown-open.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-dropdown-open.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-gray-btc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-gray-btc.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-group__active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-group__active.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-group__inactive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-group__inactive.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-lock.png -------------------------------------------------------------------------------- /Hive/Images/icon-lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-lock@2x.png -------------------------------------------------------------------------------- /Hive/Images/icon-nav-bar-back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-nav-bar-back.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-next.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-next.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-next__active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-next__active.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-plus.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-qr.png -------------------------------------------------------------------------------- /Hive/Images/icon-sadface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-sadface.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-search.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-search.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-success.png -------------------------------------------------------------------------------- /Hive/Images/icon-success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-success@2x.png -------------------------------------------------------------------------------- /Hive/Images/icon-tabbar-timeline__active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-tabbar-timeline__active.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-tabbar-timeline__inactive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-tabbar-timeline__inactive.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-tabbar-user__active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-tabbar-user__active.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-tabbar-user__inactive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-tabbar-user__inactive.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-timeline__active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-timeline__active.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-timeline__inactive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-timeline__inactive.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-transactions-arrow-left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-transactions-arrow-left.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-transactions-arrow-right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-transactions-arrow-right.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-transactions-btc-symbol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-transactions-btc-symbol.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-transactions-minus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-transactions-minus.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-transactions-plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-transactions-plus.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-your-profile__active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-your-profile__active.pdf -------------------------------------------------------------------------------- /Hive/Images/icon-your-profile__inactive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/icon-your-profile__inactive.pdf -------------------------------------------------------------------------------- /Hive/Images/wizard-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Images/wizard-background.png -------------------------------------------------------------------------------- /Hive/Licenses.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Licenses.rtf -------------------------------------------------------------------------------- /Hive/Models/HIBitcoinURI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Models/HIBitcoinURI.h -------------------------------------------------------------------------------- /Hive/Models/HIBitcoinURI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Models/HIBitcoinURI.m -------------------------------------------------------------------------------- /Hive/Models/HIPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Models/HIPerson.h -------------------------------------------------------------------------------- /Hive/Models/HIProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Models/HIProfile.h -------------------------------------------------------------------------------- /Hive/Models/HIProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Models/HIProfile.m -------------------------------------------------------------------------------- /Hive/Models/HITemporaryContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Models/HITemporaryContact.h -------------------------------------------------------------------------------- /Hive/Models/HITemporaryContact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Models/HITemporaryContact.m -------------------------------------------------------------------------------- /Hive/Views/HIAddressesBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIAddressesBox.h -------------------------------------------------------------------------------- /Hive/Views/HIAddressesBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIAddressesBox.m -------------------------------------------------------------------------------- /Hive/Views/HIAvatarEditBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIAvatarEditBar.h -------------------------------------------------------------------------------- /Hive/Views/HIAvatarEditBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIAvatarEditBar.m -------------------------------------------------------------------------------- /Hive/Views/HIBackupActionsCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIBackupActionsCellView.h -------------------------------------------------------------------------------- /Hive/Views/HIBackupActionsCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIBackupActionsCellView.m -------------------------------------------------------------------------------- /Hive/Views/HIBackupStatusCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIBackupStatusCellView.h -------------------------------------------------------------------------------- /Hive/Views/HIBackupStatusCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIBackupStatusCellView.m -------------------------------------------------------------------------------- /Hive/Views/HIBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIBox.h -------------------------------------------------------------------------------- /Hive/Views/HIBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIBox.m -------------------------------------------------------------------------------- /Hive/Views/HIBreadcrumbsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIBreadcrumbsView.h -------------------------------------------------------------------------------- /Hive/Views/HIBreadcrumbsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIBreadcrumbsView.m -------------------------------------------------------------------------------- /Hive/Views/HIButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIButtonCell.h -------------------------------------------------------------------------------- /Hive/Views/HIButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIButtonCell.m -------------------------------------------------------------------------------- /Hive/Views/HIButtonWithSpinner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIButtonWithSpinner.h -------------------------------------------------------------------------------- /Hive/Views/HIButtonWithSpinner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIButtonWithSpinner.m -------------------------------------------------------------------------------- /Hive/Views/HIClearView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIClearView.h -------------------------------------------------------------------------------- /Hive/Views/HIClearView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIClearView.m -------------------------------------------------------------------------------- /Hive/Views/HIContactAutocompleteCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIContactAutocompleteCellView.h -------------------------------------------------------------------------------- /Hive/Views/HIContactAutocompleteCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIContactAutocompleteCellView.m -------------------------------------------------------------------------------- /Hive/Views/HIContactRowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIContactRowView.h -------------------------------------------------------------------------------- /Hive/Views/HIContactRowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIContactRowView.m -------------------------------------------------------------------------------- /Hive/Views/HICopyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HICopyView.h -------------------------------------------------------------------------------- /Hive/Views/HICopyView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HICopyView.m -------------------------------------------------------------------------------- /Hive/Views/HIDeleteButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIDeleteButtonCell.h -------------------------------------------------------------------------------- /Hive/Views/HIDeleteButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIDeleteButtonCell.m -------------------------------------------------------------------------------- /Hive/Views/HIDoneButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIDoneButtonCell.h -------------------------------------------------------------------------------- /Hive/Views/HIDoneButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIDoneButtonCell.m -------------------------------------------------------------------------------- /Hive/Views/HIDraggableButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIDraggableButton.h -------------------------------------------------------------------------------- /Hive/Views/HIDraggableButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIDraggableButton.m -------------------------------------------------------------------------------- /Hive/Views/HIEditableImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIEditableImageView.h -------------------------------------------------------------------------------- /Hive/Views/HIEditableImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIEditableImageView.m -------------------------------------------------------------------------------- /Hive/Views/HIEmptyTransactionsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIEmptyTransactionsView.h -------------------------------------------------------------------------------- /Hive/Views/HIEmptyTransactionsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIEmptyTransactionsView.m -------------------------------------------------------------------------------- /Hive/Views/HIErrorBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIErrorBar.h -------------------------------------------------------------------------------- /Hive/Views/HIErrorBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIErrorBar.m -------------------------------------------------------------------------------- /Hive/Views/HIFlippedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIFlippedView.h -------------------------------------------------------------------------------- /Hive/Views/HIFlippedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIFlippedView.m -------------------------------------------------------------------------------- /Hive/Views/HIGradientButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIGradientButtonCell.h -------------------------------------------------------------------------------- /Hive/Views/HIGradientButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIGradientButtonCell.m -------------------------------------------------------------------------------- /Hive/Views/HIImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIImageCell.h -------------------------------------------------------------------------------- /Hive/Views/HIImageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIImageCell.m -------------------------------------------------------------------------------- /Hive/Views/HIKeyObservingWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIKeyObservingWindow.h -------------------------------------------------------------------------------- /Hive/Views/HIKeyObservingWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIKeyObservingWindow.m -------------------------------------------------------------------------------- /Hive/Views/HILabelPopUpButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HILabelPopUpButton.h -------------------------------------------------------------------------------- /Hive/Views/HILabelPopUpButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HILabelPopUpButton.m -------------------------------------------------------------------------------- /Hive/Views/HILinkTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HILinkTextField.h -------------------------------------------------------------------------------- /Hive/Views/HILinkTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HILinkTextField.m -------------------------------------------------------------------------------- /Hive/Views/HILockScreenView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HILockScreenView.h -------------------------------------------------------------------------------- /Hive/Views/HILockScreenView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HILockScreenView.m -------------------------------------------------------------------------------- /Hive/Views/HIPaddedSecureTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIPaddedSecureTextFieldCell.h -------------------------------------------------------------------------------- /Hive/Views/HIPaddedSecureTextFieldCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIPaddedSecureTextFieldCell.m -------------------------------------------------------------------------------- /Hive/Views/HIProfileTabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIProfileTabView.h -------------------------------------------------------------------------------- /Hive/Views/HIProfileTabView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIProfileTabView.m -------------------------------------------------------------------------------- /Hive/Views/HIRightPointingArrowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIRightPointingArrowView.h -------------------------------------------------------------------------------- /Hive/Views/HIRightPointingArrowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIRightPointingArrowView.m -------------------------------------------------------------------------------- /Hive/Views/HISeparatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HISeparatorView.h -------------------------------------------------------------------------------- /Hive/Views/HISeparatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HISeparatorView.m -------------------------------------------------------------------------------- /Hive/Views/HISidebarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HISidebarButton.h -------------------------------------------------------------------------------- /Hive/Views/HISidebarButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HISidebarButton.m -------------------------------------------------------------------------------- /Hive/Views/HISidebarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HISidebarView.h -------------------------------------------------------------------------------- /Hive/Views/HISidebarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HISidebarView.m -------------------------------------------------------------------------------- /Hive/Views/HITextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HITextField.h -------------------------------------------------------------------------------- /Hive/Views/HITextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HITextField.m -------------------------------------------------------------------------------- /Hive/Views/HITextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HITextFieldCell.h -------------------------------------------------------------------------------- /Hive/Views/HITextFieldCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HITextFieldCell.m -------------------------------------------------------------------------------- /Hive/Views/HITitleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HITitleView.h -------------------------------------------------------------------------------- /Hive/Views/HITitleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HITitleView.m -------------------------------------------------------------------------------- /Hive/Views/HITransactionCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HITransactionCellView.h -------------------------------------------------------------------------------- /Hive/Views/HITransactionCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HITransactionCellView.m -------------------------------------------------------------------------------- /Hive/Views/HIWizardButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIWizardButtonCell.h -------------------------------------------------------------------------------- /Hive/Views/HIWizardButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIWizardButtonCell.m -------------------------------------------------------------------------------- /Hive/Views/HIWizardSmallButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIWizardSmallButtonCell.h -------------------------------------------------------------------------------- /Hive/Views/HIWizardSmallButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/Views/HIWizardSmallButtonCell.m -------------------------------------------------------------------------------- /Hive/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/ar.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ar.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/ar.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ar.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/bitcoinkit.checkpoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/bitcoinkit.checkpoints -------------------------------------------------------------------------------- /Hive/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/cs.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/cs.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/cs.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/cs.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/da.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/da.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/da.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/da.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/de.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/de.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/de.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/de.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/dsa_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/dsa_pub.pem -------------------------------------------------------------------------------- /Hive/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/el.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/el.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/el.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/el.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/en.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/en.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/es.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/es.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/es.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/es.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fa.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/fa.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fa.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/fa.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fa.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/fi.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fi.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/fi.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fi.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/fil.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fil.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/fil.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fil.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/fil.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fil.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/fr.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fr.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/fr.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/fr.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/get_gdrive_folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/get_gdrive_folder.sh -------------------------------------------------------------------------------- /Hive/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/hi.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/hi.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/hi.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/hi.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/hu.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/hu.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/hu.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/hu.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/it.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/it.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/it.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/it.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/ja.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ja.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/ja.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ja.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/ko.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ko.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/ko.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ko.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/main.m -------------------------------------------------------------------------------- /Hive/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/nb.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/nb.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/nb.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/nb.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/nl.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/nl.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/nl.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/nl.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/pl.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/pl.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/pl.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/pl.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/pt-PT.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/pt-PT.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/pt-PT.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/pt-PT.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/pt.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/pt.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/pt.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/pt.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/ro.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ro.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/ro.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ro.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/ru.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ru.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/ru.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ru.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/sr-Latn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/sr-Latn.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/sr-Latn.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/sr-Latn.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/sr-Latn.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/sr-Latn.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/sr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/sr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/sr.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/sr.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/sr.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/sr.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/sv.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/sv.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/sv.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/sv.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/th.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/th.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/th.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/th.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/tr.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/tr.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/tr.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/tr.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/uk.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/uk.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/uk.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/uk.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/ur.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ur.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/ur.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ur.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/ur.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/ur.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Hive/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hive/zh-Hans.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/zh-Hans.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Hive/zh-Hans.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Hive/zh-Hans.lproj/MainMenu.xib -------------------------------------------------------------------------------- /HiveTests/HIBitcoinFormatServiceSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/HiveTests/HIBitcoinFormatServiceSpec.m -------------------------------------------------------------------------------- /HiveTests/HICurrencyFormatServiceSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/HiveTests/HICurrencyFormatServiceSpec.m -------------------------------------------------------------------------------- /HiveTests/HiveTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/HiveTests/HiveTests-Info.plist -------------------------------------------------------------------------------- /HiveTests/HiveTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/HiveTests/HiveTests-Prefix.pch -------------------------------------------------------------------------------- /HiveTests/NSDecimalNumberSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/HiveTests/NSDecimalNumberSpec.m -------------------------------------------------------------------------------- /HockeySDK.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /HockeySDK.framework/HockeySDK: -------------------------------------------------------------------------------- 1 | Versions/Current/HockeySDK -------------------------------------------------------------------------------- /HockeySDK.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /HockeySDK.framework/Versions/A/Headers/BITCrashManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/HockeySDK.framework/Versions/A/Headers/BITCrashManager.h -------------------------------------------------------------------------------- /HockeySDK.framework/Versions/A/Headers/HockeySDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/HockeySDK.framework/Versions/A/Headers/HockeySDK.h -------------------------------------------------------------------------------- /HockeySDK.framework/Versions/A/HockeySDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/HockeySDK.framework/Versions/A/HockeySDK -------------------------------------------------------------------------------- /HockeySDK.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/HockeySDK.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /HockeySDK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Icon.icns -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/README.md -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/appcast.xml -------------------------------------------------------------------------------- /generate_appcast_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/generate_appcast_code.rb -------------------------------------------------------------------------------- /generate_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/generate_strings.sh -------------------------------------------------------------------------------- /pull_strings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/pull_strings.rb -------------------------------------------------------------------------------- /push_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/push_strings.sh -------------------------------------------------------------------------------- /reuse_translation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/reuse_translation.rb -------------------------------------------------------------------------------- /sort_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/sort_imports.py -------------------------------------------------------------------------------- /sort_imports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/sort_imports.sh -------------------------------------------------------------------------------- /update_strings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/update_strings.rb -------------------------------------------------------------------------------- /update_xibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hivewallet/hive-mac/HEAD/update_xibs.sh --------------------------------------------------------------------------------