├── .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:
--------------------------------------------------------------------------------
1 | # ignore unfinished translations
2 | az_AZ.lproj
3 | he.lproj
4 | id.lproj
5 | lt.lproj
6 | nl_BE.lproj
7 | si.lproj
8 | sk.lproj
9 | sl.lproj
10 | zh_TW.lproj
11 |
12 | *.xcuserdatad
13 | *.xccheckout
14 | *.xcscmblueprint
15 | .DS_Store
16 | FauxPasConfig
17 | Pods
18 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "BitcoinKit"]
2 | path = BitcoinKit
3 | url = git@github.com:hivewallet/BitcoinKit.git
4 |
--------------------------------------------------------------------------------
/Hive.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Hive.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Hive.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Hive/Backend/Backups/HIBackupManager.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIBackupManager.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 23.12.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface HIBackupManager : NSObject
10 |
11 | @property (nonatomic, readonly) NSArray *allAdapters;
12 | @property (nonatomic, readonly) NSArray *visibleAdapters;
13 |
14 | + (HIBackupManager *)sharedManager;
15 | - (void)initializeAdapters;
16 | - (void)resetSettings;
17 | - (void)performBackups;
18 |
19 | @end
20 |
--------------------------------------------------------------------------------
/Hive/Backend/Backups/HIDropboxBackup.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIDropboxBackup.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 23.12.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HISyncingAppAdapter.h"
10 |
11 | @interface HIDropboxBackup : HISyncingAppAdapter
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Backend/Backups/HIGoogleDriveBackup.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIGoogleDriveBackup.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 22/07/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HISyncingAppAdapter.h"
10 |
11 | @interface HIGoogleDriveBackup : HISyncingAppAdapter
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Backend/Backups/HILocalBackup.h:
--------------------------------------------------------------------------------
1 | //
2 | // HILocalBackup.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 13/02/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIBackupAdapter.h"
10 |
11 | @interface HILocalBackup : HIBackupAdapter
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Backend/Backups/HITimeMachineBackup.h:
--------------------------------------------------------------------------------
1 | //
2 | // HITimeMachineBackup.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 23.12.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIBackupAdapter.h"
10 |
11 | extern NSString * const HITimeMachineBackupError;
12 | extern const NSInteger HITimeMachineBackupDisabled;
13 | extern const NSInteger HITimeMachineBackupPathExcluded;
14 |
15 | @interface HITimeMachineBackup : HIBackupAdapter
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/Hive/Backend/HIBitcoinURIService.h:
--------------------------------------------------------------------------------
1 | @class HIBitcoinURI;
2 | @class HISendBitcoinsWindowController;
3 |
4 | /*
5 | Service for handling bitcoin: URIs.
6 | */
7 | @interface HIBitcoinURIService : NSObject
8 |
9 | + (HIBitcoinURIService *)sharedService;
10 |
11 | - (BOOL)handleBitcoinURIString:(NSString *)bitcoinURIString;
12 | - (BOOL)applyURIString:(NSString *)bitcoinURIString toSendWindow:(HISendBitcoinsWindowController *)window;
13 | - (void)showQRCodeErrorForURI:(NSString *)URIString;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Backend/HIDatabaseManager.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIDatabaseManager.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 10.12.13.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | Manages Core Data helper objects (model, context, store coordinator).
11 | */
12 |
13 | @interface HIDatabaseManager : NSObject
14 |
15 | + (HIDatabaseManager *)sharedManager;
16 |
17 | @property (nonatomic, readonly) NSManagedObjectContext *managedObjectContext;
18 |
19 | - (BOOL)backupStoreToDirectory:(NSURL *)backupLocation error:(NSError **)error;
20 |
21 | @end
22 |
--------------------------------------------------------------------------------
/Hive/Backend/HILogFileManager.h:
--------------------------------------------------------------------------------
1 | //
2 | // HILogFileManager.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 11/12/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "DDFileLogger.h"
10 |
11 | @interface HILogFileManager : DDLogFileManagerDefault
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Backend/HILogFileManager.m:
--------------------------------------------------------------------------------
1 | //
2 | // HILogFileManager.m
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 11/12/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HILogFileManager.h"
10 |
11 | @implementation HILogFileManager
12 |
13 | - (NSString *)applicationName {
14 | if (DEBUG_OPTION_ENABLED(TESTING_NETWORK)) {
15 | return @"HiveTest";
16 | } else {
17 | return @"Hive";
18 | }
19 | }
20 |
21 | @end
22 |
--------------------------------------------------------------------------------
/Hive/Backend/HINameFormatService.h:
--------------------------------------------------------------------------------
1 | @protocol HIPerson;
2 | @protocol HINameFormatServiceObserver;
3 |
4 | @interface HINameFormatService : NSObject
5 |
6 | + (instancetype)sharedService;
7 |
8 | - (void)addObserver:(id)observer;
9 | - (void)removeObserver:(id)observer;
10 |
11 | - (NSString *)fullNameForPerson:(id)person;
12 |
13 | @end
14 |
15 | @protocol HINameFormatServiceObserver
16 |
17 | - (void)nameFormatDidChange;
18 |
19 | @end
20 |
--------------------------------------------------------------------------------
/Hive/Backend/HINetworkConnectionMonitor.h:
--------------------------------------------------------------------------------
1 | //
2 | // HINetworkConnectionMonitor.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 21/02/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | extern NSString * const HINetworkConnectionMonitorConnected;
10 | extern NSString * const HINetworkConnectionMonitorDisconnected;
11 |
12 | @interface HINetworkConnectionMonitor : NSObject
13 |
14 | @property (nonatomic, readonly) BOOL connected;
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Backend/HISendFeedbackService.h:
--------------------------------------------------------------------------------
1 | @interface HISendFeedbackService : NSObject
2 |
3 | + (HISendFeedbackService *)sharedService;
4 |
5 | - (void)sendSupportEmail;
6 |
7 | @end
8 |
--------------------------------------------------------------------------------
/Hive/Backend/HIShortcutService.h:
--------------------------------------------------------------------------------
1 | @interface HIShortcutService : NSObject
2 |
3 | @property (nonatomic, copy, readonly) NSString *sendPreferenceKey;
4 | @property (nonatomic, copy, readonly) NSString *cameraPreferenceKey;
5 |
6 | @property (nonatomic, copy) void (^sendBlock)();
7 | @property (nonatomic, copy) void (^cameraBlock)();
8 |
9 | + (HIShortcutService *)sharedService;
10 |
11 | @end
12 |
--------------------------------------------------------------------------------
/Hive/Categories/NSAlert+Hive.h:
--------------------------------------------------------------------------------
1 | //
2 | // NSAlert+Hive.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 26/05/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface NSAlert (Hive)
12 |
13 | + (NSAlert *)hiOKAlertWithTitle:(NSString *)title message:(NSString *)message;
14 | + (NSAlert *)hiOKAlertWithTitle:(NSString *)title format:(NSString *)format, ... NS_FORMAT_FUNCTION(2,3);
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Categories/NSColor+Hive.h:
--------------------------------------------------------------------------------
1 | //
2 | // NSColor+NativeColor.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 11.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface NSColor (Hive)
10 |
11 | + (NSColor *)hiWindowBackgroundColor;
12 |
13 | - (CGColorRef)hiNativeColor;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Categories/NSDecimalNumber+HISatoshiConversion.h:
--------------------------------------------------------------------------------
1 | @interface NSDecimalNumber(HISatoshiConversion)
2 |
3 | @property (nonatomic, assign, readonly) satoshi_t hiSatoshi;
4 |
5 | + (NSDecimalNumber *)hiDecimalNumberWithSatoshi:(satoshi_t)satoshi;
6 |
7 | @end
8 |
--------------------------------------------------------------------------------
/Hive/Categories/NSImage+NPEffects.h:
--------------------------------------------------------------------------------
1 | //
2 | // NSImage+NPEffects.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 12.06.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface NSImage (NPEffects)
10 |
11 | - (NSImage *)darkImage;
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Categories/NSString+HICleanUpNumber.h:
--------------------------------------------------------------------------------
1 | /* Clean up extra characters in numbers for parsing.
2 | */
3 | @interface NSString(HICleanUpNumber)
4 |
5 | /* Returns the decimal number in the string with all extra characters removed.
6 |
7 | This removes currency information, thousands separators and spaces,
8 | making it suited for use with NSDecimalNumber's initWithString:locale:.
9 | */
10 | - (NSString *)hi_stringWithCleanedUpDecimalNumberUsingLocale:(NSLocale *)locale;
11 |
12 | @end
13 |
--------------------------------------------------------------------------------
/Hive/Categories/NSView+Hive.h:
--------------------------------------------------------------------------------
1 | //
2 | // NSView+Hive.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 21.08.2014.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface NSView (Hive)
10 |
11 | - (NSArray *)hiRemoveConstraintsMatchingSubviews:(BOOL (^)(NSArray *))viewsMatch;
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Categories/NSWindow+HIShake.h:
--------------------------------------------------------------------------------
1 | /*
2 | Category to allow shaking a window (e.g. for wrong passwords).
3 | */
4 | @interface NSWindow (HIShake)
5 |
6 | - (void)hiShake;
7 |
8 | @end
9 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIAboutHiveWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIAboutHiveWindowController.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 18.02.2014.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface HIAboutHiveWindowController : NSWindowController
10 |
11 | @end
12 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIBackupCenterWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIBackupCenterWindowController.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 23.12.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIKeyObservingWindow.h"
10 |
11 | @interface HIBackupCenterWindowController : NSWindowController
12 |
13 |
14 | @end
15 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIContactsViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIContactsViewController.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 28.08.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIViewController.h"
10 |
11 | /*
12 | Manages the contacts list view.
13 | */
14 |
15 | @interface HIContactsViewController : HIViewController
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIDebuggingInfoWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIDebuggingInfoWindowController.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 29.10.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | Implements the "Debugging Info" window with details about wallet contents, transactions etc.
11 | */
12 |
13 | @interface HIDebuggingInfoWindowController : NSWindowController
14 | @end
15 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIDebuggingToolsWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIDebuggingToolsWindowController.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 25.11.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | Implements the "Debugging Tools" window which provides access to various hacks like resetting applications or
11 | transactions list etc.
12 | */
13 |
14 | @interface HIDebuggingToolsWindowController : NSWindowController
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIErrorWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIErrorWindowController.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 30.10.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | Implements the error popup that shows up when an exception is caught. Exception details can be sent to the Hockeyapp
11 | API.
12 | */
13 |
14 | @interface HIErrorWindowController : NSWindowController
15 |
16 | - (instancetype)initWithException:(NSException *)exception;
17 | - (IBAction)cancelReport:(id)sender;
18 | - (IBAction)sendReport:(id)sender;
19 |
20 | @end
21 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIExportPrivateKeyWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIExportPrivateKeyWindowController.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 14/10/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface HIExportPrivateKeyWindowController : NSWindowController
10 |
11 | @end
12 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIFeeDetailsViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIFeeDetailsViewController.h
3 | // Hive
4 | //
5 | // Created by Nikolaj Schumacher on 2013-11-30.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | Shows details about the transaction fee.
11 | */
12 |
13 | @interface HIFeeDetailsViewController : NSViewController
14 |
15 | @property (nonatomic, assign) satoshi_t fee;
16 | @property (nonatomic, copy) NSString *bitcoinFormat;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIFirstRunWizardWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIFirstRunWizardWindowController.h
3 | // Hive
4 | //
5 | // Created by Nikolaj Schumacher on 2014-01-12.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIKeyObservingWindow.h"
10 | #import "HIWizardWindowController.h"
11 |
12 | /*
13 | Wizard shown to the user on first run.
14 | */
15 |
16 | @interface HIFirstRunWizardWindowController : HIWizardWindowController
17 | @end
18 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIGeneralPreferencesViewController.h:
--------------------------------------------------------------------------------
1 | #import
2 |
3 | @interface HIGeneralPreferencesViewController : NSViewController
4 | @end
5 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIKeyPreferencesViewController.h:
--------------------------------------------------------------------------------
1 | @interface HIKeyPreferencesViewController : NSViewController
2 | @end
3 |
--------------------------------------------------------------------------------
/Hive/Controllers/HILicenseInfoPanelController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HILicenseInfoPanelController.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 18/02/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface HILicenseInfoPanelController : NSWindowController
10 |
11 | @end
12 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIPasswordChangeWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIPasswordChangeWindowController.h
3 | // Hive
4 | //
5 | // Created by Nikolaj Schumacher on 2013-12-17.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | @class HIPasswordHolder;
10 |
11 | /*
12 | Implements a window in which you can change your wallet password and re-encrypt it.
13 | */
14 |
15 | @interface HIPasswordChangeWindowController : NSWindowController
16 |
17 | - (void)resetInput;
18 |
19 | @end
20 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIPasswordCreationInputHandler.h:
--------------------------------------------------------------------------------
1 | @class HIPasswordHolder;
2 |
3 | /*
4 | Common input and validation handler for repeated password input.
5 | */
6 | @interface HIPasswordCreationInputHandler : NSObject
7 |
8 | - (void)resetInput;
9 | - (void)textDidChangeInTextField:(NSTextField *)textField;
10 | - (void)editingDidEnd;
11 | - (void)finishWithPasswordHolder:(void (^)(HIPasswordHolder *passwordHolder))block;
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIPasswordHolder.h:
--------------------------------------------------------------------------------
1 | /*
2 | Password storage that makes an effort to remove the password from memory.
3 | */
4 | @interface HIPasswordHolder : NSObject
5 |
6 | /*
7 | The password as an UTF-16 string.
8 | Never copy this property unless you destroy the copy right away.
9 | */
10 | @property (nonatomic, strong, readonly) NSData *data;
11 |
12 | - (instancetype)initWithString:(NSString *)password;
13 |
14 | - (void)clear;
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIPreferencesWindowController.h:
--------------------------------------------------------------------------------
1 | #import "MASPreferencesWindowController.h"
2 |
3 | @interface HIPreferencesWindowController : MASPreferencesWindowController
4 | @end
5 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIProfilePermissionWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIProfilePermissionWindowController.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 25/02/15.
6 | // Copyright (c) 2015 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | extern NSString * const SUSendProfileInfoKey;
12 |
13 | @interface HIProfilePermissionWindowController : NSWindowController
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIQRCodeWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIQRCodeWindowController.h
3 | // Hive
4 | //
5 | // Created by Nikolaj Schumacher on 2014-02-09.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | Pop-up window showing an enlarged QR code.
11 | */
12 | @interface HIQRCodeWindowController : NSWindowController
13 |
14 | @property (nonatomic, copy) NSString *QRCodeString;
15 | @property (nonatomic, copy) NSString *label;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIShutdownAnnouncementWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIShutdownAnnouncementWindowController.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 05/03/15.
6 | // Copyright (c) 2015 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | extern NSString * const ShutdownAnnouncementDisplayedKey;
12 |
13 | @interface HIShutdownAnnouncementWindowController : NSWindowController
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Controllers/HISignMessageWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HISignMessageWindowController.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 01.04.2014.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface HISignMessageWindowController : NSWindowController
10 |
11 | @end
12 |
--------------------------------------------------------------------------------
/Hive/Controllers/HITransactionsViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HITransactionsViewController.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 28.08.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIViewController.h"
10 |
11 | /*
12 | Manages the transactions list view.
13 | */
14 |
15 | @interface HITransactionsViewController : HIViewController
16 |
17 | - (instancetype)initWithContact:(HIContact *)contact;
18 |
19 | @end
20 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIWizardBackupViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIWizardBackupViewController.h
3 | // Hive
4 | //
5 | // Created by Nikolaj Schumacher on 2014-01-19.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIKeyObservingWindow.h"
10 | #import "HIWizardViewController.h"
11 |
12 | /*
13 | First-run wizard page for setting up backups.
14 | */
15 | @interface HIWizardBackupViewController : HIWizardViewController
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIWizardPasswordViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIWizardPasswordViewController.h
3 | // Hive
4 | //
5 | // Created by Nikolaj Schumacher on 2014-01-19.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIWizardViewController.h"
10 |
11 | /*
12 | First-run wizard page for picking a password.
13 | */
14 | @interface HIWizardPasswordViewController : HIWizardViewController
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIWizardViewController.m:
--------------------------------------------------------------------------------
1 | #import "HIWizardViewController.h"
2 |
3 | @interface HIWizardViewController ()
4 | @end
5 |
6 | @implementation HIWizardViewController
7 |
8 | - (instancetype)init {
9 | return [self initWithNibName:[self className] bundle:nil];
10 | }
11 |
12 | - (IBAction)nextButtonPressed:(id)sender {
13 | [self.wizardDelegate didCompleteWizardPage];
14 | }
15 |
16 | - (NSResponder *)initialFirstResponder {
17 | return nil;
18 | }
19 |
20 | - (void)viewWillAppear {
21 | }
22 |
23 | @end
24 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIWizardWelcomeViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIWizardWelcomeViewController.h
3 | // Hive
4 | //
5 | // Created by Nikolaj Schumacher on 2014-01-19.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIWizardViewController.h"
10 |
11 | @interface HIWizardWelcomeViewController : HIWizardViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Controllers/HIWizardWindowController.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIWizardViewController.h
3 | // Hive
4 | //
5 | // Created by Nikolaj Schumacher on 2014-01-12.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | @class HIWizardViewController;
10 |
11 | /*
12 | General multi-page wizard.
13 | */
14 |
15 | @interface HIWizardWindowController : NSWindowController
16 |
17 | @property (nonatomic, copy) NSArray *viewControllers;
18 | @property (nonatomic, copy) void (^onCompletion)();
19 | @property (nonatomic, readonly) HIWizardViewController *currentViewController;
20 |
21 | @end
22 |
--------------------------------------------------------------------------------
/Hive/Controllers/ar.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR code scanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Hold up a Bitcoin QR code to the camera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ar.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "تعديل";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "معلومات الاتصال";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "بريد اليكترونى";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "عنوان بيتكوين";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/ar.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "أرسال بيتكوين";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ar.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "The fees you pay help keep the Bitcoin network running!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Current transaction fee:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Learn more…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ar.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scan QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Show “Send” window:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Global Shortcuts";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ar.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive is locked.\nEnter your password to unlock:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Unlock";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Don't show this screen again";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ar.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "ارسل";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Network connection error";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ar.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "ارسل";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ar.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/ar.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/ar.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "A wallet is like a set of keys that unlock your money. Let's create one now.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Welcome to Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Create a new wallet";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/cs.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Skener QR kódu";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Zamiřte foťákem na QR kód bitcoinu.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/cs.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Editovat";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Informace o kontaktu";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "E-mail:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoinové adresy";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/cs.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Odeslat Bitcoiny";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/cs.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Placením poplatků pomáháte udržovat síť Bitcoinu funkční!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Aktuální poplatek za transakci:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Více informací...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/cs.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Naskenovat QR kód:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Zobrazit \"Odesílací\" okno:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Klávesové zkratky";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/cs.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Uzamknuto.\nVložte heslo pro odemčení:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Odemknout";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Nezobrazovat znovu toho okno";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/cs.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Odeslat";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Chyba připojení k síťi";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/cs.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Poslat";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/cs.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/cs.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/cs.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "Peněženka je jako sadu klíčů, které odemknou vaše peníze. Pojďme ji vytvořit.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Vítejte v Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Vytvořit novou peněženku";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/da.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR-kodescanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Hold en Bitcoin QR-kode foran kameraet.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/da.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Rediger";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Kontaktoplysninger";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin-adresser";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/da.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Send Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/da.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Gebyrerne, du betaler, hjælper til at holde Bitcoin-netværket kørende!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Nuværende transaktionsgebyr:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Mere om dette…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/da.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scan QR-kode:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Vis vinduet “Send”:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Globale genveje";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/da.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive er låst.\nIndtast din adgangskode for at låse op:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Lås op";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Vis ikke denne besked igen";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/da.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Send";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Netværksproblem";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/da.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Send";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/da.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/da.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/da.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "En wallet er som et sæt nøgler der giver adgang til dine penge. Lad os oprette en wallet nu.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Velkommen til Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Opret en ny wallet";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/de.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR-Code Scanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Bitcoin QR-Code vor die Kamera halten.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/de.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Bearbeiten";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Kontaktinformationen";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "E-Mail:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin-Adressen";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/de.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Bitcoin versenden";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/de.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Die Gebühren helfen, das Bitcoin-Netzwerk am Laufen zu halten!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Aktuelle Transaktionsgebühr:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Mehr erfahren…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/de.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "QR-Code scannen:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "„Senden“-Fenster anzeigen:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Globale Tastaturkürzel";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/de.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive ist gesperrt.\nGeben Sie Ihr Passwort zum Entsperren ein:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Entsperren";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Diese Abfrage nicht mehr anzeigen";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/de.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Senden";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Netzwerk-Fehler";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/de.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Senden";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/de.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/de.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/el.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR code scanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Hold up a Bitcoin QR code to the camera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/el.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Επεξεργασία";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Πληροφορίες επαφής";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Διευθύνσεις Bitcoin";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/el.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Αποστολή Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/el.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Οι αμοιβές που πληρώνετε βοηθούν στη λειτουργία του δίκτυο Bitcoin!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Τρέχουσα αμοιβή συναλλαγής:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Μάθετε περισσότερα…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/el.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Σκανάρετε QR κωδικό:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Δείξε παράθυρο \"αποστολή\":";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Καθολικές συντομέυσεις";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/el.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive is locked.\nEnter your password to unlock:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Unlock";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Don't show this screen again";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/el.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Αποστολή";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Σφάλμα σύνδεσης δικτύου";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/el.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Αποστολή";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/el.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/el.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/en.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR code scanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Hold up a Bitcoin QR code to the camera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/en.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Edit";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Contact information";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin addresses";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/en.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Send Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/en.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "The fees you pay help keep the Bitcoin network running!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Current transaction fee:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Learn more…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/en.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scan QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Show “Send” window:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Global Shortcuts";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/en.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive is locked.\nEnter your password to unlock:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Unlock";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Don't show this screen again";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/en.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Send";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Network connection error";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/en.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Send";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/en.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/en.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/en.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "A wallet is like a set of keys that unlock your money. Let's create one now.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Welcome to Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Create a new wallet";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/es.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Escáner de códigos QR";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Muestre el código QR de Bitcoin a la cámara.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/es.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Editar";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Información de contacto";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Direcciones Bitcoin";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/es.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Enviar Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/es.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "¡Las comisiones ayudan a mantener la red Bitcoin funcionando!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Comisión de transacción actual:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Saber más…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/es.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Escanear código QR:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Mostrar ventana \"Enviar\":";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Accesos Directos Globales";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/es.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive está bloqueado.\nIntroduce tu contraseña para desbloquearlo:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Desbloquear";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "No mostrar esta pantalla de nuevo";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/es.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Enviar";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Error en la conexión a la red";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/es.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Enviar";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/es.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/es.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/es.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "Una cartera es una serie de llaves que liberan tu dinero. Vamos a crear una ahora.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Bienvenido a Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Crear nueva cartera";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fa.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "چک کننده کد QR";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "یک کد QR بیت کوین را در مقابل دوربین نگه دارید";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/fa.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "ویرایش";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "اطلاعات مخاطب";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "ایمیل";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "آدرس بیت کوین";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/fa.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "ارسال بیت کوین";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/fa.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "کارمزد هایی که شما پرداخت می کنید باعث می شود تا شبکه بیت کوین به کار خود ادامه دهد!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "کارمزد تراکنش جاری";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "بیشتر بیاموزید";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fa.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "چک کردن کد QR:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "نمایش پنجره \"ارسال\"";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "میانبرهای سراسری";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fa.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "هایو قفل شده است.\nبرای باز کردن آن رمزتان را وارد نمائید:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "باز کردن";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "این صفحه را مجددا نمایش نده";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fa.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "ارسال";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "خطا در اتصال به شیکه";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/fa.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "ارسال";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/fa.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/fa.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/fa.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "کیف پول مانند مجموعه ای از کلید هاست که پول شما رو باز می کنید. هم اکنون یکی بسازید.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "به هایو خوش آمدید";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "کیف پول جدید";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fi.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR-koodin lukija";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Näytä Bitcoin QR-koodia kameralle.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/fi.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Muokkaa";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Yhteystieto informaatio";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Sähköposti:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin-osoitteet";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/fi.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Lähetä Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/fi.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Maksamasi maksut helpottavat pitämään Bitcoin-verkoston toiminnassa!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Tämänhetkinen transaktiomaksu:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Lisätiedot…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fi.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Skannaa QR-koodi:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Näytä \"Lähetä\" ikkuna:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Globaalit Kuvakkeet";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fi.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive on lukittu.\nKirjoita salasanasi avataksesi Hiven:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Avaa lukitus";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Älä näytä tätä viestiä uudelleen";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fi.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Lähetä";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Yhteysvirhe";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/fi.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Lähetä";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/fi.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/fi.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/fi.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "Lompakko on kuin avainnippu, jotka avaavat pääsyn rahoihisi. Luodaan sinulle lompakko nyt.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Tervetuloa Hiveen";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Luo uusi lompakko";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fil.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR code scanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Hawakang paharap ang Bitcoin QR sa kamera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/fil.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "I-edit";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Contact information";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Mga Bitcoin address";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/fil.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Magpadala ng Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/fil.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "I-scan ang QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Ipakita ang \"Send\" window:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Mga Global Shortcut";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fil.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Ang Hive ay naka-lock.\nI-enter ang iyong password para ma-unlock:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "I-unlock";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Huwag nang ipakita itong screen uli";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fil.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Ipadala";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Network connection error";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/fil.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Ipadala";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/fil.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/fil.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/fr.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Lecteur de code QR";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Tenez un code QR Bitcoin devant l'objectif.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/fr.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Modifier";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Coordonnées";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Courriel :";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Adresses Bitcoin";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/fr.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Envoyer des bitcoins";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/fr.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Les frais que vous payez aident au fonctionnement du réseau Bitcoin !";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Frais de la transaction actuelle :";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "En apprendre plus…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fr.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Balayer un code QR :";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Afficher la fenêtre « Envoyer » :";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Raccourcis globaux";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fr.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive est verrouillé.\nSaisissez votre mot de passe pour le déverrouiller :";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Déverrouiller";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Ne plus montrer cet écran";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/fr.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Envoyer";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Erreur de connexion réseau";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/fr.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Envoyer";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/fr.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/fr.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/hi.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR code scanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Hold up a Bitcoin QR code to the camera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/hi.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "संपादित करें";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "कोन्टेक्ट इन्फोरमैशन";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "ईमेल:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "बिटकॅाइन एडरेस";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/hi.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "बिटकॅाइन भेजें";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/hi.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "The fees you pay help keep the Bitcoin network running!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Current transaction fee:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Learn more…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/hi.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scan QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Show “Send” window:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Global Shortcuts";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/hi.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive is locked.\nEnter your password to unlock:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Unlock";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Don't show this screen again";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/hi.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "भेजें";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Network connection error";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/hi.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Send";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/hi.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/hi.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/hi.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "A wallet is like a set of keys that unlock your money. Let's create one now.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Welcome to Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Create a new wallet";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/hu.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR kód olvasó";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Mutasd a QR kódot a kamerának.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/hu.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Szerkesztés";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Kapcsolat információi";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "E-mail cím:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin cím";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/hu.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Bitcoin küldése";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/hu.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Azért fizetsz illetéket hogy a Bitcoin hálózat működjön!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Jelenlegi illeték:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Tudj meg többet...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/hu.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "QR kód beolvasása:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Mutasd a \"Küldés\" képernyőt:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Globális linkek";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/hu.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "A Hive le van zárva.\nÍrd be a jelszavad a feloldáshoz:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Felold";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Többet ne mutassa ezt";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/hu.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Küld";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Nem lehet kapcsolódni a hálózathoz";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/hu.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Küld";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/hu.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/hu.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/hu.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "A tárca az egy kulcscsomó ami engedi hogy elköltsd a pénzed. Csináljunk egyet.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Üdvözöllek a Hiveban";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Csinálj új tárcát";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/it.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Scanner codice QR";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Posiziona un QR code avanti alla webcam.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/it.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Modifica";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Informazioni di contatto";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Indirizzo Bitcoin";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/it.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Invia Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/it.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Le commissioni che paghi servono a mantenere in vita il network Bitcoin!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Commissione attuale:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Leggi di più…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/it.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Leggi codice QR:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Mostra la finestra \"Invia\":";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Scorciatoie globali";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/it.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive è bloccato.\nInserisci la tua password per sbloccarlo:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Sblocca";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Non mostrare più questa finestra";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/it.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Invia";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Errore di connessione con il network";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/it.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Invia";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/it.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/it.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/it.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "Un portafoglio è come un set di chiavi che protegge i tuoi soldi. Creane uno adesso.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Benvenuto su Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Crea un nuovo Portafoglio";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QRコードスキャナー";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "ビットコインのQRコードをカメラにかざしてください.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "編集";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "コンタクト情報";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "メール:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "ビットコインアドレス";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "ビットコインを送る";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HIContactsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Looks like you don't have any contacts yet! Add your first one and start sending money!"; ObjectID = "123"; */
3 | "123.title" = "まだコンタクトがいませんね。コンタクトを追加して、ビットコインを送りましょう";
4 |
5 | /* Class = "NSButtonCell"; title = "Add contact"; ObjectID = "125"; */
6 | "125.title" = "コンタクトを追加する";
7 |
8 | /* Class = "NSTextFieldCell"; title = "You can then use the ✚ button on top to add more contacts."; ObjectID = "129"; */
9 | "129.title" = "上部の \U2795 ボタンを使って、コンタクトを追加できます。";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "送金手数料はビットコインのネットワークを維持するためのものです。";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "現在の送金手数料:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "もっと詳しく...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "QRコードを読み取る:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "「送金」ウィンドウを表示:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "グローバルショートカット";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hiveはロックされています。\nパスワードを入力してください:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "アンロック";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "次回から表示しない";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "送金";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "ネットワーク接続エラー";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "送金";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/ja.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/ja.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "ウォレットはコインを利用するのに必要な鍵の集まりのようなものです。ウォレットを作りましょう。";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Hiveへようこそ";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "ウォレットを作成する";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR code scanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Hold up a Bitcoin QR code to the camera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "편집";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "연락처 정보";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "이메일:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin 주소";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Bitcoin 보내기";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HIContactsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Looks like you don't have any contacts yet! Add your first one and start sending money!"; ObjectID = "123"; */
3 | "123.title" = "아직 연락처가 없네요! 연락처를 추가하신 후에 Bitcoin을 보내세요!";
4 |
5 | /* Class = "NSButtonCell"; title = "Add contact"; ObjectID = "125"; */
6 | "125.title" = "연락처 추가하기";
7 |
8 | /* Class = "NSTextFieldCell"; title = "You can then use the ✚ button on top to add more contacts."; ObjectID = "129"; */
9 | "129.title" = "를 사용하실 수 있습니다 \U2795 연락처를 더 추가하기 위해선 위를";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "The fees you pay help keep the Bitcoin network running!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Current transaction fee:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Learn more…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scan QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Show “Send” window:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Global Shortcuts";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive is locked.\nEnter your password to unlock:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Unlock";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Don't show this screen again";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "보내기";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Network connection error";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Send";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/ko.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/ko.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "A wallet is like a set of keys that unlock your money. Let's create one now.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Welcome to Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Create a new wallet";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/nb.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Skanner for QR-kode";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Vis en Bitcoin QR-kode til kamera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/nb.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Rediger";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Kontaktinformasjon";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "E-post:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin-adresser";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/nb.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Send Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/nb.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Avgiftene du betaler hjelper å holde Bitcoin-nettverket i orden!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Gjeldene transaksjonsavgift:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Lær mer...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/nb.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Skann QR kode:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Vis \"Send\"-vinduet:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Globale snarveier";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/nb.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive er låst.\nSkriv inn passordet ditt for å låse opp:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Lås opp";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Ikke vis dette igjen";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/nb.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Send";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Feil i forbindelse til nettverk";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/nb.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Send";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/nb.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/nb.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/nb.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "En lommebok er som et sett nøkler som gir deg tilgang til dine penger. La oss lage en nå.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Velkommen til Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Lag en ny lommebok";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/nl.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR code scanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Hou een Bitcoin QR code bij de camera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/nl.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Aanpassen";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Contact informatie";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin adressen";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/nl.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Bitcoins versturen";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/nl.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "De transactiekosten helpen om het Bitcoin netwerk draaiend te houden.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Huidige transactiekosten:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Meer informatie...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/nl.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scan een QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Toon \"Verstuur\" venster:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Globale snelkopllelingen";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/nl.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive is vergrendeld\nVoer uw wachtwoord in om Hive te ontgrendelen:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Ontgrendel";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Weergeef dit scherm niet meer";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/nl.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Verzenden";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Verbindingsfout";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/nl.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Versturen";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/nl.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/nl.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/pl.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Skaner kodów QR";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Ustaw kod QR na wprost kamery.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/pl.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Edytuj";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Dane kontaktowe";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Adresy Bitcoin";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/pl.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Wyślij Bitcoiny";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/pl.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Do transakcji dodawane są niewielkie opłaty, które pomagają w utrzymaniu sieci Bitcoin.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Aktualna stawka opłaty:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Dowiedz się więcej…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/pl.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Skanowanie kodu QR:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Otwarcie okna \"Wyślij\":";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Globalne skróty klawiszowe";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/pl.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Portfel Hive jest zablokowany.\nPodaj swoje hasło, aby odblokować:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Odblokuj";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Nie pokazuj więcej tego ekranu";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/pl.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Wyślij";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Błąd połączenia z siecią";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/pl.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Wyślij";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/pl.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/pl.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/pt-PT.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Captura de QR code";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Mostre um QR code para a câmera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt-PT.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Editar";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Informação para contacto";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Endereços Bitcoin";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt-PT.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Enviar Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt-PT.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "As taxas que você paga ajudam o funcionamento da rede Bitcoin!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Taxa actual de transacção:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Saiba mais...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt-PT.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Para capturar um QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Para mostrar a janela \"Enviar\":";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Criar Atalhos";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt-PT.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "O Hive está bloqueado.\nInsira sua senha para desbloquear:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Desbloquear";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Não mostrar esta tela novamente";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt-PT.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Enviar";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Erro de comunicação de rede";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt-PT.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Enviar";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt-PT.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/pt-PT.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/pt.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Capturar QR code";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Mostre um QR code Bitcoin para a camera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Editar";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Informação para contato";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Endereços Bitcoin";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Enviar Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "As taxas que você paga ajudam a manter a rede Bitcoin funcionando!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Taxa de transação atual:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Saiba mais...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Para capturar um QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Para mostrar a janela \"Enviar\":";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Criar Atalhos";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "O Hive está bloqueado.\nDigite sua senha para desbloquear:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Desbloquear";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Não mostrar esta tela novamente";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Enviar";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Erro de conexão de rede";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Enviar";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/pt.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/pt.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/ro.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Scanner de cod QR";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Îndreptaţi camera către un cod QR Bitcoin.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ro.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Editare";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Informații contact";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Adrese Bitcoin";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/ro.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Trimite Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ro.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Taxele de tranzacţie ajută la menţinerea reţelei Bitcoin!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Taxa de tranzacţie curentă:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Aflaţi mai multe...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ro.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scanare cod QR:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Afişare fereastră \"Trimite\":";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Scurtături Globale";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ro.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive este blocat.\nIntroduceţi parola pentru a debloca:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Deblocare";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Nu mai arătaţi acest ecran.";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ro.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Trimite";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Eroare de conexiune la reţea";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ro.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Trimite";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ro.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/ro.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/ru.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Сканнер QR кодов";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Направьте камеру на QR код.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ru.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Редактировать";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Контактная информация";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Эл. почта:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Биткойн-адреса";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/ru.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Отправить биткойны";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ru.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Комиссии помогают работе сети Биткойн!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Текущая комиссия за транзакцию:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Узнать больше…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ru.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Сканировать QR-код:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Показать окно отправки:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Общие ссылки";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ru.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive заблокирован.\nВведите свой пароль:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Разблокировать";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Не показывать это снова";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ru.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Отправить";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Ошибка связи с сетью";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ru.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Отправить";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ru.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/ru.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/sr-Latn.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR code scanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Hold up a Bitcoin QR code to the camera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr-Latn.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Izmenite";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Informacije o kontaktu";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Email:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitkoin adrese";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr-Latn.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Pošaljite bitkoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr-Latn.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Provizije koje plaćate pomažu da bitkoin mreža funkcioniše!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Trenutna provizija na transakciju:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Saznajte više...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr-Latn.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scan QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Show “Send” window:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Global Shortcuts";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr-Latn.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive is locked.\nEnter your password to unlock:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Unlock";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Don't show this screen again";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr-Latn.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Pošaljite";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Network connection error";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr-Latn.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Pošaljite";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr-Latn.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/sr-Latn.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/sr-Latn.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "Novčanik je kao skup ključeva koji otključava vaš novac. Napravimo jedan sada.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Dobrodošli u Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Napravite nov novčanik";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR code scanner";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Hold up a Bitcoin QR code to the camera.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Измените";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Информације о контакту";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Е-маил:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Биткоин адресе";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Пошаљите биткоин";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Провизије које плаћате помажу да биткоин мрежа функционише!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Тренутна провизија на трансакцију:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Сазнајте више...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scan QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Show “Send” window:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Global Shortcuts";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive is locked.\nEnter your password to unlock:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Unlock";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Don't show this screen again";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Пошаљите";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Network connection error";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Пошаљите";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/sr.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/sr.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/sr.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "Новчаник је као скуп кључева који откључава ваш новац. Направимо један сада.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Добродошли у Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Направите нов новчаник";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sv.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR-kodläsare";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Håll upp en Bitcoin QR-kod framför kameran.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/sv.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Ändra";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Kontaktuppgifter";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "E-post:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin-adresser";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/sv.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Skicka Bitcoin";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/sv.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Avgiften du betalar är för att hålla Bitcoin-nätverket igång!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Nuvarande transaktionsavgift:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Lär dig mer…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sv.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Läs av QR-kod:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Visa \"Skicka\"-fönster:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Globala kortkommandon";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sv.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive är låst.\nFyll i ditt lösenord för att låsa upp:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Lås upp";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Visa inte detta fönster igen";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/sv.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Skicka";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Nätverksanslutningsfel";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/sv.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Skicka";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/sv.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/sv.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/sv.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "En plånbok är en samling av nycklar som låser upp dina pengar. Skapa en nu.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Välkommen till Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Skapa en ny plånbok";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/th.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "ตัวแสกนโค้ด QR ";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "ใช้กล้องจับภาพโค้ด QR ของบิทคอยน์";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/th.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "แก้ไข";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "ข้อมูลผู้ติดต่อ ";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "อีเมลล์";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "ที่อยู่ของบิทคอยน์ ";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/th.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "ส่งบิทคอยน์";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/th.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "ค่าธรรมเนียมที่คุณจ่ายมีส่วนช่วยให้เครือข่ายของบิทคอยน์ก้าวต่อไป ";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "ค่าธรรมเนียมการทำธุรกรรมปัจจุบัน";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "เรียนรู้เพิ่มเติม...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/th.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "แสดง QR โค้ด: ";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "แสดงหน้าต่าง \"ส่ง\": ";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "ทางลัด";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/th.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "ไฮฟ์ถูกล็อคอยู่\nใส่รหัสผ่านเพื่อปลอดล็อค";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "ปลดล็อค";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "อย่าแสดงหน้านี้อีก ";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/th.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "ส่ง";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "การเชื่อมต่ออินเทอร์เน็ตผิดพลาด";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/th.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "ส่ง";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/th.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/th.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/th.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "กระเป๋าเงินก็เหมือนกุญแจไขไปสู่เงิน มาเริ่มสร้างกระเป๋าเงินกันเถอะ ";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "ยินดีต้อนรับเข้าสู่ไฮฟ์ ";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "สร้างกระเป๋าเงินใหม่";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/tr.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR etiketi tarayıcısı";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Bir Bitcoin QR etiketini kameraya gösterin.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/tr.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Düzenle";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Bağlantı bilgisi:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Eposta:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin adresleri";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/tr.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Bitcoin Gönder";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/tr.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Ödediğiniz gönderim ücretleri Bitcoin ağının çalışmasına yardımcı olur!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Şimdiki gönderim ücreti:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Daha fazla öğren...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/tr.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scan QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Show “Send” window:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Global Shortcuts";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/tr.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive kilitli.\nKilidi açmak için şifrenizi girin:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Kilidi Aç";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Bu ekranı tekrar gösterme";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/tr.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Gönder";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "İnternet bağlantı hatası";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/tr.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Gönder";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/tr.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/tr.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/uk.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "Сканер QR коду";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "Підведіть QR код Біткойну до камери.";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/uk.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "Редагування";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "Контактна інформація";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "Електронна скринька:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Біткойн адреса";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/uk.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Відправити Біткойн";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/uk.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "Комісію яку ви платите допомагає Біткойн мережі функціонувати!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Поточна комісія за транзакцію:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Дізнайтесь більше...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/uk.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Сканувати QR код...";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Показувати вікно \"відправлення\":";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Загальні Ярлики";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/uk.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Хайв заблокований.\nВведіть ваш пароль щоб розблокувати:\n";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Розблокувати";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Не показувати цей екран знову";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/uk.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "Відправити";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Помилка в з'єднанні мережі";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/uk.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Відправити";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/uk.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/uk.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/ur.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "QR کوڈ سکینر";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "ایک Bitcoin QR کوڈ کیمرے سامنے کے پکڑو";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ur.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "ترمیم کریں";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "رابطہ کی معلومات";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "ای میل";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "Bitcoin ایڈریسز";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/ur.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "Bitcoin بھیجیں";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ur.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "The fees you pay help keep the Bitcoin network running!";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "Current transaction fee:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "Learn more…";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ur.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "Scan QR code:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "Show “Send” window:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "Global Shortcuts";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ur.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive is locked.\nEnter your password to unlock:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "Unlock";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "Don't show this screen again";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/ur.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "بھیجیں";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "Network connection error";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/ur.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "Send";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/ur.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/ur.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/ur.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "A wallet is like a set of keys that unlock your money. Let's create one now.";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "Welcome to Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "Create a new wallet";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HICameraWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSWindow"; title = "QR code scanner"; ObjectID = "1"; */
3 | "1.title" = "二维码扫描";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Hold up a Bitcoin QR code to the camera."; ObjectID = "r6F-kg-ECk"; */
6 | "r6F-kg-ECk.title" = "请将比特币二维码放入框内即可扫描!";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HIContactInfoViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Edit"; ObjectID = "50"; */
3 | "50.title" = "更改";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Contact information"; ObjectID = "62"; */
6 | "62.title" = "联络资讯";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Email:"; ObjectID = "65"; */
9 | "65.title" = "电子邮件:";
10 |
11 | /* Class = "NSTextFieldCell"; title = "Bitcoin addresses"; ObjectID = "68"; */
12 | "68.title" = "比特币地址";
13 |
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HIContactViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send Bitcoin"; ObjectID = "24"; */
3 | "24.title" = "发送比特币";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HIContactsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Looks like you don't have any contacts yet! Add your first one and start sending money!"; ObjectID = "123"; */
3 | "123.title" = "您现在没有联系人!要汇款的话,先添加一些吧!";
4 |
5 | /* Class = "NSButtonCell"; title = "Add contact"; ObjectID = "125"; */
6 | "125.title" = "加新联系人";
7 |
8 | /* Class = "NSTextFieldCell"; title = "You can then use the ✚ button on top to add more contacts."; ObjectID = "129"; */
9 | "129.title" = "你可以用上面的 ✚按钮 来加新的联系人。";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HIFeeDetailsViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "The fees you pay help keep the Bitcoin network running!"; ObjectID = "JVe-5I-zWC"; */
3 | "JVe-5I-zWC.title" = "您所支付的手续费用以维持比特网络的正常运行。";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Current transaction fee:"; ObjectID = "exO-xB-xYk"; */
6 | "exO-xB-xYk.title" = "手续费:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Learn more…"; ObjectID = "kHH-z3-bVk"; */
9 | "kHH-z3-bVk.title" = "了解更多...";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HIKeyPreferencesViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Scan QR code:"; ObjectID = "psj-Lk-deP"; */
3 | "psj-Lk-deP.title" = "扫描二维码:";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Show “Send” window:"; ObjectID = "sbC-cS-hdN"; */
6 | "sbC-cS-hdN.title" = "显示“发送”窗口:";
7 |
8 | /* Class = "NSTextFieldCell"; title = "Global Shortcuts"; ObjectID = "uBD-1D-rbI"; */
9 | "uBD-1D-rbI.title" = "全局热键";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HILockScreenViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "Hive is locked.\nEnter your password to unlock:"; ObjectID = "Gmn-jq-R5t"; */
3 | "Gmn-jq-R5t.title" = "Hive 已被锁定。\n输入您的密码解锁:";
4 |
5 | /* Class = "NSButtonCell"; title = "Unlock"; ObjectID = "W4R-hH-myj"; */
6 | "W4R-hH-myj.title" = "解锁";
7 |
8 | /* Class = "NSButtonCell"; title = "Don't show this screen again"; ObjectID = "fZF-LI-0oD"; */
9 | "fZF-LI-0oD.title" = "不再显示此界面";
10 |
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HIMainWindowController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "45"; */
3 | "45.title" = "发送";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Network connection error"; ObjectID = "2MH-gv-3gz"; */
6 | "2MH-gv-3gz.title" = "网络连接错误";
7 |
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HIPasswordInputViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSButtonCell"; title = "Send"; ObjectID = "iGo-yV-7mF"; */
3 | "iGo-yV-7mF.title" = "发送";
4 |
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HIProfileViewController.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Controllers/zh-Hans.lproj/HIProfileViewController.strings
--------------------------------------------------------------------------------
/Hive/Controllers/zh-Hans.lproj/HIWizardWelcomeViewController.strings:
--------------------------------------------------------------------------------
1 |
2 | /* Class = "NSTextFieldCell"; title = "A wallet is like a set of keys that unlock your money. Let's create one now."; ObjectID = "AHC-MY-HDw"; */
3 | "AHC-MY-HDw.title" = "比特币钱包用于管理您的比特币地址。比特币地址是取用您的比特币的渠道。现在创建一个比特币钱包。";
4 |
5 | /* Class = "NSTextFieldCell"; title = "Welcome to Hive"; ObjectID = "I10-iV-C0e"; */
6 | "I10-iV-C0e.title" = "欢迎来到 Hive";
7 |
8 | /* Class = "NSButtonCell"; title = "Create a new wallet"; ObjectID = "j0E-b4-dgh"; */
9 | "j0E-b4-dgh.title" = "创建钱包";
10 |
--------------------------------------------------------------------------------
/Hive/Database/Hive.xcdatamodeld/.xccurrentversion:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | _XCCurrentVersionName
6 | 2015020801.xcdatamodel
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Hive/Formatters/HILogFormatter.h:
--------------------------------------------------------------------------------
1 | //
2 | // HILogFormatter.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 18.12.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | /*
12 | Implementation of a CocoaLumberjack log formatter used for formatting log entries for the file in ~/Library/Logs
13 | and the Xcode debugging window.
14 | */
15 |
16 | @interface HILogFormatter : NSObject
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/Hive/Images/avatar-empty.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/avatar-empty.pdf
--------------------------------------------------------------------------------
/Hive/Images/bg-sidebar.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/bg-sidebar.pdf
--------------------------------------------------------------------------------
/Hive/Images/button__inset.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/button__inset.pdf
--------------------------------------------------------------------------------
/Hive/Images/dropbox-glyph-blue.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/dropbox-glyph-blue.pdf
--------------------------------------------------------------------------------
/Hive/Images/google-drive-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/google-drive-128.png
--------------------------------------------------------------------------------
/Hive/Images/hive-mac-demo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/hive-mac-demo.png
--------------------------------------------------------------------------------
/Hive/Images/honey_im_subtle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/honey_im_subtle.png
--------------------------------------------------------------------------------
/Hive/Images/honey_im_subtle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/honey_im_subtle@2x.png
--------------------------------------------------------------------------------
/Hive/Images/icon-bitcoin.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-bitcoin.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-delete.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-delete.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-dropdown-close.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-dropdown-close.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-dropdown-open.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-dropdown-open.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-gray-btc.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-gray-btc.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-group__active.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-group__active.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-group__inactive.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-group__inactive.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-lock.png
--------------------------------------------------------------------------------
/Hive/Images/icon-lock@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-lock@2x.png
--------------------------------------------------------------------------------
/Hive/Images/icon-nav-bar-back.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-nav-bar-back.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-next.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-next.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-next__active.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-next__active.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-plus.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-plus.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-qr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-qr.png
--------------------------------------------------------------------------------
/Hive/Images/icon-sadface.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-sadface.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-search.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-search.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-success.png
--------------------------------------------------------------------------------
/Hive/Images/icon-success@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-success@2x.png
--------------------------------------------------------------------------------
/Hive/Images/icon-tabbar-timeline__active.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-tabbar-timeline__active.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-tabbar-timeline__inactive.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-tabbar-timeline__inactive.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-tabbar-user__active.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-tabbar-user__active.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-tabbar-user__inactive.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-tabbar-user__inactive.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-timeline__active.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-timeline__active.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-timeline__inactive.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-timeline__inactive.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-transactions-arrow-left.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-transactions-arrow-left.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-transactions-arrow-right.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-transactions-arrow-right.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-transactions-btc-symbol.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-transactions-btc-symbol.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-transactions-minus.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-transactions-minus.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-transactions-plus.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-transactions-plus.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-your-profile__active.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-your-profile__active.pdf
--------------------------------------------------------------------------------
/Hive/Images/icon-your-profile__inactive.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/icon-your-profile__inactive.pdf
--------------------------------------------------------------------------------
/Hive/Images/wizard-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/Images/wizard-background.png
--------------------------------------------------------------------------------
/Hive/Views/HIAddressesBox.h:
--------------------------------------------------------------------------------
1 | /*
2 | An HIBox, containing HICopyViews for multiple bitcoin addresses.
3 | */
4 | @interface HIAddressesBox : NSView
5 |
6 | @property (nonatomic, copy) NSArray *addresses;
7 | @property (nonatomic, assign) BOOL observingWallet;
8 | @property (nonatomic, assign) BOOL showsQRCode;
9 |
10 | @end
11 |
--------------------------------------------------------------------------------
/Hive/Views/HIAvatarEditBar.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIAvatarEditBar.h
3 | // Hive
4 | //
5 | // Created by Kuba Suder on 29.03.2015.
6 | // Copyright (c) 2015 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface HIAvatarEditBar : NSTextField
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Views/HIAvatarEditBar.m:
--------------------------------------------------------------------------------
1 | //
2 | // HIAvatarEditBar.m
3 | // Hive
4 | //
5 | // Created by Kuba Suder on 29.03.2015.
6 | // Copyright (c) 2015 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIAvatarEditBar.h"
10 |
11 | @implementation HIAvatarEditBar
12 |
13 | - (NSView *)hitTest:(NSPoint)aPoint {
14 | return nil;
15 | }
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/Hive/Views/HIBackupActionsCellView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIBackupActionsCellView.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 23.12.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface HIBackupActionsCellView : NSTableCellView
10 |
11 | @property (nonatomic, weak, readonly) NSButton *enableButton;
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Views/HIBackupActionsCellView.m:
--------------------------------------------------------------------------------
1 | //
2 | // HIBackupActionsCellView.m
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 23.12.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIBackupActionsCellView.h"
10 |
11 | @interface HIBackupActionsCellView()
12 |
13 | @property (nonatomic, weak) IBOutlet NSButton *enableButton;
14 |
15 | @end
16 |
17 | @implementation HIBackupActionsCellView
18 | @end
19 |
--------------------------------------------------------------------------------
/Hive/Views/HIBackupStatusCellView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIBackupStatusCellView.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 30.12.13.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface HIBackupStatusCellView : NSTableCellView
10 |
11 | @property (nonatomic, weak, readonly) NSTextField *statusDetailsLabel;
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Hive/Views/HIBackupStatusCellView.m:
--------------------------------------------------------------------------------
1 | //
2 | // HIBackupStatusCellView.m
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 30.12.13.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIBackupStatusCellView.h"
10 |
11 | @interface HIBackupStatusCellView()
12 |
13 | @property (nonatomic, weak) IBOutlet NSTextField *statusDetailsLabel;
14 |
15 | @end
16 |
17 | @implementation HIBackupStatusCellView
18 | @end
19 |
--------------------------------------------------------------------------------
/Hive/Views/HIBox.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIBox.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 05.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | An NSBox with a custom rounded border and white background. Used in contact details views.
11 | */
12 |
13 | @interface HIBox : NSView
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Views/HIBreadcrumbsView.h:
--------------------------------------------------------------------------------
1 | #import "HIClearView.h"
2 |
3 | @interface HIBreadcrumbsView : HIClearView
4 |
5 | @property (nonatomic, copy) NSArray *titles;
6 | @property (nonatomic, assign) NSInteger activeIndex;
7 |
8 | @end
9 |
--------------------------------------------------------------------------------
/Hive/Views/HIButtonCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIButtonCell.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 05.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | A button cell for a light gray rounded button - used in contact details views. Also a base for NSDoneButtonCell
11 | and NSDeleteButtonCell.
12 | */
13 |
14 | @interface HIButtonCell : NSButtonCell
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Views/HIButtonWithSpinner.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIButtonWithSpinner.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 06.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | An NSButton that can show a spinning indicator inside it and disable itself while an action is in progress.
11 | Used in the "Send" dialog.
12 | */
13 |
14 | @interface HIButtonWithSpinner : NSButton
15 |
16 | - (void)showSpinner;
17 | - (void)hideSpinner;
18 | - (NSRect)titleFrame;
19 |
20 | @end
21 |
--------------------------------------------------------------------------------
/Hive/Views/HIClearView.h:
--------------------------------------------------------------------------------
1 | /*
2 | Completely transparent view.
3 | */
4 | @interface HIClearView : NSView
5 | @end
6 |
--------------------------------------------------------------------------------
/Hive/Views/HIClearView.m:
--------------------------------------------------------------------------------
1 | #import "HIClearView.h"
2 |
3 | @implementation HIClearView
4 |
5 | - (void)drawRect:(NSRect)rect {
6 | // skip drawing the background
7 | }
8 |
9 | @end
10 |
--------------------------------------------------------------------------------
/Hive/Views/HIContactAutocompleteCellView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIContactAutocompleteCellView.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 20.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | Table cell view used in the autocomplete results table in Send window.
11 | */
12 |
13 | @interface HIContactAutocompleteCellView : NSTableCellView
14 |
15 | @property (nonatomic, weak, readonly) NSTextField *addressLabel;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/Hive/Views/HIContactRowView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIContactRowView.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 02.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | Row view for the contacts table. Draws a gray gradient background and a separator between the rows.
11 | */
12 |
13 | @interface HIContactRowView : NSTableRowView
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Views/HICopyView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HICopyView.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 23.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | A transparent overlay view, intended to be added on top of other views, which copies the value from contentToCopy
11 | property to the clipboard when it's clicked. Used for copying user's and contacts' bitcoin addresses.
12 | */
13 |
14 | @interface HICopyView : NSView
15 |
16 | @property (nonatomic, copy) NSString *contentToCopy;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/Hive/Views/HIDeleteButtonCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIDeleteButtonCell.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 17.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | A button cell for a red rounded button - used in contact edit view for the delete contact button.
11 | */
12 |
13 | @interface HIDeleteButtonCell : NSButtonCell
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Views/HIDoneButtonCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIButtonCell.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 05.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIGradientButtonCell.h"
10 |
11 | /*
12 | A button cell for a blue rounded button that executes or confirms an action (used in various places).
13 | */
14 |
15 | @interface HIDoneButtonCell : HIGradientButtonCell
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Views/HIDraggableButton.h:
--------------------------------------------------------------------------------
1 | /*
2 | Button that doesn't prevent dragging (e.g. in the title).
3 | */
4 | @interface HIDraggableButton : NSButton
5 |
6 | @property (nonatomic, assign) BOOL draggable;
7 |
8 | @end
9 |
--------------------------------------------------------------------------------
/Hive/Views/HIDraggableButton.m:
--------------------------------------------------------------------------------
1 | #import "HIDraggableButton.h"
2 |
3 | @implementation HIDraggableButton
4 |
5 | - (void)mouseDown:(NSEvent *)theEvent {
6 | if (self.draggable) {
7 | [self.nextResponder mouseDown:theEvent];
8 | } else {
9 | [super mouseDown:theEvent];
10 | }
11 | }
12 |
13 | - (void)mouseUp:(NSEvent *)theEvent {
14 | if (self.draggable) {
15 | [self.nextResponder mouseUp:theEvent];
16 | } else {
17 | [super mouseUp:theEvent];
18 | }
19 | }
20 |
21 |
22 | @end
23 |
--------------------------------------------------------------------------------
/Hive/Views/HIEditableImageView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIEditableImageView.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 09.10.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | An editable NSImageView that opens a file selection dialog when clicked and then loads the image from the selected
11 | file. Used in contact edit view for choosing the avatar.
12 | */
13 |
14 | @interface HIEditableImageView : NSImageView
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Views/HIEmptyTransactionsView.h:
--------------------------------------------------------------------------------
1 | @interface HIEmptyTransactionsView : NSView
2 |
3 | @end
4 |
--------------------------------------------------------------------------------
/Hive/Views/HIEmptyTransactionsView.m:
--------------------------------------------------------------------------------
1 | #import "HIEmptyTransactionsView.h"
2 |
3 | #import "HIAddressesBox.h"
4 | #import "HIProfile.h"
5 |
6 | @interface HIEmptyTransactionsView ()
7 |
8 | @property (nonatomic, weak) IBOutlet HIAddressesBox *addressesBox;
9 |
10 | @end
11 |
12 |
13 | @implementation HIEmptyTransactionsView
14 |
15 | - (void)awakeFromNib {
16 | self.addressesBox.addresses = [HIProfile new].addresses.allObjects;
17 | self.addressesBox.observingWallet = YES;
18 | self.addressesBox.showsQRCode = YES;
19 | }
20 |
21 | @end
22 |
--------------------------------------------------------------------------------
/Hive/Views/HIErrorBar.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIErrorBar.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 22/02/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | @interface HIErrorBar : NSView
10 |
11 | @end
12 |
--------------------------------------------------------------------------------
/Hive/Views/HIFlippedView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIFlippedView.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 17.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | A view with flipped coordinates (i.e. like in every other UI environment on the planet). Right now used only
11 | in the new contact view.
12 | */
13 |
14 | @interface HIFlippedView : NSView
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Views/HIFlippedView.m:
--------------------------------------------------------------------------------
1 | //
2 | // HIFlippedView.m
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 17.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HIFlippedView.h"
10 |
11 | @implementation HIFlippedView
12 |
13 | - (BOOL)isFlipped {
14 | return YES;
15 | }
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/Hive/Views/HIGradientButtonCell.h:
--------------------------------------------------------------------------------
1 | /*
2 | A (base) button cell for a blue gradient button.
3 | */
4 |
5 | @interface HIGradientButtonCell : NSButtonCell
6 |
7 | @property (nonatomic, assign) double cornerRadius;
8 | @property (nonatomic, assign) BOOL hasShadow;
9 |
10 | @end
11 |
--------------------------------------------------------------------------------
/Hive/Views/HIImageCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIImageCell.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 20.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | An image cell that displays the image clipped to a circle. Used for application icons on the applications list.
11 | */
12 |
13 | @interface HIImageCell : NSImageCell
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Views/HIKeyObservingWindow.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIKeyObservingWindow.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 29/01/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | @protocol HIKeyObservingWindowDelegate
10 |
11 | - (void)keyFlagsChanged:(NSUInteger)flags inWindow:(NSWindow *)window;
12 |
13 | @end
14 |
15 |
16 | /*
17 | A window that notifies its delegate when key flags are changed.
18 | */
19 |
20 | @interface HIKeyObservingWindow : NSWindow
21 |
22 | @end
23 |
--------------------------------------------------------------------------------
/Hive/Views/HILabelPopUpButton.h:
--------------------------------------------------------------------------------
1 | /*
2 | Pop up button with gray text to work as a label.
3 | */
4 | @interface HILabelPopUpButton : NSPopUpButton
5 | @end
6 |
--------------------------------------------------------------------------------
/Hive/Views/HILockScreenView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HILockScreenView.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 24/02/14.
6 | // Copyright (c) 2014 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | The overlay view that covers the main window when the wallet is locked on startup.
11 | */
12 |
13 | @interface HILockScreenView : NSView
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Views/HIPaddedSecureTextFieldCell.h:
--------------------------------------------------------------------------------
1 | /*
2 | A larger text field with padding above and below the input.
3 | */
4 | @interface HIPaddedSecureTextFieldCell : NSSecureTextFieldCell
5 | @end
6 |
--------------------------------------------------------------------------------
/Hive/Views/HIProfileTabView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIProfileTabView.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 05.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | A view for the profile tab bar that switches between contact's info and transaction tabs. Only used to draw
11 | a gradiented background.
12 | */
13 |
14 | @interface HIProfileTabView : NSView
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Views/HIRightPointingArrowView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HIRightPointingArrowView.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 12.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | A "right arrow" separator used in the breadcrumbs view in the window's title bar.
11 | */
12 |
13 | @interface HIRightPointingArrowView : NSView
14 |
15 | @property (nonatomic, copy) NSColor *strokeColor;
16 | @property (nonatomic, assign) double strokeWidth;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/Hive/Views/HISeparatorView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HISeparatorView.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 02.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | A view with a light gray background, used for some separator lines.
11 | */
12 |
13 | @interface HISeparatorView : NSView
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Views/HISeparatorView.m:
--------------------------------------------------------------------------------
1 | //
2 | // HISeparatorView.m
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 02.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HISeparatorView.h"
10 | #import "NSColor+Hive.h"
11 |
12 | @implementation HISeparatorView
13 |
14 | - (void)awakeFromNib {
15 | self.wantsLayer = YES;
16 | self.layer.backgroundColor = [RGB(211,211,211) hiNativeColor];
17 | }
18 |
19 |
20 | @end
21 |
--------------------------------------------------------------------------------
/Hive/Views/HISidebarButton.h:
--------------------------------------------------------------------------------
1 | //
2 | // HISidebarButton.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 30.08.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | An NSButton subclass used for the buttons in the left window sidebar. When it's selected, it draws an "inset"
11 | background gradient.
12 | */
13 |
14 | @interface HISidebarButton : NSButton
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/Hive/Views/HISidebarView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HISidebarView.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 29.08.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | A view that covers the entire window sidebar. Draws a dark gray background with a subtle pattern.
11 | */
12 |
13 | @interface HISidebarView : NSView
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Views/HITextFieldCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // HITextFieldCell.h
3 | // Hive
4 | //
5 | // Created by Bazyli Zygan on 15.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | A cell used by HITextField.
11 | */
12 |
13 | @interface HITextFieldCell : NSTextFieldCell
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Hive/Views/HITransactionCellView.h:
--------------------------------------------------------------------------------
1 | //
2 | // HITransactionCellView.h
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 06.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | /*
10 | Table cell view used on the transactions list, shows details of a specific transaction.
11 | */
12 |
13 | @interface HITransactionCellView : NSTableCellView
14 |
15 | @property (nonatomic, weak, readonly) NSTextField *dateLabel;
16 | @property (nonatomic, weak, readonly) NSImageView *directionMark;
17 | @property (nonatomic, weak, readonly) NSTextField *pendingLabel;
18 |
19 | @end
20 |
--------------------------------------------------------------------------------
/Hive/Views/HITransactionCellView.m:
--------------------------------------------------------------------------------
1 | //
2 | // HITransactionCellView.m
3 | // Hive
4 | //
5 | // Created by Jakub Suder on 06.09.2013.
6 | // Copyright (c) 2013 Hive Developers. All rights reserved.
7 | //
8 |
9 | #import "HITransactionCellView.h"
10 |
11 | @interface HITransactionCellView ()
12 |
13 | @property (nonatomic, weak) IBOutlet NSTextField *dateLabel;
14 | @property (nonatomic, weak) IBOutlet NSImageView *directionMark;
15 | @property (nonatomic, weak) IBOutlet NSTextField *pendingLabel;
16 |
17 | @end
18 |
19 |
20 | @implementation HITransactionCellView
21 |
22 | @end
23 |
--------------------------------------------------------------------------------
/Hive/Views/HIWizardButtonCell.h:
--------------------------------------------------------------------------------
1 | #import "HIDoneButtonCell.h"
2 |
3 | /*
4 | Button style used for big wizard buttons.
5 | */
6 | @interface HIWizardButtonCell : HIGradientButtonCell
7 | @end
8 |
--------------------------------------------------------------------------------
/Hive/Views/HIWizardButtonCell.m:
--------------------------------------------------------------------------------
1 | #import "HIWizardButtonCell.h"
2 |
3 | static const float PADDING_X = 20.0;
4 | static const float PADDING_Y = 20.0;
5 |
6 | @implementation HIWizardButtonCell
7 |
8 | - (void)awakeFromNib {
9 | [super awakeFromNib];
10 | self.cornerRadius = 1.0;
11 | self.font = [NSFont fontWithName:@"Helvetica" size:16];
12 | }
13 |
14 | - (NSSize)cellSize {
15 | CGSize size = [super cellSize];
16 | size.width += 2 * PADDING_X;
17 | size.height += 2 * PADDING_Y;
18 | return size;
19 | }
20 |
21 | @end
22 |
--------------------------------------------------------------------------------
/Hive/Views/HIWizardSmallButtonCell.h:
--------------------------------------------------------------------------------
1 | #import "HIDoneButtonCell.h"
2 |
3 | /*
4 | Button style for small buttons in wizard.
5 | */
6 | @interface HIWizardSmallButtonCell : HIGradientButtonCell
7 | @end
8 |
--------------------------------------------------------------------------------
/Hive/Views/HIWizardSmallButtonCell.m:
--------------------------------------------------------------------------------
1 | #import "HIWizardSmallButtonCell.h"
2 |
3 | static const float PADDING_X = 5;
4 | static const float PADDING_Y = 5;
5 |
6 | @implementation HIWizardSmallButtonCell
7 |
8 | - (void)awakeFromNib {
9 | [super awakeFromNib];
10 | self.cornerRadius = 1.0;
11 | self.font = [NSFont fontWithName:@"Helvetica" size:13];
12 | }
13 |
14 | - (NSSize)cellSize {
15 | CGSize size = [super cellSize];
16 | size.width += 2 * PADDING_X;
17 | size.height += 2 * PADDING_Y;
18 | return size;
19 | }
20 |
21 | @end
22 |
--------------------------------------------------------------------------------
/Hive/bitcoinkit.checkpoints:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Hive/bitcoinkit.checkpoints
--------------------------------------------------------------------------------
/Hive/get_gdrive_folder.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # get_gdrive_folder.sh
4 | # Hive
5 | #
6 | # Created by Jakub Suder on 22/07/14.
7 | # Copyright (c) 2014 Hive Developers. All rights reserved.
8 |
9 | CONFIG_FILE="$HOME/Library/Application Support/Google/Drive/sync_config.db"
10 | COMMAND="SELECT data_value FROM data WHERE entry_key = 'local_sync_root_path';"
11 |
12 | if [ -f "$CONFIG_FILE" ]; then
13 | sqlite3 -noheader "$CONFIG_FILE" "$COMMAND"
14 | else
15 | echo "File $CONFIG_FILE doesn't exist." >&2
16 | exit 1
17 | fi
18 |
--------------------------------------------------------------------------------
/HiveTests/HiveTests-Prefix.pch:
--------------------------------------------------------------------------------
1 | //
2 | // Prefix header
3 | //
4 | // The contents of this file are implicitly included at the beginning of every source file.
5 | //
6 |
7 | #import "Hive-Prefix.pch"
8 |
9 | #ifdef __OBJC__
10 | #import
11 | #import
12 |
13 | #import
14 | #define HC_SHORTHAND 1
15 | #import
16 | #endif
17 |
--------------------------------------------------------------------------------
/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/HockeySDK:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/HockeySDK
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/A/Resources/BITCrashReportUI.nib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/Resources/BITCrashReportUI.nib
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/A/Resources/BITFeedbackWindowController.nib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/Resources/BITFeedbackWindowController.nib
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/A/Resources/de.lproj/HockeySDK.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/Resources/de.lproj/HockeySDK.strings
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/A/Resources/en.lproj/HockeySDK.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/Resources/en.lproj/HockeySDK.strings
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/A/Resources/fi.lproj/HockeySDK.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/Resources/fi.lproj/HockeySDK.strings
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/A/Resources/fr.lproj/HockeySDK.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/Resources/fr.lproj/HockeySDK.strings
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/A/Resources/it.lproj/HockeySDK.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/Resources/it.lproj/HockeySDK.strings
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/A/Resources/ja.lproj/HockeySDK.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/Resources/ja.lproj/HockeySDK.strings
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/A/Resources/nb.lproj/HockeySDK.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/Resources/nb.lproj/HockeySDK.strings
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/A/Resources/sv.lproj/HockeySDK.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/HockeySDK.framework/Versions/A/Resources/sv.lproj/HockeySDK.strings
--------------------------------------------------------------------------------
/HockeySDK.framework/Versions/Current:
--------------------------------------------------------------------------------
1 | A
--------------------------------------------------------------------------------
/Icon.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hivewallet/hive-mac/965611b6c3990bf8d626736fa4d1a44e241d8993/Icon.icns
--------------------------------------------------------------------------------
/Podfile:
--------------------------------------------------------------------------------
1 | platform :osx, '10.7'
2 |
3 | pod 'AFNetworking', '~> 1.3.2'
4 | pod 'AutoLayoutMacros'
5 | pod 'CocoaLumberjack'
6 | pod 'FontAwesomeIconFactory'
7 | pod 'INAppStoreWindow'
8 | pod 'LetsMove'
9 | pod 'ZXingObjC', '~> 2.2.8' # 3.x requires 10.8+
10 | pod 'Sparkle'
11 | pod 'MASPreferences'
12 | pod 'MASShortcut'
13 | pod 'NSURL+Gravatar'
14 |
15 | #target :test, :exclusive => true do
16 | # link_with 'HiveTests'
17 | # pod 'Kiwi'
18 | # pod 'OCHamcrest', '4.0' # 4.0.1 requires 10.8+
19 | #end
20 |
--------------------------------------------------------------------------------
/pull_strings.rb:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 |
3 | def process_file(file)
4 | File.write(file, %x(iconv -f UTF-16 -t UTF-8 #{file}))
5 | end
6 |
7 | IO.popen("tx pull #{ARGV.join(' ')}") do |io|
8 | last_file = nil
9 |
10 | io.each_line do |line|
11 | print line
12 | if line =~ /->/
13 | process_file(last_file) if last_file
14 | last_file = line.split(' ').last
15 | end
16 | end
17 |
18 | process_file(last_file) if last_file
19 | end
20 |
--------------------------------------------------------------------------------
/push_strings.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | if [ $(echo "$@" | grep "\-\-help") ]; then
4 | tx push "$@"
5 | else
6 | ./update_strings.rb -d
7 | tx push "$@"
8 | ./update_strings.rb
9 | fi
10 |
--------------------------------------------------------------------------------
/sort_imports.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4 |
5 | for file in $(find "$script_dir/Hive" -name "*.[mh]"); do
6 | "$script_dir/sort_imports.py" "$file"
7 | done
8 |
--------------------------------------------------------------------------------