├── .gitignore ├── .gitmodules ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Sticker Packs ├── Olo Stickers │ ├── Olo Stickers.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Stickers -> Olo.xcscheme │ ├── Olo Stickers │ │ └── Info.plist │ └── StickerPackExtension │ │ ├── Info.plist │ │ └── Stickers.xcstickers │ │ ├── Contents.json │ │ ├── Sticker Pack.stickerpack │ │ ├── 11flowers.sticker │ │ │ ├── 11flowers.png │ │ │ └── Contents.json │ │ ├── 15biscuit.sticker │ │ │ ├── 15biscuit.png │ │ │ └── Contents.json │ │ ├── 4greeting.sticker │ │ │ ├── 4greeting.png │ │ │ └── Contents.json │ │ ├── 5hearts.sticker │ │ │ ├── 5hearts.png │ │ │ └── Contents.json │ │ ├── 6yay.sticker │ │ │ ├── 6yay.png │ │ │ └── Contents.json │ │ └── Contents.json │ │ └── iMessage App Icon.stickersiconset │ │ ├── Contents.json │ │ ├── icon_1024x768.png │ │ ├── icon_27x20@2x.png │ │ ├── icon_27x20@3x.png │ │ ├── icon_29x29@2x-1.png │ │ ├── icon_29x29@2x.png │ │ ├── icon_29x29@3x.png │ │ ├── icon_32x24@2x.png │ │ ├── icon_32x24@3x.png │ │ ├── icon_60x45@2x.png │ │ ├── icon_60x45@3x.png │ │ ├── icon_67x50@2x.png │ │ └── icon_74x55@2x.png └── Pema Stickers │ ├── Pema Stickers.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Stickers -> Pema.xcscheme │ ├── Pema Stickers │ └── Info.plist │ └── StickerPackExtension │ ├── Info.plist │ └── Stickers.xcstickers │ ├── Contents.json │ ├── Sticker Pack.stickerpack │ ├── Contents.json │ ├── pema01.sticker │ │ ├── Contents.json │ │ └── pema01.png │ ├── pema02.sticker │ │ ├── Contents.json │ │ └── pema02.png │ ├── pema08.sticker │ │ ├── Contents.json │ │ └── pema08.png │ ├── pema09.sticker │ │ ├── Contents.json │ │ └── pema09.png │ └── pema10.sticker │ │ ├── Contents.json │ │ └── pema10.png │ └── iMessage App Icon.stickersiconset │ ├── Contents.json │ ├── icon_1024x768.png │ ├── icon_27x20@2x.png │ ├── icon_27x20@3x.png │ ├── icon_29x29@2x-1.png │ ├── icon_29x29@2x.png │ ├── icon_29x29@3x.png │ ├── icon_32x24@2x.png │ ├── icon_32x24@3x.png │ ├── icon_60x45@2x.png │ ├── icon_60x45@3x.png │ ├── icon_67x50@2x.png │ └── icon_74x55@2x.png └── Zom ├── Cartfile ├── Cartfile.resolved ├── OTRResources ├── Branding.plist ├── Images │ ├── OTRCountryImages.xcassets │ │ ├── CA.imageset │ │ │ ├── CA.png │ │ │ └── Contents.json │ │ ├── NL.imageset │ │ │ ├── Contents.json │ │ │ └── NL.png │ │ └── US.imageset │ │ │ ├── Contents.json │ │ │ └── US.png │ ├── OTRImages.xcassets │ │ ├── 08-chat.imageset │ │ │ ├── 08-chat.png │ │ │ ├── 08-chat@2x.png │ │ │ └── Contents.json │ │ ├── 112-group.imageset │ │ │ ├── 112-group.png │ │ │ ├── 112-group@2x.png │ │ │ └── Contents.json │ │ ├── 14-gear.imageset │ │ │ ├── 14-gear.png │ │ │ ├── 14-gear@2x.png │ │ │ └── Contents.json │ │ ├── 18-envelope.imageset │ │ │ ├── 18-envelope.png │ │ │ ├── 18-envelope@2x.png │ │ │ └── Contents.json │ │ ├── 275-broadcast.imageset │ │ │ ├── 275-broadcast.png │ │ │ ├── 275-broadcast@2x.png │ │ │ └── Contents.json │ │ ├── 29-heart.imageset │ │ │ ├── 29-heart.png │ │ │ ├── 29-heart@2x.png │ │ │ └── Contents.json │ │ ├── 31-circle-plus-large.imageset │ │ │ ├── 31-circle-plus-large.png │ │ │ ├── 31-circle-plus-large@2x.png │ │ │ └── Contents.json │ │ ├── 31-circle-plus.imageset │ │ │ ├── 31-circle-plus.png │ │ │ ├── 31-circle-plus@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Lock_Locked.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_info_outline_white.png │ │ │ ├── ic_info_outline_white_2x.png │ │ │ └── ic_info_outline_white_3x.png │ │ ├── Lock_Locked_Verified.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_info_outline_white.png │ │ │ ├── ic_info_outline_white_2x.png │ │ │ └── ic_info_outline_white_3x.png │ │ ├── Lock_Locked_red.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_info_outline_white.png │ │ │ ├── ic_info_outline_white_2x.png │ │ │ └── ic_info_outline_white_3x.png │ │ ├── Lock_Locked_yellow.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_info_outline_white.png │ │ │ ├── ic_info_outline_white_2x.png │ │ │ └── ic_info_outline_white_3x.png │ │ ├── Lock_Unlocked.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_info_outline_white.png │ │ │ ├── ic_info_outline_white_2x.png │ │ │ └── ic_info_outline_white_3x.png │ │ ├── OTRInfoIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── info-25.png │ │ │ └── info-50.png │ │ ├── OTRLockIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── lock-25.png │ │ │ └── lock-50.png │ │ ├── OTRSettingsIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── settings-25.png │ │ │ └── settings-50.png │ │ ├── OTRShareIcon.imageset │ │ │ ├── Contents.json │ │ │ └── Upload-50.png │ │ ├── OTRUnlockIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── unlock-25.png │ │ │ └── unlock-50.png │ │ ├── PushOnboarding.imageset │ │ │ ├── Contents.json │ │ │ └── noun_283876_cc@2x.png │ │ ├── Safari.imageset │ │ │ ├── Contents.json │ │ │ └── Safari-64.png │ │ ├── Tor_Onion.imageset │ │ │ ├── Contents.json │ │ │ └── Tor_Onion@2x.png │ │ ├── Twitter.imageset │ │ │ ├── Contents.json │ │ │ └── Twitter-64.png │ │ ├── XMPPCreateAccount.imageset │ │ │ ├── 04 Olo Greeting.png │ │ │ └── Contents.json │ │ ├── button-green.imageset │ │ │ ├── Contents.json │ │ │ ├── button-green.png │ │ │ └── button-green@2x.png │ │ ├── chatsecure_banner.imageset │ │ │ ├── Contents.json │ │ │ └── zom_logo@2x.png │ │ ├── chatsecure_logo_transparent.imageset │ │ │ ├── Contents.json │ │ │ └── zom_logo@2x.png │ │ ├── chatsecure_qrcode.imageset │ │ │ ├── Contents.json │ │ │ ├── chatsecure_qrcode.png │ │ │ └── chatsecure_qrcode@2x.png │ │ ├── checkmark.imageset │ │ │ ├── Contents.json │ │ │ ├── checkmark.png │ │ │ └── checkmark@2x.png │ │ ├── crown.imageset │ │ │ ├── Contents.json │ │ │ └── crown.png │ │ ├── globe.imageset │ │ │ ├── Contents.json │ │ │ ├── globe.png │ │ │ └── globe@2x.png │ │ ├── googleTalkButton.imageset │ │ │ ├── Contents.json │ │ │ ├── googleTalkButton.png │ │ │ └── googleTalkButton@2x.png │ │ ├── googleTalkButtonPressed.imageset │ │ │ ├── Contents.json │ │ │ ├── googleTalkButtonPressed.png │ │ │ └── googleTalkButtonPressed@2x.png │ │ ├── gtalk.imageset │ │ │ ├── Contents.json │ │ │ ├── gtalk.png │ │ │ └── gtalk@2x.png │ │ ├── ic-check.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_check@1x.png │ │ │ ├── ic_check@2x.png │ │ │ └── ic_check@3x.png │ │ ├── ic_cancel.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_cancel@2x.png │ │ │ └── ic_cancel@3x.png │ │ ├── ic_language_white.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_language_white.png │ │ │ ├── ic_language_white_2x.png │ │ │ └── ic_language_white_3x.png │ │ ├── inbox.imageset │ │ │ ├── Contents.json │ │ │ ├── inbox.png │ │ │ └── inbox@2x.png │ │ ├── input-bar-flat.imageset │ │ │ ├── Contents.json │ │ │ ├── input-bar-flat.png │ │ │ └── input-bar-flat@2x.png │ │ ├── invite_success.imageset │ │ │ ├── 1dancing.png │ │ │ └── Contents.json │ │ ├── lock.imageset │ │ │ ├── Contents.json │ │ │ ├── lock.png │ │ │ └── lock@2x.png │ │ ├── onboarding_main.imageset │ │ │ ├── Contents.json │ │ │ └── Onboarding Main Image-1.png │ │ ├── person.imageset │ │ │ ├── Contents.json │ │ │ ├── person.png │ │ │ └── person@2x.png │ │ ├── xmpp-tor-logo.imageset │ │ │ ├── Contents.json │ │ │ ├── xmpp-tor-logo.png │ │ │ └── xmpp-tor-logo@2x.png │ │ └── xmpp.imageset │ │ │ ├── Contents.json │ │ │ ├── xmpp.png │ │ │ └── xmpp@2x.png │ └── ZomImages.xcassets │ │ ├── Contents.json │ │ ├── onboarding_avatar.imageset │ │ ├── Contents.json │ │ └── onboarding_avatar.png │ │ ├── onboarding_congrats.imageset │ │ ├── Contents.json │ │ └── onboarding_congrats.png │ │ ├── waiting_for_friend.imageset │ │ ├── Contents.json │ │ └── waiting.png │ │ └── zom_qrcode_placeholder.imageset │ │ ├── Contents.json │ │ └── qr.png ├── Info.plist ├── Interface │ ├── AttachmentPicker.xib │ ├── Base.lproj │ │ ├── AddBuddy.storyboard │ │ ├── MigratedBuddyHeaderView.xib │ │ ├── MigrationInfoHeaderView.xib │ │ ├── OTRComposeGroup.storyboard │ │ ├── OTRRoomOccupants.storyboard │ │ ├── Onboarding.storyboard │ │ ├── PitchInviteView.xib │ │ ├── PreparingSessionView.xib │ │ ├── Tabs.storyboard │ │ └── WaitingForApprovalView.xib │ ├── ImageActionButtonCell.xib │ ├── OTRUsernameCell.xib │ ├── PitchCreateGroupView.xib │ ├── StickerShare.storyboard │ ├── XMPPAccountCellWithMove.xib │ ├── XMPPServerInfoCell.xib │ ├── ZomTableViewSectionHeader.xib │ ├── ar.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── bo.lproj │ │ ├── AddBuddy.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── ca.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── da-DK.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── de.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── el.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── en.lproj │ │ ├── AddBuddy.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── es.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── fa-IR.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── fr.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── he.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── hu.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── id.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── it.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── ja.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── mr.lproj │ │ └── Onboarding.strings │ ├── nb-NO.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── nl-NL.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── pl.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── pt-BR.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── pt-PT.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── ro-RO.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── ru.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── sk.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── sl-SI.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── sl.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── sv.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── tr.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── uk.lproj │ │ └── Onboarding.strings │ ├── uz.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── vi.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ ├── zh-Hans-CN.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings │ └── zh-Hant-TW.lproj │ │ ├── AddBuddy.strings │ │ ├── ArchivedChatInfoView.strings │ │ ├── ArchivedFriendInfoView.strings │ │ ├── MigratedBuddyHeaderView.strings │ │ ├── MigrationInfoHeaderView.strings │ │ ├── OTRComposeGroup.strings │ │ ├── OTRRoomOccupants.strings │ │ ├── Onboarding.strings │ │ ├── PitchInviteView.strings │ │ ├── PreparingSessionView.strings │ │ ├── Tabs.strings │ │ └── WaitingForApprovalView.strings ├── Secrets-template.plist ├── Secrets.plist └── icomoon.ttf ├── Podfile ├── Podfile.Zom ├── Podfile.lock ├── Settings.bundle ├── Root.plist ├── com.mono0926.LicensePlist.plist ├── com.mono0926.LicensePlist │ ├── AFNetworking.plist │ ├── ARChromeActivity.plist │ ├── Alamofire.plist │ ├── Appirater.plist │ ├── BBlock.plist │ ├── BButton.plist │ ├── CPAProxy.plist │ ├── ChatSecure-Push-iOS.plist │ ├── ChatSecure-iOS.plist │ ├── CocoaAsyncSocket.plist │ ├── CocoaLumberjack.plist │ ├── DTFoundation.plist │ ├── FormatterKit.plist │ ├── GCDWebServer.plist │ ├── HTMLReader.plist │ ├── INSPhotoGallery.plist │ ├── IOCipher.plist │ ├── JSQMessagesViewController.plist │ ├── JTSImageViewController.plist │ ├── KSCrash.plist │ ├── KVOController.plist │ ├── KissXML.plist │ ├── Kvitto.plist │ ├── LumberjackConsole.plist │ ├── MBProgressHUD.plist │ ├── MWFeedParser.plist │ ├── Mantle.plist │ ├── NBUCore.plist │ ├── Navajo.plist │ ├── OTRKit.plist │ ├── OpenSSL.plist │ ├── ParkedTextField.plist │ ├── ProxyKit.plist │ ├── PureLayout.plist │ ├── QRCodeReaderViewController.plist │ ├── SAMKeychain.plist │ ├── SQLCipher.plist │ ├── SignalProtocolC.plist │ ├── SignalProtocolObjC.plist │ ├── TTTAttributedLabel.plist │ ├── TUSafariActivity.plist │ ├── Tor.plist │ ├── XLForm.plist │ ├── XMPPFramework.plist │ ├── YapDatabase.plist │ ├── YapTaskQueue.plist │ ├── ZXingObjC.plist │ ├── gtm-http-fetcher.plist │ ├── gtm-oauth2.plist │ ├── libevent.plist │ ├── libgcrypt.plist │ ├── libgpg-error.plist │ ├── libidn.plist │ ├── libotr.plist │ └── libsqlfs.plist └── en.lproj │ └── Root.strings ├── ShareExtension ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── ShareExtension-Bridging-Header.h ├── ShareExtension.entitlements └── ShareViewController.swift ├── Shared ├── Config-debug.xcconfig ├── Config-release.xcconfig ├── Config.xcconfig ├── SharedConstants.h └── SharedConstants.m ├── Zom.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── Zom.xcscmblueprint └── xcshareddata │ └── xcschemes │ └── Zom.xcscheme ├── Zom.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── Zom.xcscmblueprint ├── Zom ├── Base.lproj │ ├── Localizable.strings │ └── ZomBots.plist ├── Classes │ ├── NetworkSnackBarManager.swift │ ├── OTRAssets+ZomLanguageHandling.h │ ├── OTRAssets+ZomLanguageHandling.m │ ├── OTRXMPPRoomManager+Zom.swift │ ├── UIImage+Zom.swift │ ├── UITableView+Zom.h │ ├── UITableView+Zom.m │ ├── View Controllers │ │ ├── Login View Controllers │ │ │ └── ZomBaseLoginViewController.swift │ │ ├── Messages View Controller │ │ │ └── ZomMessagesViewController.swift │ │ ├── Onboarding │ │ │ ├── ZomCongratsViewController.swift │ │ │ ├── ZomIntroViewController.swift │ │ │ ├── ZomOnboardingNavigationController.swift │ │ │ ├── ZomPickLanguageViewController.swift │ │ │ └── ZomWelcomeViewController.swift │ │ ├── ZomAccountDetailViewController.swift │ │ ├── ZomAddFriendRequestedViewController.swift │ │ ├── ZomAddFriendRequestedViewController.xib │ │ ├── ZomAddFriendViewController.swift │ │ ├── ZomAddFriendViewController.xib │ │ ├── ZomBatchAddFriendsViewController.swift │ │ ├── ZomBatchAddFriendsViewController.xib │ │ ├── ZomBotsViewController.swift │ │ ├── ZomChooseAccountViewController.swift │ │ ├── ZomCompactTraitViewController.swift │ │ ├── ZomComposeGroupViewController.swift │ │ ├── ZomComposeViewController.swift │ │ ├── ZomConversationViewController.swift │ │ ├── ZomDiscoverViewController.swift │ │ ├── ZomFingerprintBaseViewController.swift │ │ ├── ZomInviteViewController.swift │ │ ├── ZomMainTabbedViewController.swift │ │ ├── ZomMigrationInfoViewController.swift │ │ ├── ZomMyQRViewController.swift │ │ ├── ZomNewBuddyViewController.swift │ │ ├── ZomPhotoStreamViewController.swift │ │ ├── ZomPhotosViewController.swift │ │ ├── ZomPickColorViewController.swift │ │ ├── ZomPickStickerViewController.swift │ │ ├── ZomProfileViewController.swift │ │ ├── ZomProfileViewControllerSource.swift │ │ ├── ZomRoomOccupantsViewController.swift │ │ ├── ZomRootNavigationViewController.swift │ │ ├── ZomSettingsViewController.swift │ │ ├── ZomStickerPackTableViewController.swift │ │ ├── ZomVerificationDetailViewController.swift │ │ ├── ZomVerificationDetailViewController.xib │ │ ├── ZomVerificationViewController.swift │ │ └── ZomVerificationViewController.xib │ ├── Views │ │ ├── AttachmentPicker.swift │ │ ├── HighlightableButton.swift │ │ ├── SnackBar.swift │ │ ├── SnackBar.xib │ │ ├── ZomAddFriendsCell.swift │ │ ├── ZomAddFriendsCell.xib │ │ ├── ZomAddFriendsTableCell.swift │ │ ├── ZomAddFriendsTableCell.xib │ │ ├── ZomBotCell.swift │ │ ├── ZomBuddyInfoCell.swift │ │ ├── ZomFingerprintCell.swift │ │ ├── ZomFingerprintCell.xib │ │ ├── ZomFingerprintVerificationCell.swift │ │ ├── ZomFingerprintVerificationCell.xib │ │ ├── ZomFingerprintVerificationHeader.swift │ │ ├── ZomFingerprintVerificationHeader.xib │ │ ├── ZomGenericLabelView.swift │ │ ├── ZomImageActionButtonCell.swift │ │ ├── ZomMigratedBuddyHeaderView.swift │ │ ├── ZomMigrationInfoHeaderView.swift │ │ ├── ZomPasswordCell.swift │ │ ├── ZomPasswordCell.xib │ │ ├── ZomPhotoOverlayView.swift │ │ ├── ZomPhotoOverlayView.xib │ │ ├── ZomPickStickerCell.swift │ │ ├── ZomProfileCells.swift │ │ ├── ZomTableViewSectionHeader.swift │ │ ├── ZomUserInfoProfileCell.swift │ │ └── ZomUserInfoProfileCell.xib │ ├── ZomAppDelegate.h │ ├── ZomAppDelegate.m │ ├── ZomBuddy.swift │ ├── ZomGalleryHandler.swift │ ├── ZomImportManager.swift │ ├── ZomOverrides.h │ ├── ZomPhotoStreamImage.swift │ ├── ZomSettingsManager.swift │ ├── ZomShareController.swift │ ├── ZomStickerMessage.swift │ ├── ZomStickerMessageMedia.swift │ ├── ZomUtil.swift │ └── main.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Zom1024.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ └── zicon167.png │ ├── Contents.json │ ├── PitchInvite.imageset │ │ ├── Contents.json │ │ └── Invite Friends Image-1.png │ ├── ic_airdrop.imageset │ │ ├── Contents.json │ │ ├── airdrop@1x.png │ │ ├── airdrop@2x.png │ │ └── airdrop@3x.png │ ├── ic_chat_bubble.imageset │ │ ├── Contents.json │ │ ├── bubble.png │ │ ├── bubble@2x.png │ │ └── bubble@3x.png │ ├── ic_delivered_grey.imageset │ │ ├── Contents.json │ │ └── ic_delivered_grey.png │ ├── ic_encrypted_grey.imageset │ │ ├── Contents.json │ │ └── ic_encrypted_grey.png │ ├── ic_explore_white.imageset │ │ ├── Contents.json │ │ ├── ic_explore_white.png │ │ ├── ic_explore_white_2x.png │ │ └── ic_explore_white_3x.png │ ├── ic_face_white.imageset │ │ ├── Contents.json │ │ ├── ic_face_white.png │ │ ├── ic_face_white_2x.png │ │ └── ic_face_white_3x.png │ ├── ic_group_add_white.imageset │ │ ├── Contents.json │ │ └── ic_group_add_white_36dp.png │ ├── ic_group_white.imageset │ │ ├── Contents.json │ │ ├── ic_group_white.png │ │ ├── ic_group_white_2x.png │ │ └── ic_group_white_3x.png │ ├── ic_imessage.imageset │ │ ├── Contents.json │ │ ├── iMessage.png │ │ ├── imessage@2x.png │ │ └── imessage@3x.png │ ├── ic_message_wait_grey.imageset │ │ ├── Contents.json │ │ └── ic_message_wait_grey.png │ ├── ic_message_white.imageset │ │ ├── Contents.json │ │ ├── ic_message_white.png │ │ ├── ic_message_white_2x.png │ │ └── ic_message_white_3x.png │ ├── ic_more.imageset │ │ ├── Contents.json │ │ ├── More.png │ │ ├── more@2x.png │ │ └── more@3x.png │ ├── ic_qr_code.imageset │ │ ├── Contents.json │ │ ├── ic_qr.png │ │ └── ic_qr@2x.png │ ├── ic_security.imageset │ │ ├── Contents.json │ │ ├── ic_security.png │ │ ├── ic_security_2x.png │ │ └── ic_security_3x.png │ ├── ic_security_white_36pt.imageset │ │ ├── Contents.json │ │ ├── ic_security_white_36pt.png │ │ ├── ic_security_white_36pt_2x.png │ │ └── ic_security_white_36pt_3x.png │ ├── ic_sent_grey.imageset │ │ ├── Contents.json │ │ └── ic_sent_grey.png │ ├── ic_whatsapp.imageset │ │ ├── Contents.json │ │ ├── WhatsApp.png │ │ ├── whatsapp@2x.png │ │ └── whatsapp@3x.png │ ├── more_tshirt.imageset │ │ ├── Contents.json │ │ └── tshirt128px.png │ ├── new_friends_bg.imageset │ │ ├── Contents.json │ │ └── img_add-friends_v2.pdf │ ├── zom_add_friend_selected_90.imageset │ │ ├── Contents.json │ │ └── zom_add_friend_selected_90.png │ └── zom_add_friend_unselected_90.imageset │ │ ├── Contents.json │ │ └── zom_add_friend_unselected_90.png ├── Info.plist ├── LaunchScreen.xib ├── OTRXMPPRoom+Zom.swift ├── Stickers │ ├── 00 zomkyi │ │ ├── 10_zomkyi_jumpinghappy.png │ │ ├── 11_zomkyi_goodjob.png │ │ ├── 12_zomkyi_petsdog.png │ │ ├── 14_zomkyi_sickandsad.png │ │ ├── 15_zomkyi_dog.png │ │ ├── 16_zomkyi_sick.png │ │ ├── 17_zomkyi_thinking.png │ │ ├── 18_zomkyi_cryingagain.png │ │ ├── 19_zomkyi_clapping.png │ │ ├── 1_zomkyi_dancing.png │ │ ├── 20_zomkyi_heat.png │ │ ├── 2_zomkyi_hooray.png │ │ ├── 4_zomkyi_praying.png │ │ ├── 5_zomkyi_heart.png │ │ ├── 6_zomkyi_tongue.png │ │ ├── 7_zomkyi_yo.png │ │ └── 8_zomkyi_notondiet.png │ ├── 01 expressions │ │ ├── goodnight.png │ │ ├── happy_birthday.png │ │ ├── i_miss_you.png │ │ ├── tashi_delek.png │ │ ├── zom_ex1_01.png │ │ ├── zom_ex1_02.png │ │ ├── zom_ex1_03.png │ │ ├── zom_ex1_04.png │ │ ├── zom_ex1_05.png │ │ ├── zom_ex1_06.png │ │ ├── zom_ex1_07.png │ │ ├── zom_ex1_08.png │ │ ├── zom_ex1_09.png │ │ └── zom_ex1_10.png │ ├── 02 olo and shimi │ │ ├── 10shhh.png │ │ ├── 11flowers.png │ │ ├── 12music.png │ │ ├── 13relax.png │ │ ├── 14eating.png │ │ ├── 15biscuit.png │ │ ├── 1thinking.png │ │ ├── 2bored.png │ │ ├── 3scared.png │ │ ├── 4greeting.png │ │ ├── 5hearts.png │ │ ├── 6yay.png │ │ ├── 7upset.png │ │ ├── 8crying.png │ │ └── 9dancing.png │ ├── 03 losar │ │ ├── Dog Losar-b.png │ │ ├── Dreka-b.png │ │ ├── Dresil Losar-b.png │ │ ├── Dresil Recipe-b.png │ │ ├── Guthuk-2145.png │ │ ├── Home Offering-b.png │ │ ├── Khabsey-2145.png │ │ ├── Losar Sang.png │ │ ├── Sakhyi Losar.png │ │ ├── SintuScarf.png │ │ ├── Tashi Delek.png │ │ ├── _goodnight.png │ │ ├── _happy_birthday.png │ │ ├── _i_miss_you.png │ │ ├── _tashi_delek.png │ │ ├── guthuk.png │ │ ├── khabsey.png │ │ ├── lha_gyalo.png │ │ ├── losar_tashi_delek.png │ │ └── shaptak.png │ ├── 04 sindu │ │ ├── hello.png │ │ ├── howl.png │ │ ├── lets play.png │ │ ├── puppy love.png │ │ ├── sleeping.png │ │ └── woof.png │ ├── 05 pema │ │ ├── goodmorning.png │ │ ├── om-mani.png │ │ ├── pema01.png │ │ ├── pema02.png │ │ ├── pema03.png │ │ ├── pema04.png │ │ ├── pema05.png │ │ ├── pema06.png │ │ ├── pema07.png │ │ ├── pema08.png │ │ ├── pema09.png │ │ └── pema10.png │ ├── 06 topgyal │ │ ├── bemused.png │ │ ├── bite.png │ │ ├── cold.png │ │ ├── flowers.png │ │ ├── love.png │ │ ├── mad.png │ │ ├── music.png │ │ ├── sad.png │ │ ├── singing.png │ │ └── thinking.png │ ├── 07 buddhist │ │ ├── butter_lamp.png │ │ ├── mandala.png │ │ ├── meditation_cushion.png │ │ ├── prayer_flags.png │ │ ├── prayer_wheel.png │ │ ├── singing_bowl.png │ │ ├── stupa.png │ │ ├── thangka.png │ │ ├── the_three_jewels.png │ │ └── trenga.png │ └── 08 tiboji │ │ ├── buttertea.png │ │ ├── candle.png │ │ ├── khata.png │ │ ├── monkdebate.png │ │ ├── om.png │ │ ├── prayerhands.png │ │ ├── prostration.png │ │ ├── shabalep.png │ │ ├── tibetanbutterlamp.png │ │ ├── tibetanprayerwheel.png │ │ └── yak.png ├── UIApplication+Zom.swift ├── Zom-Bridging-Header.h ├── Zom.entitlements ├── ZomMigrationSwizzles.swift ├── ZomPhotoStreamCell.swift ├── ZomTheme.swift ├── ZomTransferOwnershipViewController.swift ├── ZomTransferOwnershipViewController.xib ├── ar.lproj │ └── Localizable.strings ├── bo.lproj │ ├── Localizable.strings │ └── ZomBots.plist ├── ca.lproj │ └── Localizable.strings ├── da-DK.lproj │ └── Localizable.strings ├── de.lproj │ └── Localizable.strings ├── el.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── fa-IR.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── he.lproj │ └── Localizable.strings ├── hu.lproj │ └── Localizable.strings ├── id.lproj │ └── Localizable.strings ├── it.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── nb-NO.lproj │ └── Localizable.strings ├── nl-NL.lproj │ └── Localizable.strings ├── pl.lproj │ └── Localizable.strings ├── pt-BR.lproj │ └── Localizable.strings ├── pt-PT.lproj │ └── Localizable.strings ├── ro-RO.lproj │ └── Localizable.strings ├── ru.lproj │ └── Localizable.strings ├── sk.lproj │ └── Localizable.strings ├── sl-SI.lproj │ └── Localizable.strings ├── sl.lproj │ └── Localizable.strings ├── sv.lproj │ └── Localizable.strings ├── tr.lproj │ └── Localizable.strings ├── uz.lproj │ └── Localizable.strings ├── vi.lproj │ └── Localizable.strings ├── zh-Hans-CN.lproj │ ├── Localizable.strings │ └── ZomBots.plist └── zh-Hant-TW.lproj │ ├── Localizable.strings │ └── ZomBots.plist ├── after_upstream_update.sh ├── convert_android_strings_to_ios.sh ├── copy_podfile.sh ├── license_plist.yml ├── license_plist.zom ├── scripts ├── genstrings.sh ├── stringtool.sh └── use_android_strings_in_zom.sh └── update_licenses.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'cocoapods', '~> 1.5.3' 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/README.md -------------------------------------------------------------------------------- /Sticker Packs/Olo Stickers/Olo Stickers.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Sticker Packs/Olo Stickers/Olo Stickers.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sticker Packs/Olo Stickers/Olo Stickers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Sticker Packs/Olo Stickers/Olo Stickers/Info.plist -------------------------------------------------------------------------------- /Sticker Packs/Olo Stickers/StickerPackExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Sticker Packs/Olo Stickers/StickerPackExtension/Info.plist -------------------------------------------------------------------------------- /Sticker Packs/Pema Stickers/Pema Stickers.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Sticker Packs/Pema Stickers/Pema Stickers.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sticker Packs/Pema Stickers/Pema Stickers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Sticker Packs/Pema Stickers/Pema Stickers/Info.plist -------------------------------------------------------------------------------- /Sticker Packs/Pema Stickers/StickerPackExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Sticker Packs/Pema Stickers/StickerPackExtension/Info.plist -------------------------------------------------------------------------------- /Zom/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Cartfile -------------------------------------------------------------------------------- /Zom/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Cartfile.resolved -------------------------------------------------------------------------------- /Zom/OTRResources/Branding.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Branding.plist -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRCountryImages.xcassets/CA.imageset/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRCountryImages.xcassets/CA.imageset/CA.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRCountryImages.xcassets/CA.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRCountryImages.xcassets/CA.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRCountryImages.xcassets/NL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRCountryImages.xcassets/NL.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRCountryImages.xcassets/NL.imageset/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRCountryImages.xcassets/NL.imageset/NL.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRCountryImages.xcassets/US.imageset/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRCountryImages.xcassets/US.imageset/US.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/08-chat.imageset/08-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/08-chat.imageset/08-chat.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/08-chat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/08-chat.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/14-gear.imageset/14-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/14-gear.imageset/14-gear.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/14-gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/14-gear.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/29-heart.imageset/29-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/29-heart.imageset/29-heart.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/Safari.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/Safari.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/Safari.imageset/Safari-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/Safari.imageset/Safari-64.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/Twitter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/Twitter.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/crown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/crown.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/crown.imageset/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/crown.imageset/crown.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/globe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/globe.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/globe.imageset/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/globe.imageset/globe.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/globe.imageset/globe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/globe.imageset/globe@2x.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/gtalk.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/gtalk.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/gtalk.imageset/gtalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/gtalk.imageset/gtalk.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/gtalk.imageset/gtalk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/gtalk.imageset/gtalk@2x.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/inbox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/inbox.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/inbox.imageset/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/inbox.imageset/inbox.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/inbox.imageset/inbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/inbox.imageset/inbox@2x.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/lock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/lock.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/lock.imageset/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/lock.imageset/lock.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/lock.imageset/lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/lock.imageset/lock@2x.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/person.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/person.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/person.imageset/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/person.imageset/person.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/person.imageset/person@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/person.imageset/person@2x.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/xmpp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/xmpp.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/xmpp.imageset/xmpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/xmpp.imageset/xmpp.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/OTRImages.xcassets/xmpp.imageset/xmpp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/OTRImages.xcassets/xmpp.imageset/xmpp@2x.png -------------------------------------------------------------------------------- /Zom/OTRResources/Images/ZomImages.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Images/ZomImages.xcassets/Contents.json -------------------------------------------------------------------------------- /Zom/OTRResources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Info.plist -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/AttachmentPicker.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/AttachmentPicker.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/Base.lproj/AddBuddy.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/Base.lproj/AddBuddy.storyboard -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/Base.lproj/MigratedBuddyHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/Base.lproj/MigratedBuddyHeaderView.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/Base.lproj/MigrationInfoHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/Base.lproj/MigrationInfoHeaderView.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/Base.lproj/OTRComposeGroup.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/Base.lproj/OTRComposeGroup.storyboard -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/Base.lproj/OTRRoomOccupants.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/Base.lproj/OTRRoomOccupants.storyboard -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/Base.lproj/Onboarding.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/Base.lproj/Onboarding.storyboard -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/Base.lproj/PitchInviteView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/Base.lproj/PitchInviteView.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/Base.lproj/PreparingSessionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/Base.lproj/PreparingSessionView.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/Base.lproj/Tabs.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/Base.lproj/Tabs.storyboard -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/Base.lproj/WaitingForApprovalView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/Base.lproj/WaitingForApprovalView.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ImageActionButtonCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ImageActionButtonCell.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/OTRUsernameCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/OTRUsernameCell.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/PitchCreateGroupView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/PitchCreateGroupView.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/StickerShare.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/StickerShare.storyboard -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/XMPPAccountCellWithMove.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/XMPPAccountCellWithMove.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/XMPPServerInfoCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/XMPPServerInfoCell.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ZomTableViewSectionHeader.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ZomTableViewSectionHeader.xib -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ar.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ar.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/Onboarding.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ar.lproj/Onboarding.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ar.lproj/PitchInviteView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ar.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ar.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ar.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/bo.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/bo.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/bo.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/bo.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/bo.lproj/MigrationInfoHeaderView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/bo.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/bo.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/bo.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/bo.lproj/Onboarding.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/bo.lproj/Onboarding.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/bo.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/bo.lproj/PitchInviteView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/bo.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/bo.lproj/PreparingSessionView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/bo.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/bo.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/bo.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/bo.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ca.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ca.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ca.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ca.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ca.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/da-DK.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/da-DK.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/da-DK.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/da-DK.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/de.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/de.lproj/MigrationInfoHeaderView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/de.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/Onboarding.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/de.lproj/Onboarding.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/de.lproj/PitchInviteView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/de.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/de.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/de.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/el.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/el.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/el.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/el.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/en.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/en.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/en.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/en.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/en.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/en.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/en.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/en.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/en.lproj/Tabs.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/en.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/es.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/es.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/Onboarding.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/es.lproj/Onboarding.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/es.lproj/PitchInviteView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/es.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/es.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/es.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/fa-IR.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/fa-IR.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/fa-IR.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fa-IR.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/fa-IR.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/fr.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/fr.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/fr.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/fr.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/he.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/Tabs.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/he.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/he.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/hu.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/Tabs.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/hu.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/hu.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/id.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/id.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/id.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/id.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/it.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/it.lproj/MigrationInfoHeaderView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/it.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/Onboarding.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/it.lproj/Onboarding.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/it.lproj/PitchInviteView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/it.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/it.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/it.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ja.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ja.lproj/MigrationInfoHeaderView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ja.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/Onboarding.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ja.lproj/Onboarding.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ja.lproj/PitchInviteView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ja.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ja.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ja.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/mr.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/nb-NO.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/nb-NO.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nb-NO.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/nb-NO.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/nl-NL.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/nl-NL.lproj/MigrationInfoHeaderView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/nl-NL.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/Onboarding.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/nl-NL.lproj/Onboarding.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/nl-NL.lproj/PitchInviteView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/nl-NL.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/nl-NL.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/nl-NL.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/pl.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/pl.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pl.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/pl.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/pt-BR.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/Tabs.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-BR.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/pt-BR.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/pt-PT.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/pt-PT.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/pt-PT.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/pt-PT.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/pt-PT.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ro-RO.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/Tabs.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ro-RO.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ro-RO.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ru.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ru.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/Onboarding.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ru.lproj/Onboarding.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ru.lproj/PitchInviteView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ru.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/ru.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/ru.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sk.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sk.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sk.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sk.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sk.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sl-SI.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sl-SI.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sl-SI.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl-SI.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sl-SI.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sl.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/Tabs.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sl.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sl.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sv.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sv.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/sv.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/sv.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/tr.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/tr.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/tr.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/tr.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uk.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/uz.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/Tabs.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/uz.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/uz.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/vi.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/vi.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/vi.lproj/WaitingForApprovalView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/vi.lproj/WaitingForApprovalView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hans-CN.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/zh-Hans-CN.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hans-CN.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hans-CN.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hans-CN.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hans-CN.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hans-CN.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/zh-Hans-CN.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hans-CN.lproj/Onboarding.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/zh-Hans-CN.lproj/Onboarding.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hans-CN.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/zh-Hans-CN.lproj/PitchInviteView.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hans-CN.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hans-CN.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/zh-Hans-CN.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/AddBuddy.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/zh-Hant-TW.lproj/AddBuddy.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/ArchivedChatInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/ArchivedFriendInfoView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/MigratedBuddyHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/MigrationInfoHeaderView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/OTRComposeGroup.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/OTRRoomOccupants.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/zh-Hant-TW.lproj/OTRRoomOccupants.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/Onboarding.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/PitchInviteView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/PreparingSessionView.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/OTRResources/Interface/zh-Hant-TW.lproj/Tabs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Interface/zh-Hant-TW.lproj/Tabs.strings -------------------------------------------------------------------------------- /Zom/OTRResources/Secrets-template.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Secrets-template.plist -------------------------------------------------------------------------------- /Zom/OTRResources/Secrets.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/Secrets.plist -------------------------------------------------------------------------------- /Zom/OTRResources/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/OTRResources/icomoon.ttf -------------------------------------------------------------------------------- /Zom/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Podfile -------------------------------------------------------------------------------- /Zom/Podfile.Zom: -------------------------------------------------------------------------------- 1 | pod 'INSPhotoGallery' 2 | -------------------------------------------------------------------------------- /Zom/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Podfile.lock -------------------------------------------------------------------------------- /Zom/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/AFNetworking.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/AFNetworking.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/ARChromeActivity.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/ARChromeActivity.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/Alamofire.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/Alamofire.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/Appirater.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/Appirater.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/BBlock.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/BBlock.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/BButton.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/BButton.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/CPAProxy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/CPAProxy.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/ChatSecure-Push-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/ChatSecure-Push-iOS.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/ChatSecure-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/ChatSecure-iOS.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/CocoaAsyncSocket.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/CocoaAsyncSocket.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/CocoaLumberjack.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/CocoaLumberjack.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/DTFoundation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/DTFoundation.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/FormatterKit.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/FormatterKit.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/GCDWebServer.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/GCDWebServer.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/HTMLReader.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/HTMLReader.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/INSPhotoGallery.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/INSPhotoGallery.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/IOCipher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/IOCipher.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/KSCrash.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/KSCrash.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/KVOController.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/KVOController.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/KissXML.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/KissXML.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/Kvitto.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/Kvitto.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/LumberjackConsole.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/LumberjackConsole.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/MBProgressHUD.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/MBProgressHUD.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/MWFeedParser.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/MWFeedParser.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/Mantle.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/Mantle.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/NBUCore.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/NBUCore.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/Navajo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/Navajo.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/OTRKit.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/OTRKit.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/OpenSSL.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/OpenSSL.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/ParkedTextField.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/ParkedTextField.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/ProxyKit.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/ProxyKit.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/PureLayout.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/PureLayout.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/SAMKeychain.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/SAMKeychain.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/SQLCipher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/SQLCipher.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/SignalProtocolC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/SignalProtocolC.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/SignalProtocolObjC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/SignalProtocolObjC.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/TTTAttributedLabel.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/TTTAttributedLabel.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/TUSafariActivity.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/TUSafariActivity.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/Tor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/Tor.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/XLForm.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/XLForm.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/XMPPFramework.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/XMPPFramework.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/YapDatabase.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/YapDatabase.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/YapTaskQueue.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/YapTaskQueue.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/ZXingObjC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/ZXingObjC.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/gtm-http-fetcher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/gtm-http-fetcher.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/gtm-oauth2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/gtm-oauth2.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/libevent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/libevent.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/libgcrypt.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/libgcrypt.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/libgpg-error.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/libgpg-error.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/libidn.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/libidn.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/libotr.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/libotr.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/com.mono0926.LicensePlist/libsqlfs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/com.mono0926.LicensePlist/libsqlfs.plist -------------------------------------------------------------------------------- /Zom/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Zom/ShareExtension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/ShareExtension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Zom/ShareExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/ShareExtension/Info.plist -------------------------------------------------------------------------------- /Zom/ShareExtension/ShareExtension-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/ShareExtension/ShareExtension-Bridging-Header.h -------------------------------------------------------------------------------- /Zom/ShareExtension/ShareExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/ShareExtension/ShareExtension.entitlements -------------------------------------------------------------------------------- /Zom/ShareExtension/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/ShareExtension/ShareViewController.swift -------------------------------------------------------------------------------- /Zom/Shared/Config-debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Shared/Config-debug.xcconfig -------------------------------------------------------------------------------- /Zom/Shared/Config-release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Shared/Config-release.xcconfig -------------------------------------------------------------------------------- /Zom/Shared/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Shared/Config.xcconfig -------------------------------------------------------------------------------- /Zom/Shared/SharedConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Shared/SharedConstants.h -------------------------------------------------------------------------------- /Zom/Shared/SharedConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Shared/SharedConstants.m -------------------------------------------------------------------------------- /Zom/Zom.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Zom/Zom.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Zom/Zom.xcodeproj/project.xcworkspace/xcshareddata/Zom.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom.xcodeproj/project.xcworkspace/xcshareddata/Zom.xcscmblueprint -------------------------------------------------------------------------------- /Zom/Zom.xcodeproj/xcshareddata/xcschemes/Zom.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom.xcodeproj/xcshareddata/xcschemes/Zom.xcscheme -------------------------------------------------------------------------------- /Zom/Zom.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Zom/Zom.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Zom/Zom.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Zom/Zom.xcworkspace/xcshareddata/Zom.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom.xcworkspace/xcshareddata/Zom.xcscmblueprint -------------------------------------------------------------------------------- /Zom/Zom/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/Base.lproj/ZomBots.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Base.lproj/ZomBots.plist -------------------------------------------------------------------------------- /Zom/Zom/Classes/NetworkSnackBarManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/NetworkSnackBarManager.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/OTRAssets+ZomLanguageHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/OTRAssets+ZomLanguageHandling.h -------------------------------------------------------------------------------- /Zom/Zom/Classes/OTRAssets+ZomLanguageHandling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/OTRAssets+ZomLanguageHandling.m -------------------------------------------------------------------------------- /Zom/Zom/Classes/OTRXMPPRoomManager+Zom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/OTRXMPPRoomManager+Zom.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/UIImage+Zom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/UIImage+Zom.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/UITableView+Zom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/UITableView+Zom.h -------------------------------------------------------------------------------- /Zom/Zom/Classes/UITableView+Zom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/UITableView+Zom.m -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/Onboarding/ZomIntroViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/Onboarding/ZomIntroViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomAccountDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomAccountDetailViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomAddFriendRequestedViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomAddFriendRequestedViewController.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomAddFriendViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomAddFriendViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomAddFriendViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomAddFriendViewController.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomBatchAddFriendsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomBatchAddFriendsViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomBatchAddFriendsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomBatchAddFriendsViewController.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomBotsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomBotsViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomChooseAccountViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomChooseAccountViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomCompactTraitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomCompactTraitViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomComposeGroupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomComposeGroupViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomComposeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomComposeViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomConversationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomConversationViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomDiscoverViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomDiscoverViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomFingerprintBaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomFingerprintBaseViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomInviteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomInviteViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomMainTabbedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomMainTabbedViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomMigrationInfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomMigrationInfoViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomMyQRViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomMyQRViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomNewBuddyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomNewBuddyViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomPhotoStreamViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomPhotoStreamViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomPhotosViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomPhotosViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomPickColorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomPickColorViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomPickStickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomPickStickerViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomProfileViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomProfileViewControllerSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomProfileViewControllerSource.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomRoomOccupantsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomRoomOccupantsViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomRootNavigationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomRootNavigationViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomSettingsViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomStickerPackTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomStickerPackTableViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomVerificationDetailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomVerificationDetailViewController.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomVerificationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomVerificationViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/View Controllers/ZomVerificationViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/View Controllers/ZomVerificationViewController.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/AttachmentPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/AttachmentPicker.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/HighlightableButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/HighlightableButton.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/SnackBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/SnackBar.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/SnackBar.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/SnackBar.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomAddFriendsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomAddFriendsCell.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomAddFriendsCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomAddFriendsCell.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomAddFriendsTableCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomAddFriendsTableCell.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomAddFriendsTableCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomAddFriendsTableCell.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomBotCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomBotCell.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomBuddyInfoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomBuddyInfoCell.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomFingerprintCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomFingerprintCell.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomFingerprintCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomFingerprintCell.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomFingerprintVerificationCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomFingerprintVerificationCell.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomFingerprintVerificationCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomFingerprintVerificationCell.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomFingerprintVerificationHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomFingerprintVerificationHeader.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomFingerprintVerificationHeader.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomFingerprintVerificationHeader.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomGenericLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomGenericLabelView.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomImageActionButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomImageActionButtonCell.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomMigratedBuddyHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomMigratedBuddyHeaderView.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomMigrationInfoHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomMigrationInfoHeaderView.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomPasswordCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomPasswordCell.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomPasswordCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomPasswordCell.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomPhotoOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomPhotoOverlayView.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomPhotoOverlayView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomPhotoOverlayView.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomPickStickerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomPickStickerCell.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomProfileCells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomProfileCells.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomTableViewSectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomTableViewSectionHeader.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomUserInfoProfileCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomUserInfoProfileCell.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/Views/ZomUserInfoProfileCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/Views/ZomUserInfoProfileCell.xib -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomAppDelegate.h -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomAppDelegate.m -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomBuddy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomBuddy.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomGalleryHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomGalleryHandler.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomImportManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomImportManager.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomOverrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomOverrides.h -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomPhotoStreamImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomPhotoStreamImage.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomSettingsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomSettingsManager.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomShareController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomShareController.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomStickerMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomStickerMessage.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomStickerMessageMedia.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomStickerMessageMedia.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/ZomUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/ZomUtil.swift -------------------------------------------------------------------------------- /Zom/Zom/Classes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Classes/main.m -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/AppIcon.appiconset/Zom1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/AppIcon.appiconset/Zom1024.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/AppIcon.appiconset/zicon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/AppIcon.appiconset/zicon167.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/PitchInvite.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/PitchInvite.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/PitchInvite.imageset/Invite Friends Image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/PitchInvite.imageset/Invite Friends Image-1.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_airdrop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_airdrop.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_airdrop.imageset/airdrop@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_airdrop.imageset/airdrop@1x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_airdrop.imageset/airdrop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_airdrop.imageset/airdrop@2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_airdrop.imageset/airdrop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_airdrop.imageset/airdrop@3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_chat_bubble.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_chat_bubble.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_chat_bubble.imageset/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_chat_bubble.imageset/bubble.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_chat_bubble.imageset/bubble@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_chat_bubble.imageset/bubble@2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_chat_bubble.imageset/bubble@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_chat_bubble.imageset/bubble@3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_delivered_grey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_delivered_grey.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_delivered_grey.imageset/ic_delivered_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_delivered_grey.imageset/ic_delivered_grey.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_encrypted_grey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_encrypted_grey.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_encrypted_grey.imageset/ic_encrypted_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_encrypted_grey.imageset/ic_encrypted_grey.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_explore_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_explore_white.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_explore_white.imageset/ic_explore_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_explore_white.imageset/ic_explore_white.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_explore_white.imageset/ic_explore_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_explore_white.imageset/ic_explore_white_2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_explore_white.imageset/ic_explore_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_explore_white.imageset/ic_explore_white_3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_face_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_face_white.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_face_white.imageset/ic_face_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_face_white.imageset/ic_face_white.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_face_white.imageset/ic_face_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_face_white.imageset/ic_face_white_2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_face_white.imageset/ic_face_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_face_white.imageset/ic_face_white_3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_group_add_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_group_add_white.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_group_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_group_white.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_group_white.imageset/ic_group_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_group_white.imageset/ic_group_white.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_group_white.imageset/ic_group_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_group_white.imageset/ic_group_white_2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_group_white.imageset/ic_group_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_group_white.imageset/ic_group_white_3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_imessage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_imessage.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_imessage.imageset/iMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_imessage.imageset/iMessage.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_imessage.imageset/imessage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_imessage.imageset/imessage@2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_imessage.imageset/imessage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_imessage.imageset/imessage@3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_message_wait_grey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_message_wait_grey.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_message_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_message_white.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_message_white.imageset/ic_message_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_message_white.imageset/ic_message_white.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_message_white.imageset/ic_message_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_message_white.imageset/ic_message_white_2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_message_white.imageset/ic_message_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_message_white.imageset/ic_message_white_3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_more.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_more.imageset/More.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_more.imageset/More.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_more.imageset/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_more.imageset/more@2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_more.imageset/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_more.imageset/more@3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_qr_code.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_qr_code.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_qr_code.imageset/ic_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_qr_code.imageset/ic_qr.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_qr_code.imageset/ic_qr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_qr_code.imageset/ic_qr@2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_security.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_security.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_security.imageset/ic_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_security.imageset/ic_security.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_security.imageset/ic_security_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_security.imageset/ic_security_2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_security.imageset/ic_security_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_security.imageset/ic_security_3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_security_white_36pt.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_security_white_36pt.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_sent_grey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_sent_grey.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_sent_grey.imageset/ic_sent_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_sent_grey.imageset/ic_sent_grey.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_whatsapp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_whatsapp.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_whatsapp.imageset/WhatsApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_whatsapp.imageset/WhatsApp.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_whatsapp.imageset/whatsapp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_whatsapp.imageset/whatsapp@2x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/ic_whatsapp.imageset/whatsapp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/ic_whatsapp.imageset/whatsapp@3x.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/more_tshirt.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/more_tshirt.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/more_tshirt.imageset/tshirt128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/more_tshirt.imageset/tshirt128px.png -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/new_friends_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/new_friends_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/new_friends_bg.imageset/img_add-friends_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/new_friends_bg.imageset/img_add-friends_v2.pdf -------------------------------------------------------------------------------- /Zom/Zom/Images.xcassets/zom_add_friend_selected_90.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Images.xcassets/zom_add_friend_selected_90.imageset/Contents.json -------------------------------------------------------------------------------- /Zom/Zom/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Info.plist -------------------------------------------------------------------------------- /Zom/Zom/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/LaunchScreen.xib -------------------------------------------------------------------------------- /Zom/Zom/OTRXMPPRoom+Zom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/OTRXMPPRoom+Zom.swift -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/10_zomkyi_jumpinghappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/10_zomkyi_jumpinghappy.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/11_zomkyi_goodjob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/11_zomkyi_goodjob.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/12_zomkyi_petsdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/12_zomkyi_petsdog.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/14_zomkyi_sickandsad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/14_zomkyi_sickandsad.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/15_zomkyi_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/15_zomkyi_dog.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/16_zomkyi_sick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/16_zomkyi_sick.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/17_zomkyi_thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/17_zomkyi_thinking.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/18_zomkyi_cryingagain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/18_zomkyi_cryingagain.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/19_zomkyi_clapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/19_zomkyi_clapping.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/1_zomkyi_dancing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/1_zomkyi_dancing.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/20_zomkyi_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/20_zomkyi_heat.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/2_zomkyi_hooray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/2_zomkyi_hooray.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/4_zomkyi_praying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/4_zomkyi_praying.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/5_zomkyi_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/5_zomkyi_heart.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/6_zomkyi_tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/6_zomkyi_tongue.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/7_zomkyi_yo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/7_zomkyi_yo.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/00 zomkyi/8_zomkyi_notondiet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/00 zomkyi/8_zomkyi_notondiet.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/goodnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/goodnight.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/happy_birthday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/happy_birthday.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/i_miss_you.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/i_miss_you.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/tashi_delek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/tashi_delek.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/zom_ex1_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/zom_ex1_01.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/zom_ex1_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/zom_ex1_02.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/zom_ex1_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/zom_ex1_03.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/zom_ex1_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/zom_ex1_04.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/zom_ex1_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/zom_ex1_05.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/zom_ex1_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/zom_ex1_06.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/zom_ex1_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/zom_ex1_07.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/zom_ex1_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/zom_ex1_08.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/zom_ex1_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/zom_ex1_09.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/01 expressions/zom_ex1_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/01 expressions/zom_ex1_10.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/10shhh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/10shhh.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/11flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/11flowers.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/12music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/12music.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/13relax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/13relax.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/14eating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/14eating.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/15biscuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/15biscuit.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/1thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/1thinking.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/2bored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/2bored.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/3scared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/3scared.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/4greeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/4greeting.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/5hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/5hearts.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/6yay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/6yay.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/7upset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/7upset.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/8crying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/8crying.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/02 olo and shimi/9dancing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/02 olo and shimi/9dancing.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/Dog Losar-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/Dog Losar-b.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/Dreka-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/Dreka-b.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/Dresil Losar-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/Dresil Losar-b.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/Dresil Recipe-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/Dresil Recipe-b.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/Guthuk-2145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/Guthuk-2145.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/Home Offering-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/Home Offering-b.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/Khabsey-2145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/Khabsey-2145.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/Losar Sang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/Losar Sang.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/Sakhyi Losar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/Sakhyi Losar.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/SintuScarf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/SintuScarf.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/Tashi Delek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/Tashi Delek.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/_goodnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/_goodnight.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/_happy_birthday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/_happy_birthday.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/_i_miss_you.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/_i_miss_you.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/_tashi_delek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/_tashi_delek.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/guthuk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/guthuk.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/khabsey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/khabsey.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/lha_gyalo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/lha_gyalo.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/losar_tashi_delek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/losar_tashi_delek.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/03 losar/shaptak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/03 losar/shaptak.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/04 sindu/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/04 sindu/hello.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/04 sindu/howl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/04 sindu/howl.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/04 sindu/lets play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/04 sindu/lets play.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/04 sindu/puppy love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/04 sindu/puppy love.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/04 sindu/sleeping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/04 sindu/sleeping.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/04 sindu/woof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/04 sindu/woof.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/goodmorning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/goodmorning.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/om-mani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/om-mani.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/pema01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/pema01.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/pema02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/pema02.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/pema03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/pema03.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/pema04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/pema04.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/pema05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/pema05.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/pema06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/pema06.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/pema07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/pema07.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/pema08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/pema08.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/pema09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/pema09.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/05 pema/pema10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/05 pema/pema10.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/06 topgyal/bemused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/06 topgyal/bemused.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/06 topgyal/bite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/06 topgyal/bite.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/06 topgyal/cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/06 topgyal/cold.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/06 topgyal/flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/06 topgyal/flowers.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/06 topgyal/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/06 topgyal/love.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/06 topgyal/mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/06 topgyal/mad.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/06 topgyal/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/06 topgyal/music.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/06 topgyal/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/06 topgyal/sad.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/06 topgyal/singing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/06 topgyal/singing.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/06 topgyal/thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/06 topgyal/thinking.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/07 buddhist/butter_lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/07 buddhist/butter_lamp.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/07 buddhist/mandala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/07 buddhist/mandala.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/07 buddhist/meditation_cushion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/07 buddhist/meditation_cushion.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/07 buddhist/prayer_flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/07 buddhist/prayer_flags.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/07 buddhist/prayer_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/07 buddhist/prayer_wheel.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/07 buddhist/singing_bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/07 buddhist/singing_bowl.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/07 buddhist/stupa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/07 buddhist/stupa.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/07 buddhist/thangka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/07 buddhist/thangka.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/07 buddhist/the_three_jewels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/07 buddhist/the_three_jewels.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/07 buddhist/trenga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/07 buddhist/trenga.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/buttertea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/buttertea.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/candle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/candle.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/khata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/khata.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/monkdebate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/monkdebate.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/om.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/prayerhands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/prayerhands.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/prostration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/prostration.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/shabalep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/shabalep.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/tibetanbutterlamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/tibetanbutterlamp.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/tibetanprayerwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/tibetanprayerwheel.png -------------------------------------------------------------------------------- /Zom/Zom/Stickers/08 tiboji/yak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Stickers/08 tiboji/yak.png -------------------------------------------------------------------------------- /Zom/Zom/UIApplication+Zom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/UIApplication+Zom.swift -------------------------------------------------------------------------------- /Zom/Zom/Zom-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Zom-Bridging-Header.h -------------------------------------------------------------------------------- /Zom/Zom/Zom.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/Zom.entitlements -------------------------------------------------------------------------------- /Zom/Zom/ZomMigrationSwizzles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/ZomMigrationSwizzles.swift -------------------------------------------------------------------------------- /Zom/Zom/ZomPhotoStreamCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/ZomPhotoStreamCell.swift -------------------------------------------------------------------------------- /Zom/Zom/ZomTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/ZomTheme.swift -------------------------------------------------------------------------------- /Zom/Zom/ZomTransferOwnershipViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/ZomTransferOwnershipViewController.swift -------------------------------------------------------------------------------- /Zom/Zom/ZomTransferOwnershipViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/ZomTransferOwnershipViewController.xib -------------------------------------------------------------------------------- /Zom/Zom/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/bo.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/bo.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/bo.lproj/ZomBots.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/bo.lproj/ZomBots.plist -------------------------------------------------------------------------------- /Zom/Zom/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/da-DK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/da-DK.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/fa-IR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/fa-IR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/nb-NO.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/nb-NO.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/nl-NL.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/nl-NL.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/ro-RO.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/ro-RO.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/sl-SI.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/sl-SI.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/Zom/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/uz.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Zom/Zom/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/zh-Hans-CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/zh-Hans-CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/zh-Hans-CN.lproj/ZomBots.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/zh-Hans-CN.lproj/ZomBots.plist -------------------------------------------------------------------------------- /Zom/Zom/zh-Hant-TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/zh-Hant-TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zom/Zom/zh-Hant-TW.lproj/ZomBots.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/Zom/zh-Hant-TW.lproj/ZomBots.plist -------------------------------------------------------------------------------- /Zom/after_upstream_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/after_upstream_update.sh -------------------------------------------------------------------------------- /Zom/convert_android_strings_to_ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/convert_android_strings_to_ios.sh -------------------------------------------------------------------------------- /Zom/copy_podfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/copy_podfile.sh -------------------------------------------------------------------------------- /Zom/license_plist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/license_plist.yml -------------------------------------------------------------------------------- /Zom/license_plist.zom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/license_plist.zom -------------------------------------------------------------------------------- /Zom/scripts/genstrings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/scripts/genstrings.sh -------------------------------------------------------------------------------- /Zom/scripts/stringtool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/scripts/stringtool.sh -------------------------------------------------------------------------------- /Zom/scripts/use_android_strings_in_zom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/scripts/use_android_strings_in_zom.sh -------------------------------------------------------------------------------- /Zom/update_licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zom/Zom-iOS-XMPP/HEAD/Zom/update_licenses.sh --------------------------------------------------------------------------------