├── .env.sample ├── .github └── workflows │ ├── main.yml │ └── pull_request.yml ├── .gitignore ├── .swift-format ├── App ├── Generated │ ├── ReMafoX.swift │ └── SwiftGen │ │ ├── Assets.swift │ │ └── Storyboards.swift ├── Resources │ ├── Audio │ │ └── MovementSounds │ │ │ ├── C-Long │ │ │ ├── Baroque Organ.caf │ │ │ ├── Bleep City.caf │ │ │ ├── Erhu.caf │ │ │ ├── Flow Motion.caf │ │ │ ├── Grand Piano with Pad & Choir.caf │ │ │ ├── Infinite Space.caf │ │ │ ├── Persian Santoor.caf │ │ │ ├── Soft Waves.caf │ │ │ ├── Turkish Saz Zither.caf │ │ │ └── Tweed Picked Synth.caf │ │ │ ├── C-Short │ │ │ ├── Baroque Organ.caf │ │ │ ├── Bleep City.caf │ │ │ ├── Erhu.caf │ │ │ ├── Flow Motion.caf │ │ │ ├── Grand Piano with Pad & Choir.caf │ │ │ ├── Infinite Space.caf │ │ │ ├── Persian Santoor.caf │ │ │ ├── Soft Waves.caf │ │ │ ├── Turkish Saz Zither.caf │ │ │ └── Tweed Picked Synth.caf │ │ │ ├── E-Long │ │ │ ├── Baroque Organ.caf │ │ │ ├── Bleep City.caf │ │ │ ├── Erhu.caf │ │ │ ├── Flow Motion.caf │ │ │ ├── Grand Piano with Pad & Choir.caf │ │ │ ├── Infinite Space.caf │ │ │ ├── Persian Santoor.caf │ │ │ ├── Soft Waves.caf │ │ │ ├── Turkish Saz Zither.caf │ │ │ └── Tweed Picked Synth.caf │ │ │ ├── E-Short │ │ │ ├── Baroque Organ.caf │ │ │ ├── Bleep City.caf │ │ │ ├── Erhu.caf │ │ │ ├── Flow Motion.caf │ │ │ ├── Grand Piano with Pad & Choir.caf │ │ │ ├── Infinite Space.caf │ │ │ ├── Persian Santoor.caf │ │ │ ├── Soft Waves.caf │ │ │ ├── Turkish Saz Zither.caf │ │ │ └── Tweed Picked Synth.caf │ │ │ └── G-Short │ │ │ ├── Baroque Organ.caf │ │ │ ├── Bleep City.caf │ │ │ ├── Erhu.caf │ │ │ ├── Flow Motion.caf │ │ │ ├── Grand Piano with Pad & Choir.caf │ │ │ ├── Infinite Space.caf │ │ │ ├── Persian Santoor.caf │ │ │ ├── Soft Waves.caf │ │ │ ├── Turkish Saz Zither.caf │ │ │ └── Tweed Picked Synth.caf │ ├── Colors.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── ContentBackground.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Primary.colorset │ │ │ └── Contents.json │ │ └── Secondary.colorset │ │ │ └── Contents.json │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83.5@2x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── Logo.png │ │ │ ├── NotificationIcon@2x.png │ │ │ ├── NotificationIcon@3x.png │ │ │ ├── NotificationIcon~ipad.png │ │ │ └── NotificationIcon~ipad@2x.png │ │ ├── Contents.json │ │ ├── LaunchScreen │ │ │ ├── Background.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-DarkBackground.png │ │ │ │ └── LaunchScreen-LightBackground.png │ │ │ ├── Contents.json │ │ │ └── Logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Logo~universal@1x-1.png │ │ │ │ ├── Logo~universal@1x.png │ │ │ │ ├── Logo~universal@2x-1.png │ │ │ │ ├── Logo~universal@2x.png │ │ │ │ ├── Logo~universal@3x-1.png │ │ │ │ └── Logo~universal@3x.png │ │ └── Prayer │ │ │ ├── Contents.json │ │ │ ├── separator-compact.imageset │ │ │ ├── Contents.json │ │ │ ├── separator-compact~universal@1x.png │ │ │ ├── separator-compact~universal@2x.png │ │ │ └── separator-compact~universal@3x.png │ │ │ └── separator.imageset │ │ │ ├── Contents.json │ │ │ ├── separator~universal@1x.png │ │ │ ├── separator~universal@2x.png │ │ │ └── separator~universal@3x.png │ ├── Recitations │ │ ├── de.lproj │ │ │ ├── 001.txt │ │ │ ├── 055.txt │ │ │ ├── 056.txt │ │ │ ├── 057.txt │ │ │ ├── 058.txt │ │ │ ├── 059.txt │ │ │ ├── 060.txt │ │ │ ├── 061.txt │ │ │ ├── 062.txt │ │ │ ├── 063.txt │ │ │ ├── 064.txt │ │ │ ├── 065.txt │ │ │ ├── 066.txt │ │ │ ├── 067.txt │ │ │ ├── 068.txt │ │ │ ├── 069.txt │ │ │ ├── 070.txt │ │ │ ├── 071.txt │ │ │ ├── 072.txt │ │ │ ├── 073.txt │ │ │ ├── 074.txt │ │ │ ├── 075.txt │ │ │ ├── 076.txt │ │ │ ├── 077.txt │ │ │ ├── 078.txt │ │ │ ├── 079.txt │ │ │ ├── 080.txt │ │ │ ├── 081.txt │ │ │ ├── 082.txt │ │ │ ├── 083.txt │ │ │ ├── 084.txt │ │ │ ├── 085.txt │ │ │ ├── 086.txt │ │ │ ├── 087.txt │ │ │ ├── 088.txt │ │ │ ├── 089.txt │ │ │ ├── 090.txt │ │ │ ├── 091.txt │ │ │ ├── 092.txt │ │ │ ├── 093.txt │ │ │ ├── 094.txt │ │ │ ├── 095.txt │ │ │ ├── 096.txt │ │ │ ├── 097.txt │ │ │ ├── 098.txt │ │ │ ├── 099.txt │ │ │ ├── 100.txt │ │ │ ├── 101.txt │ │ │ ├── 102.txt │ │ │ ├── 103.txt │ │ │ ├── 104.txt │ │ │ ├── 105.txt │ │ │ ├── 106.txt │ │ │ ├── 107.txt │ │ │ ├── 108.txt │ │ │ ├── 109.txt │ │ │ ├── 110.txt │ │ │ ├── 111.txt │ │ │ ├── 112.txt │ │ │ ├── 113.txt │ │ │ └── 114.txt │ │ ├── en.lproj │ │ │ ├── 001.txt │ │ │ ├── 055.txt │ │ │ ├── 056.txt │ │ │ ├── 057.txt │ │ │ ├── 058.txt │ │ │ ├── 059.txt │ │ │ ├── 060.txt │ │ │ ├── 061.txt │ │ │ ├── 062.txt │ │ │ ├── 063.txt │ │ │ ├── 064.txt │ │ │ ├── 065.txt │ │ │ ├── 066.txt │ │ │ ├── 067.txt │ │ │ ├── 068.txt │ │ │ ├── 069.txt │ │ │ ├── 070.txt │ │ │ ├── 071.txt │ │ │ ├── 072.txt │ │ │ ├── 073.txt │ │ │ ├── 074.txt │ │ │ ├── 075.txt │ │ │ ├── 076.txt │ │ │ ├── 077.txt │ │ │ ├── 078.txt │ │ │ ├── 079.txt │ │ │ ├── 080.txt │ │ │ ├── 081.txt │ │ │ ├── 082.txt │ │ │ ├── 083.txt │ │ │ ├── 084.txt │ │ │ ├── 085.txt │ │ │ ├── 086.txt │ │ │ ├── 087.txt │ │ │ ├── 088.txt │ │ │ ├── 089.txt │ │ │ ├── 090.txt │ │ │ ├── 091.txt │ │ │ ├── 092.txt │ │ │ ├── 093.txt │ │ │ ├── 094.txt │ │ │ ├── 095.txt │ │ │ ├── 096.txt │ │ │ ├── 097.txt │ │ │ ├── 098.txt │ │ │ ├── 099.txt │ │ │ ├── 100.txt │ │ │ ├── 101.txt │ │ │ ├── 102.txt │ │ │ ├── 103.txt │ │ │ ├── 104.txt │ │ │ ├── 105.txt │ │ │ ├── 106.txt │ │ │ ├── 107.txt │ │ │ ├── 108.txt │ │ │ ├── 109.txt │ │ │ ├── 110.txt │ │ │ ├── 111.txt │ │ │ ├── 112.txt │ │ │ ├── 113.txt │ │ │ └── 114.txt │ │ └── tr.lproj │ │ │ ├── 001.txt │ │ │ ├── 055.txt │ │ │ ├── 056.txt │ │ │ ├── 057.txt │ │ │ ├── 058.txt │ │ │ ├── 059.txt │ │ │ ├── 060.txt │ │ │ ├── 061.txt │ │ │ ├── 062.txt │ │ │ ├── 063.txt │ │ │ ├── 064.txt │ │ │ ├── 065.txt │ │ │ ├── 066.txt │ │ │ ├── 067.txt │ │ │ ├── 068.txt │ │ │ ├── 069.txt │ │ │ ├── 070.txt │ │ │ ├── 071.txt │ │ │ ├── 072.txt │ │ │ ├── 073.txt │ │ │ ├── 074.txt │ │ │ ├── 075.txt │ │ │ ├── 076.txt │ │ │ ├── 077.txt │ │ │ ├── 078.txt │ │ │ ├── 079.txt │ │ │ ├── 080.txt │ │ │ ├── 081.txt │ │ │ ├── 082.txt │ │ │ ├── 083.txt │ │ │ ├── 084.txt │ │ │ ├── 085.txt │ │ │ ├── 086.txt │ │ │ ├── 087.txt │ │ │ ├── 088.txt │ │ │ ├── 089.txt │ │ │ ├── 090.txt │ │ │ ├── 091.txt │ │ │ ├── 092.txt │ │ │ ├── 093.txt │ │ │ ├── 094.txt │ │ │ ├── 095.txt │ │ │ ├── 096.txt │ │ │ ├── 097.txt │ │ │ ├── 098.txt │ │ │ ├── 099.txt │ │ │ ├── 100.txt │ │ │ ├── 101.txt │ │ │ ├── 102.txt │ │ │ ├── 103.txt │ │ │ ├── 104.txt │ │ │ ├── 105.txt │ │ │ ├── 106.txt │ │ │ ├── 107.txt │ │ │ ├── 108.txt │ │ │ ├── 109.txt │ │ │ ├── 110.txt │ │ │ ├── 111.txt │ │ │ ├── 112.txt │ │ │ ├── 113.txt │ │ │ └── 114.txt │ ├── SpokenTexts │ │ ├── de.lproj │ │ │ ├── Opening-Supplication.txt │ │ │ ├── Rabbanagh.txt │ │ │ ├── Ruku.txt │ │ │ ├── Sajdah.txt │ │ │ ├── Salam.txt │ │ │ ├── Salatul-Ibrahimiyyah.txt │ │ │ ├── Straightening-Up.txt │ │ │ ├── Taawwudh.txt │ │ │ ├── Takbir.txt │ │ │ └── Tashahhud.txt │ │ ├── en.lproj │ │ │ ├── Opening-Supplication.txt │ │ │ ├── Rabbanagh.txt │ │ │ ├── Ruku.txt │ │ │ ├── Sajdah.txt │ │ │ ├── Salam.txt │ │ │ ├── Salatul-Ibrahimiyyah.txt │ │ │ ├── Straightening-Up.txt │ │ │ ├── Taawwudh.txt │ │ │ ├── Takbir.txt │ │ │ └── Tashahhud.txt │ │ └── tr.lproj │ │ │ ├── Opening-Supplication.txt │ │ │ ├── Rabbanagh.txt │ │ │ ├── Ruku.txt │ │ │ ├── Sajdah.txt │ │ │ ├── Salam.txt │ │ │ ├── Salatul-Ibrahimiyyah.txt │ │ │ ├── Straightening-Up.txt │ │ │ ├── Taawwudh.txt │ │ │ ├── Takbir.txt │ │ │ └── Tashahhud.txt │ ├── de.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ └── tr.lproj │ │ └── Localizable.strings ├── Sources │ ├── AppDelegate.swift │ ├── Globals │ │ ├── AudioPlayer.swift │ │ ├── Countdown.swift │ │ ├── ErrorHandler.swift │ │ ├── Extensions │ │ │ ├── DefaultsSerializableExt.swift │ │ │ └── UIViewControllerExt.swift │ │ ├── Logger.swift │ │ └── SpeechSynthesizer.swift │ ├── Models │ │ ├── AudioMode.swift │ │ ├── MovementSound.swift │ │ ├── Position.swift │ │ ├── Prayer.swift │ │ ├── PrayerState.swift │ │ ├── Rakah.swift │ │ ├── RakahComponent.swift │ │ ├── Recitation.swift │ │ ├── RecitationPart.swift │ │ └── SoundInstrument.swift │ └── ScreenFlows │ │ ├── Prayer │ │ ├── Base.lproj │ │ │ └── PrayerView.storyboard │ │ ├── PrayerFlowController.swift │ │ ├── PrayerViewController.swift │ │ └── PrayerViewModel.swift │ │ └── Settings │ │ ├── AudioVolumeView.swift │ │ ├── FAQCollectionViewCell.swift │ │ ├── FAQCollectionViewLayout.swift │ │ ├── FAQViewController.swift │ │ ├── FAQViewModel.swift │ │ ├── Settings.storyboard │ │ ├── SettingsFlowController.swift │ │ ├── SettingsViewController.swift │ │ └── SettingsViewModel.swift └── SupportingFiles │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── de.lproj │ └── LaunchScreen.strings │ ├── en.lproj │ └── LaunchScreen.strings │ └── tr.lproj │ └── LaunchScreen.strings ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── Logo.png ├── Prayer.remafox ├── Prayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved ├── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ │ └── App.xcscheme └── xcuserdata │ └── Privat.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── README.md ├── Scripts ├── ci.swift ├── deps.swift ├── project.swift └── tools.swift ├── Swiftgen-xcassets.stencil ├── Tests ├── Sources │ └── Models │ │ ├── PrayerTests.swift │ │ ├── RakahComponentTests.swift │ │ └── RakahTests.swift └── SupportingFiles │ └── Info.plist ├── UITests ├── Sources │ └── AppStoreSnapshotUITests.swift └── SupportingFiles │ ├── Info.plist │ └── SnapshotHelper.swift ├── fastlane ├── Appfile ├── Deliverfile ├── Fastfile ├── Matchfile ├── README.md ├── Snapfile └── metadata │ ├── de-DE │ ├── description.txt │ ├── release_notes.txt │ └── subtitle.txt │ ├── en-US │ ├── description.txt │ ├── release_notes.txt │ └── subtitle.txt │ ├── primary_category.txt │ ├── secondary_category.txt │ └── tr │ ├── description.txt │ ├── release_notes.txt │ └── subtitle.txt └── swiftgen.yml /.env.sample: -------------------------------------------------------------------------------- 1 | APPLE_ID= 2 | DEV_PORTAL_TEAM_ID= 3 | ITC_TEAM_ID= 4 | MATCH_GIT_URL= 5 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Main 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | 7 | jobs: 8 | tests: 9 | runs-on: macos-11 10 | 11 | steps: 12 | - uses: actions/checkout@v2 13 | 14 | - name: Build & Run Tests 15 | run: xcodebuild test -scheme App -destination 'platform=iOS Simulator,name=iPad Air (4th generation),OS=latest' 16 | -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- 1 | name: Pull Request 2 | 3 | on: 4 | pull_request: 5 | branches: [main] 6 | 7 | jobs: 8 | cancel-previous-runs: 9 | runs-on: ubuntu-latest 10 | 11 | steps: 12 | - name: Cancel previous runs of this workflow on same branch 13 | uses: rokroskar/workflow-run-cleanup-action@v0.2.2 14 | env: 15 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 16 | 17 | tests: 18 | runs-on: macos-11 19 | 20 | steps: 21 | - uses: actions/checkout@v2 22 | 23 | - name: Build & Run Tests 24 | run: xcodebuild test -scheme App -destination 'platform=iOS Simulator,name=iPad Air (4th generation),OS=latest' 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## macOS 2 | # General 3 | .DS_Store 4 | .AppleDouble 5 | .LSOverride 6 | 7 | # Icon must end with two \r 8 | Icon 9 | 10 | 11 | # Thumbnails 12 | ._* 13 | 14 | # Files that might appear in the root of a volume 15 | .DocumentRevisions-V100 16 | .fseventsd 17 | .Spotlight-V100 18 | .TemporaryItems 19 | .Trashes 20 | .VolumeIcon.icns 21 | .com.apple.timemachine.donotpresent 22 | 23 | # Directories potentially created on remote AFP share 24 | .AppleDB 25 | .AppleDesktop 26 | Network Trash Folder 27 | Temporary Items 28 | .apdisk 29 | 30 | # Xcode 31 | # 32 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 33 | 34 | ## Build generated 35 | build/ 36 | DerivedData/ 37 | 38 | ## Various settings 39 | *.pbxuser 40 | !default.pbxuser 41 | *.mode1v3 42 | !default.mode1v3 43 | *.mode2v3 44 | !default.mode2v3 45 | *.perspectivev3 46 | !default.perspectivev3 47 | xcuserdata/ 48 | 49 | ## Other 50 | *.moved-aside 51 | *.xcuserstate 52 | 53 | ## Obj-C/Swift specific 54 | *.hmap 55 | *.ipa 56 | *.dSYM.zip 57 | *.dSYM 58 | 59 | ## Playgrounds 60 | timeline.xctimeline 61 | playground.xcworkspace 62 | 63 | # Swift Package Manager 64 | # 65 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 66 | # Packages/ 67 | .build/ 68 | 69 | # CocoaPods 70 | # 71 | # We recommend against adding the Pods directory to your .gitignore. However 72 | # you should judge for yourself, the pros and cons are mentioned at: 73 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 74 | # 75 | # Pods/ 76 | 77 | # Carthage 78 | # 79 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 80 | Carthage/Checkouts 81 | Carthage/Build 82 | 83 | # fastlane 84 | # 85 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 86 | # screenshots whenever they are needed. 87 | # For more information about the recommended setup visit: 88 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 89 | 90 | fastlane/report.xml 91 | Preview.html 92 | fastlane/Preview.html 93 | fastlane/screenshots 94 | fastlane/test_output 95 | fastlane/metadata/review_information 96 | .env 97 | Gemfile.lock 98 | -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- 1 | { 2 | "fileScopedDeclarationPrivacy" : { 3 | "accessLevel" : "private" 4 | }, 5 | "indentation" : { 6 | "spaces" : 3 7 | }, 8 | "indentConditionalCompilationBlocks" : true, 9 | "indentSwitchCaseLabels" : false, 10 | "lineBreakAroundMultilineExpressionChainComponents" : false, 11 | "lineBreakBeforeControlFlowKeywords" : false, 12 | "lineBreakBeforeEachArgument" : false, 13 | "lineBreakBeforeEachGenericRequirement" : false, 14 | "lineLength" : 150, 15 | "maximumBlankLines" : 1, 16 | "prioritizeKeepingFunctionOutputTogether" : false, 17 | "respectsExistingLineBreaks" : true, 18 | "rules" : { 19 | "AllPublicDeclarationsHaveDocumentation" : false, 20 | "AlwaysUseLowerCamelCase" : true, 21 | "AmbiguousTrailingClosureOverload" : true, 22 | "BeginDocumentationCommentWithOneLineSummary" : false, 23 | "DoNotUseSemicolons" : true, 24 | "DontRepeatTypeInStaticProperties" : true, 25 | "FileScopedDeclarationPrivacy" : true, 26 | "FullyIndirectEnum" : true, 27 | "GroupNumericLiterals" : true, 28 | "IdentifiersMustBeASCII" : true, 29 | "NeverForceUnwrap" : false, 30 | "NeverUseForceTry" : false, 31 | "NeverUseImplicitlyUnwrappedOptionals" : false, 32 | "NoAccessLevelOnExtensionDeclaration" : true, 33 | "NoBlockComments" : true, 34 | "NoCasesWithOnlyFallthrough" : true, 35 | "NoEmptyTrailingClosureParentheses" : true, 36 | "NoLabelsInCasePatterns" : true, 37 | "NoLeadingUnderscores" : false, 38 | "NoParensAroundConditions" : true, 39 | "NoVoidReturnOnFunctionSignature" : true, 40 | "OneCasePerLine" : true, 41 | "OneVariableDeclarationPerLine" : true, 42 | "OnlyOneTrailingClosureArgument" : true, 43 | "OrderedImports" : true, 44 | "ReturnVoidInsteadOfEmptyTuple" : true, 45 | "UseEarlyExits" : false, 46 | "UseLetInEveryBoundCaseVariable" : true, 47 | "UseShorthandTypeNames" : true, 48 | "UseSingleLinePropertyGetter" : true, 49 | "UseSynthesizedInitializer" : true, 50 | "UseTripleSlashForDocumentationComments" : true, 51 | "UseWhereClausesInForLoops" : false, 52 | "ValidateDocumentationComments" : false 53 | }, 54 | "tabWidth" : 8, 55 | "version" : 1 56 | } 57 | -------------------------------------------------------------------------------- /App/Generated/SwiftGen/Assets.swift: -------------------------------------------------------------------------------- 1 | // swiftlint:disable all 2 | // Generated using SwiftGen — https://github.com/SwiftGen/SwiftGen 3 | 4 | #if os(OSX) 5 | import AppKit.NSImage 6 | #elseif os(iOS) || os(tvOS) || os(watchOS) 7 | import UIKit.UIImage 8 | #endif 9 | 10 | 11 | internal typealias Colors = Asset.Colors 12 | internal typealias Images = Asset.Images 13 | 14 | internal enum Asset { 15 | internal enum Colors { 16 | internal static let accentColor = UIColor(named: "AccentColor", in: Bundle(for: BundleToken.self), compatibleWith: nil)! 17 | internal static let contentBackground = UIColor(named: "ContentBackground", in: Bundle(for: BundleToken.self), compatibleWith: nil)! 18 | internal static let primary = UIColor(named: "Primary", in: Bundle(for: BundleToken.self), compatibleWith: nil)! 19 | internal static let secondary = UIColor(named: "Secondary", in: Bundle(for: BundleToken.self), compatibleWith: nil)! 20 | } 21 | internal enum Images { 22 | internal static let background = UIImage(named: "Background", in: Bundle(for: BundleToken.self), compatibleWith: nil)! 23 | internal static let logo = UIImage(named: "Logo", in: Bundle(for: BundleToken.self), compatibleWith: nil)! 24 | internal static let separatorCompact = UIImage(named: "separator-compact", in: Bundle(for: BundleToken.self), compatibleWith: nil)! 25 | internal static let separator = UIImage(named: "separator", in: Bundle(for: BundleToken.self), compatibleWith: nil)! 26 | } 27 | } 28 | 29 | 30 | private final class BundleToken {} 31 | -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Long/Baroque Organ.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Long/Baroque Organ.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Long/Bleep City.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Long/Bleep City.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Long/Erhu.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Long/Erhu.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Long/Flow Motion.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Long/Flow Motion.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Long/Grand Piano with Pad & Choir.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Long/Grand Piano with Pad & Choir.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Long/Infinite Space.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Long/Infinite Space.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Long/Persian Santoor.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Long/Persian Santoor.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Long/Soft Waves.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Long/Soft Waves.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Long/Turkish Saz Zither.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Long/Turkish Saz Zither.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Long/Tweed Picked Synth.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Long/Tweed Picked Synth.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Short/Baroque Organ.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Short/Baroque Organ.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Short/Bleep City.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Short/Bleep City.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Short/Erhu.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Short/Erhu.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Short/Flow Motion.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Short/Flow Motion.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Short/Grand Piano with Pad & Choir.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Short/Grand Piano with Pad & Choir.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Short/Infinite Space.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Short/Infinite Space.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Short/Persian Santoor.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Short/Persian Santoor.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Short/Soft Waves.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Short/Soft Waves.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Short/Turkish Saz Zither.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Short/Turkish Saz Zither.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/C-Short/Tweed Picked Synth.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/C-Short/Tweed Picked Synth.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Long/Baroque Organ.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Long/Baroque Organ.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Long/Bleep City.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Long/Bleep City.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Long/Erhu.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Long/Erhu.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Long/Flow Motion.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Long/Flow Motion.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Long/Grand Piano with Pad & Choir.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Long/Grand Piano with Pad & Choir.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Long/Infinite Space.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Long/Infinite Space.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Long/Persian Santoor.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Long/Persian Santoor.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Long/Soft Waves.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Long/Soft Waves.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Long/Turkish Saz Zither.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Long/Turkish Saz Zither.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Long/Tweed Picked Synth.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Long/Tweed Picked Synth.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Short/Baroque Organ.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Short/Baroque Organ.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Short/Bleep City.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Short/Bleep City.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Short/Erhu.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Short/Erhu.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Short/Flow Motion.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Short/Flow Motion.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Short/Grand Piano with Pad & Choir.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Short/Grand Piano with Pad & Choir.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Short/Infinite Space.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Short/Infinite Space.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Short/Persian Santoor.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Short/Persian Santoor.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Short/Soft Waves.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Short/Soft Waves.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Short/Turkish Saz Zither.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Short/Turkish Saz Zither.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/E-Short/Tweed Picked Synth.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/E-Short/Tweed Picked Synth.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/G-Short/Baroque Organ.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/G-Short/Baroque Organ.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/G-Short/Bleep City.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/G-Short/Bleep City.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/G-Short/Erhu.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/G-Short/Erhu.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/G-Short/Flow Motion.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/G-Short/Flow Motion.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/G-Short/Grand Piano with Pad & Choir.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/G-Short/Grand Piano with Pad & Choir.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/G-Short/Infinite Space.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/G-Short/Infinite Space.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/G-Short/Persian Santoor.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/G-Short/Persian Santoor.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/G-Short/Soft Waves.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/G-Short/Soft Waves.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/G-Short/Turkish Saz Zither.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/G-Short/Turkish Saz Zither.caf -------------------------------------------------------------------------------- /App/Resources/Audio/MovementSounds/G-Short/Tweed Picked Synth.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Audio/MovementSounds/G-Short/Tweed Picked Synth.caf -------------------------------------------------------------------------------- /App/Resources/Colors.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x80", 9 | "green" : "0x64", 10 | "red" : "0x17" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0xCC", 27 | "green" : "0xC2", 28 | "red" : "0xA6" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /App/Resources/Colors.xcassets/ContentBackground.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xF1", 9 | "green" : "0xEB", 10 | "red" : "0xE6" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0.102", 27 | "green" : "0.043", 28 | "red" : "0.000" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /App/Resources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /App/Resources/Colors.xcassets/Primary.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.102", 9 | "green" : "0.043", 10 | "red" : "0.000" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0.949", 27 | "green" : "0.922", 28 | "red" : "0.902" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /App/Resources/Colors.xcassets/Secondary.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x80", 9 | "green" : "0x63", 10 | "red" : "0x16" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0xCC", 27 | "green" : "0xC2", 28 | "red" : "0xA6" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-72.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/Logo.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/NotificationIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/NotificationIcon@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/NotificationIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/NotificationIcon@3x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "LaunchScreen-LightBackground.png", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "LaunchScreen-DarkBackground.png", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Background.imageset/LaunchScreen-DarkBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/LaunchScreen/Background.imageset/LaunchScreen-DarkBackground.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Background.imageset/LaunchScreen-LightBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/LaunchScreen/Background.imageset/LaunchScreen-LightBackground.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Logo~universal@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "appearances" : [ 10 | { 11 | "appearance" : "luminosity", 12 | "value" : "dark" 13 | } 14 | ], 15 | "filename" : "Logo~universal@1x-1.png", 16 | "idiom" : "universal", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "Logo~universal@2x.png", 21 | "idiom" : "universal", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "appearances" : [ 26 | { 27 | "appearance" : "luminosity", 28 | "value" : "dark" 29 | } 30 | ], 31 | "filename" : "Logo~universal@2x-1.png", 32 | "idiom" : "universal", 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "Logo~universal@3x.png", 37 | "idiom" : "universal", 38 | "scale" : "3x" 39 | }, 40 | { 41 | "appearances" : [ 42 | { 43 | "appearance" : "luminosity", 44 | "value" : "dark" 45 | } 46 | ], 47 | "filename" : "Logo~universal@3x-1.png", 48 | "idiom" : "universal", 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@1x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@1x-1.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@1x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@2x-1.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@3x-1.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/LaunchScreen/Logo.imageset/Logo~universal@3x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/Prayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/Prayer/separator-compact.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "separator-compact~universal@1x.png", 5 | "idiom" : "universal", 6 | "resizing" : { 7 | "cap-insets" : { 8 | "left" : 44, 9 | "right" : 44 10 | }, 11 | "center" : { 12 | "mode" : "tile", 13 | "width" : 8 14 | }, 15 | "mode" : "3-part-horizontal" 16 | }, 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "separator-compact~universal@2x.png", 21 | "idiom" : "universal", 22 | "resizing" : { 23 | "cap-insets" : { 24 | "left" : 88, 25 | "right" : 86 26 | }, 27 | "center" : { 28 | "mode" : "tile", 29 | "width" : 18 30 | }, 31 | "mode" : "3-part-horizontal" 32 | }, 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "separator-compact~universal@3x.png", 37 | "idiom" : "universal", 38 | "resizing" : { 39 | "cap-insets" : { 40 | "left" : 133, 41 | "right" : 129 42 | }, 43 | "center" : { 44 | "mode" : "tile", 45 | "width" : 26 46 | }, 47 | "mode" : "3-part-horizontal" 48 | }, 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | }, 56 | "properties" : { 57 | "template-rendering-intent" : "template" 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/Prayer/separator-compact.imageset/separator-compact~universal@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/Prayer/separator-compact.imageset/separator-compact~universal@1x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/Prayer/separator-compact.imageset/separator-compact~universal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/Prayer/separator-compact.imageset/separator-compact~universal@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/Prayer/separator-compact.imageset/separator-compact~universal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/Prayer/separator-compact.imageset/separator-compact~universal@3x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/Prayer/separator.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "separator~universal@1x.png", 5 | "idiom" : "universal", 6 | "resizing" : { 7 | "cap-insets" : { 8 | "left" : 112, 9 | "right" : 107 10 | }, 11 | "center" : { 12 | "mode" : "tile", 13 | "width" : 22 14 | }, 15 | "mode" : "3-part-horizontal" 16 | }, 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "separator~universal@2x.png", 21 | "idiom" : "universal", 22 | "resizing" : { 23 | "cap-insets" : { 24 | "left" : 221, 25 | "right" : 220 26 | }, 27 | "center" : { 28 | "mode" : "tile", 29 | "width" : 41 30 | }, 31 | "mode" : "3-part-horizontal" 32 | }, 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "separator~universal@3x.png", 37 | "idiom" : "universal", 38 | "resizing" : { 39 | "cap-insets" : { 40 | "left" : 334, 41 | "right" : 329 42 | }, 43 | "center" : { 44 | "mode" : "tile", 45 | "width" : 60 46 | }, 47 | "mode" : "3-part-horizontal" 48 | }, 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | }, 56 | "properties" : { 57 | "template-rendering-intent" : "template" 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/Prayer/separator.imageset/separator~universal@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/Prayer/separator.imageset/separator~universal@1x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/Prayer/separator.imageset/separator~universal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/Prayer/separator.imageset/separator~universal@2x.png -------------------------------------------------------------------------------- /App/Resources/Images.xcassets/Prayer/separator.imageset/separator~universal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/App/Resources/Images.xcassets/Prayer/separator.imageset/separator~universal@3x.png -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/001.txt: -------------------------------------------------------------------------------- 1 | Im Namen Gottes, des Allergnädigsten, des Gnadenspenders: 2 | Aller Preis gebührt Gott allein, dem Erhalter aller Welten, 3 | dem Allergnädigsten, dem Gnadenspender, 4 | dem Herrn des Tages des Gerichts! 5 | Dich allein beten wir an: und zu Dir allein wenden wir uns um Hilfe. 6 | Leite uns den geraden Weg – 7 | den Weg jener, denen Du Deine Segnungen erteilt hast, 8 | nicht jener, die (von Dir) verdammt wurden, 9 | noch jener, die irregehen! 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/080.txt: -------------------------------------------------------------------------------- 1 | Er runzelte die Stirn und wandte sich ab, 2 | weil der Blinde zu ihm kam! 3 | Doch bei allem, was du wusstest, (o Muhammad,) er wäre vielleicht an Reinheit gewachsen 4 | oder er hätte (an die Wahrheit) erinnert werden können 5 | und ihm hätte durch diese Erinnerung geholfen werden können. 6 | Was nun den angeht, der sich für selbstgenügend hält 7 | – ihm hast du deine ganze Aufmerksamkeit gegeben, 8 | obwohl du nicht verantwortlich bist für sein Versagen, Reinheit zu erlangen; 9 | aber was den angeht, der voller Eifer zu dir kam 10 | und in Ehrfurcht (vor Gott) 11 | – den hast du missachtet! 12 | ⁋ 13 | Nein, wahrlich, diese (Botschaften) sind nur eine Erinnerung: 14 | und so mag, wer immer willens ist, Seiner gedenken 15 | in (dem Licht Seiner) mit Würde gesegneten Offenbarungen, 16 | erhabenen und reinen, 17 | (getragen) durch die Hände von Boten, 18 | edlen und höchst tugendhaften. 19 | (Aber nur allzu oft) vernichtet der Mensch sich selbst: 20 | wir starrköpfig leugnet er die Wahrheit! 21 | (Betrachtet der Mensch jemals,) aus was für einem Stoff (Gott) ihn erschafft? 22 | Aus einem Samentropfen erschafft Er ihn, und daraufhin bestimmt er seine Natur, 23 | und dann macht Er es leicht für ihn, durch das Leben zu gehen; 24 | und am Ende lässt Er ihn sterben und bringt ihn ins Grab; 25 | und dann, wenn es Sein Wille ist, wird Er ihn wieder zum Leben auferwecken. 26 | ⁋ 27 | Nein, aber (der Mensch) hat noch niemals erfüllt, was Er ihm geboten hat! 28 | So soll der Mensch (die Ursprünge) seiner Nahrung betrachten: 29 | (wie es kommt,) dass Wir Wasser herabgießen, es in Fülle herabgießend; 30 | und dann spalten Wir die Erde (mit neuem Wachstum), sie auseinanderspaltend, 31 | und daraufhin lassen Wir aus ihr Korn wachsen, 32 | und Rebstöcke und essbare Pflanzen, 33 | und Olivenbäume und Dattelpalmen, 34 | und Gärten mit dichtem Blattwerk, 35 | und Früchte und Kräuter, 36 | für euch und für euer Vieh zum Genuss. 37 | ⁋ 38 | Und so, wenn der durchdringende Ruf (der Auferstehung) gehört wird 39 | an einem Tag, da jeder von seinem Bruder wird fliehen (wollen) 40 | und von seiner Mutter und seinem Vater 41 | und von seinem Ehepartner und seinen Kindern: 42 | an jenem Tag wird für jeden von ihnen seine eigene Lage genug Sorge sein. 43 | Manche Gesichter werden an jenem Tag strahlend vor Glückseligkeit sein, 44 | lachend, sich freuend über frohe Kunde. 45 | Und manche Gesichter werden an jenem Tag mit Staub bedeckt sein, 46 | mit Finsternis überzogen: 47 | diese, diese werden diejenigen sein, 48 | welche die Wahrheit leugneten und in Frevelhaftigkeit versunken waren. 49 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/081.txt: -------------------------------------------------------------------------------- 1 | Wenn die Sonne in Finsternis gehüllt ist, 2 | und wenn die Sterne ihr Licht verlieren, 3 | und wenn die Berge zum Verschwinden gebracht werden, 4 | und wenn trächtige, kurz vor der Geburt stehende Kamelstuten unbehütet gelassen werden, 5 | und wenn alle Tiere zusammen versammelt werden, 6 | und wenn die Meere überkochen, 7 | und wenn alle Menschen (mit ihren Taten) gepaart werden, 8 | und wenn das Mädchen, das lebendig begraben wurde, veranlasst wird zu fragen, 9 | für welches Verbrechen es getötet wurde, 10 | und wenn die Schriftrollen (der Taten der Menschen) aufgeschlagen werden, 11 | und wenn der Himmel bloßgelegt wird, 12 | und wenn das lodernde Feuer (der Hölle) hell entfacht wird, 13 | und wenn das Paradies in Sicht gebracht wird: 14 | (an jenem Tag) wird jeder Mensch erfahren, was er (für sich selbst) vorbereitet hat. 15 | ⁋ 16 | Aber nein! Ich rufe zu Zeugen die umlaufenden Sterne, 17 | die Planeten, die ihre Bahn ziehen und untergehen, 18 | und die Nacht, wie sie finster hereinbricht, 19 | und den Morgen, wie er sanft atmet: 20 | siehe, diese (göttliche Schrift) ist fürwahr das (eingegebene) Wort eines edlen Gesandten, 21 | mit Stärke versehen, sicher bei Ihm, der in Allmächtigkeit thront, 22 | (das Wort) eines, auf den acht zu geben ist, und des Vertrauens würdig! 23 | Denn dieser euer Mitmensch ist kein Verrückter: 24 | er sah wahrhaft (den Engel – sah) ihn am klaren Horizont; 25 | und er ist nicht einer, der anderen das Wissen missgönnt (von was immer ihm offenbart worden ist) von dem, 26 | was jenseits der Reichweite der menschlichen Wahrnehmung ist. 27 | Noch ist diese (Botschaft) das Wort irgendeiner verfluchten satanischen Kraft. 28 | Wohin denn wollt ihr gehen? 29 | Diese (Botschaft) ist nicht weniger als eine Erinnerung für alle Menschheit 30 | – an jeden von euch, der einen geraden Weg gehen will. 31 | Aber ihr könnt es nicht wollen, außer Gott, der Erhalter aller Welten, will (euch diesen Weg zeigen). 32 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/082.txt: -------------------------------------------------------------------------------- 1 | Wenn der Himmel auseinander gespalten ist, 2 | und wenn die Sterne verstreut sind, 3 | und wenn die Meere über ihre Grenzen ausbrechen, 4 | und wenn die Gräber umgestürzt sind – 5 | wird jeder Mensch (endlich) erfassen, was er vorausgeschickt hat 6 | und was er (in dieser Welt) zurückgehalten hat. 7 | O Mensch! Was ist es, das dich weglockt von deinem huldreichen Erhalter, 8 | der dich erschaffen hat und dich geformt hat in Übereinstimmung mit dem, 9 | was du sein sollst, und deine Natur in rechten Proportionen gebildet hat, 10 | und dich zusammengesetzt hat, in welcher Form Er (dich haben) wollte? 11 | ⁋ 12 | Nein, (o Menschen,) aber ihr (werdet weggelockt von Gott, 13 | wann immer ihr versucht werdet, Gottes) Gericht der Lüge zu zeihen! 14 | Und doch sind wahrlich immer wachsame Kräfte über euch, 15 | edle, verzeichnende, 16 | gewahr dessen, was immer ihr tut! 17 | Siehe, (im kommenden Leben) werden die wahrhaft Tugendhaften fürwahr in Seligkeit sein, 18 | während, siehe, die Ruchlosen fürwahr in einem lodernden Feuer sein werden 19 | – (ein Feuer,) in das sie am Gerichtstag eingehen werden, 20 | und dem sie nicht (zu) entgehen (fähig sein) werden. 21 | Und was könnte dich begreifen lassen, was der Gerichtstag sein wird? 22 | (Es wird sein) ein Tag, da kein Mensch einem anderen Menschen im geringsten nutzen wird: 23 | denn an jenem Tag (wird offenkundig werden, dass) alle Herrschaft Gottes allein ist. 24 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/084.txt: -------------------------------------------------------------------------------- 1 | Wenn der Himmel zerspalten ist, 2 | seinem Erhalter gehorchend, wie er in Wahrheit muss; 3 | und wenn die Erde eingeebnet ist, 4 | und auswirft, was immer in ihr ist, und völlig leer wird, 5 | ihrem Erhalter gehorchend, wie sie in Wahrheit muss: 6 | – (dann) o Mensch – du, (der) du wahrlich dich zu deinem Erhalter hin abgemüht hast in schmerzvoller Mühe 7 | – dann wirst du Ihm begegnen! 8 | Und was den angeht, dessen Verzeichnis in seine rechte Hand gegeben werden wird, 9 | er wird beizeiten zur Rechenschaft gezogen mit einer leichten Rechenschaft 10 | und wird (fähig sein,) sich freudig jenen seiner eignen Art zuzuwenden. 11 | Aber was den angeht, dessen Verzeichnis ihm hinter seinem Rücken gegeben werden wird, 12 | er wird beizeiten um völlige Vernichtung beten: 13 | aber er wird in die lodernde Flamme eingehen. 14 | Siehe, (in diesem irdischen Leben) lebte er freudig unter Leuten seiner eigenen Art, 15 | – denn, siehe, er dachte niemals, dass er (zu Gott) würde zurückkehren müssen. 16 | Ja, fürwahr! Sein Erhalter hat alles gesehen, was in ihm war! 17 | ⁋ 18 | Aber nein! Ich rufe zum Zeugen das (flüchtige) Abendrot des Sonnenuntergangs, 19 | und die Nacht und was sie (Schritt für Schritt) entfaltet, 20 | und den Mond, wie er zu seiner Fülle zunimmt: 21 | (ebenso, o Menschen,) werdet ihr euch bestimmt fortbewegen von Zustand zu Zustand. 22 | Was ist denn mit ihnen, dass sie nicht (an ein kommendes Leben) glauben wollen? 23 | – und (dass), wenn ihnen der Qur'an vorgelesen wird, sie nicht in Niederwerfung niederfallen? 24 | Nein, aber jene, die darauf aus sind, die Wahrheit zu leugnen, zeihen (diese göttliche Schrift) der Lüge! 25 | Doch Gott hat volles Wissen von dem, was sie (in ihren Herzen) verbergen. 26 | Darum gib ihnen die Kunde von schmerzlichem Leiden (im kommenden Leben) 27 | – außer es seien solche (von ihnen), die (bereuen und) Glauben erlangen 28 | und gute Werke tun: denn ihrer wird eine unendliche Belohnung sein! 29 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/085.txt: -------------------------------------------------------------------------------- 1 | Betrachte den Himmel voller großer Sternbilder, 2 | und (dann besinne dich auf) den versprochenen Tag, 3 | und (auf) Ihn, der (von allem) Zeuge ist, 4 | und (auf) das, von dem (durch Ihn) Zeugnis gegeben wird! 5 | Sie vernichten (nur) sich selbst, sie, die bereiten möchten einen Graben 6 | von Feuer, heftig brennend (für alle, die Glauben erlangt haben)! 7 | Siehe! (Mit Schadenfreude) betrachten sie dieses (Feuer), 8 | voll dessen bewusst, was sie den Gläubigen antun, 9 | die sie aus keinem anderen Grund hassen, als dass sie an Gott glauben, 10 | den Allmächtigen, den Einen, dem aller Preis gebührt, 11 | (und) dem die Herrschaft der Himmel und der Erde gehört. Aber Gott ist über alles Zeuge! 12 | Wahrlich, was jene angeht, die gläubige Männer und gläubige Frauen verfolgen und danach nicht bereuen, 13 | das Leiden der Hölle erwartet sie: ja, Leiden durch Feuer erwartet sie! 14 | (Aber) wahrlich, diejenigen, die Glauben erlangen und rechtschaffene Taten tun, 15 | werden (im kommenden Leben) Gärten haben, durch die Wasserläufe fließen – dieser größte Triumph! 16 | ⁋ 17 | Wahrlich, der Griff deines Erhalters ist überaus stark! 18 | Siehe, Er ist es, der (den Menschen) das erste Mal erschafft, 19 | und Er (ist es, der) ihn erneut hervorbringen wird. 20 | Und Er allein ist wahrhaft vergebend, allumfassend in Seiner Liebe, 21 | in erhabener Allmächtigkeit thronend, 22 | souverän im Tun dessen, was immer Er will. 23 | Ist sie je in deine Kenntnis gekommen, die Geschichte der (sündhaften) Scharen 24 | von Pharao und von (dem Stamm der ) Thamud? 25 | Und doch, diejenigen, die darauf aus sind, die Wahrheit zu leugnen, beharren darauf, sie der Lüge zu zeihen: 26 | aber Gott umschließt sie die ganze Zeit (mit Seinem Wissen und Seiner Macht), ohne dass sie dessen gewahr sind. 27 | Nein, aber diese (göttliche Schrift, die sie verwerfen) ist ein erhabener Diskurs, 28 | auf einer unvergänglichen Tafel (eingeschrieben). 29 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/086.txt: -------------------------------------------------------------------------------- 1 | Betrachte den Himmel und das, was in der Nacht kommt! 2 | Und was könnte dich begreifen lassen, was es ist, das in der Nacht kommt? 3 | Es ist der Stern, der durch die Finsternis (des Lebens) dringt: 4 | (denn) kein Mensch ist jemals unbehütet gelassen worden. 5 | So soll der Mensch denn betrachten, woraus er erschaffen worden ist: 6 | er ist aus einer Samenflüssigkeit erschaffen worden, 7 | die zwischen den Lenden (des Mannes) und dem Beckengürtel (der Frau) hervorkommt. 8 | Nun, wahrlich, Er (der also den Menschen das erste Mal erschafft,) 9 | ist wohl fähig, ihn (zum Leben) zurückzubringen 10 | an dem Tag, da alle Geheimnisse offengelegt werden 11 | und (der Mensch) weder Kraft noch Helfer haben wird! 12 | ⁋ 13 | Betrachte den Himmel, der immer wiederkehrt, 14 | und die Erde, aus der Pflanzen hervorbrechen! 15 | Siehe, diese (göttliche Schrift) ist fürwahr ein Wort, 16 | das zwischen Wahrheit und Falschheit schneidet, 17 | und ist keine müßige Geschichte. 18 | Siehe, sie (die sich weigern, sie anzuerkennen,) 19 | ersinnen so manches falsches Argument (um ihre Wahrheit zu widerlegen); 20 | aber Ich werde all ihre Ränkeschmieden zunichte machen. 21 | Lasse denn die Leugner der Wahrheit ihren Willen haben: 22 | lasse sie ihren Willen für eine kleine Weile haben! 23 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/087.txt: -------------------------------------------------------------------------------- 1 | Lobpreise den grenzenlosen Ruhm des Namens deines Erhalters: (den Ruhm) des Allerhöchsten, 2 | der (alles) erschafft und es daraufhin in Übereinstimmung mit dem formt, was es sein soll, 3 | und der die Natur (von allem, was existiert,) bestimmt und es daraufhin (zu seiner Erfüllung) leitet, 4 | und der die Weide hervorbringt 5 | und sie daraufhin in rostbraune Stoppeln verdorren lässt! 6 | Wir werden dich lehren, und du wirst nicht vergessen (irgendetwas von dem, was du gelehrt wirst), 7 | außer was Gott wollen mag (dass du vergisst) – denn, wahrlich, 8 | Er (allein) weiß alles, was der Wahrnehmung (des Menschen) offen ist, wie auch alles, was (ihr) verborgen ist: 9 | – und (also) werden Wir dir den Pfad zu (letzter) Erleichterung leicht machen. 10 | ⁋ 11 | Erinnere also (andere an die Wahrheit, gleich ob) dieses Erinnern von Nutzen zu sein (scheinen mag oder nicht): 12 | bedenken wird es der, der Ehrfurcht (vor Gott) hat, 13 | aber fern bleiben davon wird jener höchst unselige Schuft 14 | – er, der (im kommenden Leben) das große Feuer zu ertragen haben wird, 15 | in dem er weder sterben noch am Leben bleiben wird. 16 | Glückseligkeit (im kommenden Leben) wird fürwahr der erlangen, der Reinheit (in dieser Welt) erlangt, 17 | und des Namens seines Erhalters gedenkt und (zu ihm) betet. 18 | Aber nein, (o Menschen,) ihr zieht das Leben dieser Welt vor, 19 | obwohl das kommende Leben besser und dauerhafter ist. 20 | Wahrlich, (all) dies ist fürwahr in den früheren Offenbarungen (gesagt worden) 21 | – den Offenbarungen von Abraham und Moses. 22 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/088.txt: -------------------------------------------------------------------------------- 1 | Ist zu dir die Kunde von dem Überschattenden Ereignis gekommen? 2 | Manche Gesichter werden an jenem Tag niedergeschlagen sein, 3 | sich abarbeitend (unter den Lasten der Sünde), erschöpft (von Furcht), 4 | davor stehend, in ein glühendes Feuer einzugehen, 5 | zu trinken bekommend aus einer siedenden Quelle. 6 | Keine Speise für sie außer der Bitterkeit trockener Dornen, 7 | die keine Kraft gibt und auch nicht den Hunger stillt. 8 | (Und) manche Gesichter werden an jenem Tag vor Seligkeit leuchten, 9 | wohlzufrieden mit (der Frucht) ihres Bemühens, 10 | in einem erhabenen Garten, 11 | in dem du kein leeres Gerede hören wirst. 12 | Zahllose Quellen werden darin fließen, 13 | (und) dort werden hoch erhöhte Throne (der Glückseligkeit) sein, 14 | und Kelche bereitgestellt, 15 | und Kissen aufgereiht, 16 | und Teppiche ausgebreitet ... 17 | ⁋ 18 | Schauen sie (welche die Auferstehung leugnen,) 19 | denn niemals auf die wasserträchtigen Wolken (und beobachten nicht,) wie sie erschaffen sind? 20 | Und auf den Himmel, wie er hoch erhoben ist? 21 | Und auf die Berge, wie fest sie aufgerichtet sind? 22 | Und auf die Erde, wie sie ausgebreitet ist? 23 | Und so (o Prophet,) ermahne sie; deine Aufgabe ist nur zu ermahnen: 24 | du kannst sie nicht zwingen (zu glauben). 25 | Jedoch was den angeht, der sich abwendet, darauf aus, die Wahrheit zu leugnen, 26 | ihn wird Gott (im kommenden Leben) das größte Leiden erleiden lassen: 27 | denn, siehe, zu Uns wird ihre Rückkehr sein, 28 | und, wahrlich, es ist an Uns, sie zur Rechenschaft zu ziehen. 29 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/089.txt: -------------------------------------------------------------------------------- 1 | Betrachte den Tagesanbruch 2 | und die zehn Nächte! 3 | Betrachte das Vielfache und den Einen! 4 | Betrachte die Nacht, wie sie ihren Lauf nimmt! 5 | All dies betrachtend – könnte es für jemanden, der mit Vernunft versehen ist, 6 | einen (in höherem Maß) feierlichen Beweis der Wahrheit geben? 7 | Bist du nicht gewahr, wie dein Erhalter mit (dem Stamm der) 'Ad verfuhr, 8 | (dem Volk von) Iram, der vielgesäulten, 9 | dergleichen niemals in allem Land aufgezogen worden ist? 10 | – und mit (dem Stamm der) Thamud, die im Tal Felsen aushöhlten? 11 | – und mit Pharao von den (vielen) Zeltpfählen? 12 | (Es waren sie,) die alle Grenzen der Gerechtigkeit überall in ihren Landen überschritten 13 | und großes Verderbnis darin stifteten: 14 | und daher ließ dein Erhalter eine Geißel des Leidens auf sie los: 15 | denn, wahrlich, dein Erhalter ist immer auf der Wacht! 16 | ⁋ 17 | Aber was den Menschen angeht, wann immer sein Erhalter ihn mit Seiner Großzügigkeit prüft 18 | und indem Er ihn ein Leben der Bequemlichkeit genießen lässt, sagt er: 19 | »Mein Erhalter ist (gerechterweise) großzügig zu mir gewesen«; 20 | während, wann immer Er ihn prüft mit Einschränkung der Mittel seines Lebensunterhalts, 21 | er sagt: »Mein Erhalter ist mir ungnädig gewesen!« 22 | Aber nein, nein, (o Menschen, betrachtet alles, was ihr tut und zu tun fehlt:) ihr seid nicht großzügig zu der Waise, 23 | und ihr haltet einander nicht an, den Bedürftigen zu speisen, 24 | und ihr verschlingt das Erbe (anderer) mit verschlingender Gier 25 | und ihr leibt Reichtum mit unmäßiger Liebe! 26 | ⁋ 27 | Nein, aber (wie wird es euch am Gerichtstag ergehen,) 28 | wenn die Erde mit Zermalmen auf Zermalmen zermalmt wird 29 | und (die Majestät) deines Erhalters sich enthüllt, wie auch (die wahre Natur) der Engel, Rang um Rang? 30 | Und an jenem Tag wird die Hölle (in Sicht) gebracht; 31 | an jenem Tag wird der Mensch gedenken (all dessen, was er tat und zu tun fehlte): 32 | aber was wird ihm jenes Gedenken nutzen? 33 | Er wird sagen: »Oh, hätte ich doch im voraus für mein (kommendes) Leben vorgesorgt!« 34 | Denn keiner kann leiden lassen, wie Er (die Sünder) an jenem Tag wird leiden lassen, 35 | und keiner kann binden mit Fesseln wie Seinen. 36 | (Aber zu den Rechtschaffenen wird Gott sagen:) »O du Mensch, der inneren Frieden erlangt hat! 37 | Kehre du zurück zu deinem Erhalter, wohlzufrieden (und Ihn) zufriedenstellend: 38 | gehe denn ein zusammen mit Meinen (anderen wahren) Dienern 39 | – ja, gehe du ein in Mein Paradies!« 40 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/090.txt: -------------------------------------------------------------------------------- 1 | Nein! Ich rufe zum Zeugen dieses Land 2 | – dieses Land, in dem du frei bist zu wohnen 3 | – und (Ich rufe zum Zeugen) Eltern und Nachkommen: 4 | Wahrlich, Wir haben den Menschen erschaffen (zu einem Leben) in Schmerz, Mühsal und Prüfung. 5 | Denkt er denn, dass keiner Macht über ihn hat? 6 | Er prahlt: »Ich habe Reichtum in Fülle ausgegeben!« 7 | Denkt er denn, dass keiner ihn sieht? 8 | Haben Wir ihm nicht zwei Augen gegeben, 9 | und eine Zunge und ein Paar Lippen, 10 | und ihm die beiden Höhenwege (von Gut und Übel) gezeigt? 11 | Aber er will nicht versuchen, den steilen Weg bergauf hinaufzusteigen ... 12 | Und was könnte dich begreifen lassen, was es ist, jener steile Weg bergauf? 13 | ⁋ 14 | (Es ist) das Befreien des eigenen Nackens (von der Last der Sünde), 15 | oder das Speisen an einem Tag des (eigenen) Hungers 16 | von einer nah verwandten Waise 17 | oder eines bedürftigen (Fremden) der im Staub liegt 18 | – und überdies von jenen zu sein, die Glauben erlangt haben und einander Geduld in Widrigkeit auftragen und einander Mitgefühl auftragen. 19 | Solche sind diejenigen, die Rechtschaffenheit erlangt haben; 20 | während jene, die darauf aus sind, die Wahrheit Unserer Botschaften zu leugnen 21 | – sie sind solche, die sich selbst in Übel verloren haben, 22 | (indes) Feuer sich über ihnen schließt. 23 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/091.txt: -------------------------------------------------------------------------------- 1 | Betrachte die Sonne und ihre strahlende Helle, 2 | und den Mond, wie er die Sonne widerspiegelt! 3 | Betrachte den Tag, wie er die Welt offenbart, 4 | und die Nacht, wie sie sie finster verhüllt! 5 | Betrachte den Himmel und seine wundersame Erbauung, 6 | und die Erde und all ihre Weite! 7 | Betrachte das menschliche Selbst und wie es in Übereinstimmung mit dem geformt ist, was es sein soll, 8 | und wie es erfüllt ist von moralischen Schwächen wie auch Bewusstsein von Gott! 9 | Einen glückseligen Zustand wird fürwahr erlangen, wer dieses (Selbst) an Reinheit wachsen lässt, 10 | und wahrhaft verloren ist, wer es (in Finsternis) vergräbt. 11 | ⁋ 12 | (Diese) Wahrheit ziehen der Lüge (der Stamm der) Thamud in ihrem anmaßenden Hochmut, 13 | als jener höchst unselige Schuft von ihnen herbeieilte (um seine üble Tat zu begehen), 14 | obwohl Gottes Gesandter ihnen gesagt hatte: 15 | »Es ist eine Kamelstute, die Gott gehört, so lasst sie trinken (und fügt ihr keinen Schaden zu)!« 16 | Aber sie ziehen ihn der Lüge und schlachteten sie grausam 17 | – woraufhin ihr Erhalter sie mit völliger Vernichtung heimsuchte wegen dieser ihrer Sünde und sie alle gleichermaßen vernichtete: 18 | denn keiner von ihnen hatte irgendwelche Furcht vor dem, was sie treffen könnte. 19 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/092.txt: -------------------------------------------------------------------------------- 1 | Betrachte die Nacht, wie sie (die Erde) in Finsternis hüllt, 2 | und den Tag, wie er hell aufsteigt! 3 | Betrachte die Schöpfung des Männlichen und des Weiblichen! 4 | Wahrlich, (o Menschen,) ihr strebt nach höchst unterschiedlichen Zielen! 5 | Also, was den angeht, der (anderen) gibt und sich Gottes bewusst ist, 6 | und an die Wahrheit des letzten Guten glaubt 7 | – für ihn werden Wir den Pfad zur (letzten) Erleichterung leicht machen. 8 | Aber was den angeht, der geizig ist und denkt, dass er selbstgenügend ist, 9 | und das letzte Gute eine Lüge nennt 10 | – für ihn werden Wir den Pfad zur Härte leicht machen: 11 | und was wird ihm sein Reichtum nutzen, wenn er (in sein Grab) niedergeht? 12 | ⁋ 13 | Siehe, es ist fürwahr an Uns, (euch) mit Rechtleitung zu begnaden; 14 | und, siehe, Unser ist (die Herrschaft über) das kommende Leben wie auch (über) diesen früheren Teil (eures Lebens): 15 | und so warne Ich euch vor dem wütenden Feuer 16 | – (dem Feuer,) das keiner zu ertragen haben wird außer jenem höchst unseligen Schuft, 17 | der (die Wahrheit) der Lüge zeiht und sich (von ihr) abwendet. 18 | Denn fern von ihr wird der bleiben, der sich wahrhaft Gottes bewusst ist: 19 | er, der seine Besitztümer (für andere) ausgibt, auf dass er an Reinheit wachsen möge 20 | – nicht als Bezahlung für erhaltene Begünstigungen, 21 | sondern nur aus einem Verlangen nach dem Antlitz seines Erhalters, des Allerhöchsten: 22 | und der wird fürwahr beizeiten wohlzufrieden sein. 23 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/093.txt: -------------------------------------------------------------------------------- 1 | Betrachte die hellen Morgenstunden 2 | und die Nacht, wenn sie still und finster wird. 3 | Dein Erhalter hat dich nicht verlassen, noch verachtet Er dich: 4 | denn, fürwahr, das kommende Leben wird besser für dich sein als dieser frühere Teil (deines Lebens)! 5 | Und, fürwahr, beizeiten wird dein Erhalter dir gewähren (was dein Herz begehrt), und du wirst wohlzufrieden sein. 6 | Hat Er dich nicht als Waise gefunden und dir Schutz gegeben? 7 | Und dich auf deinem Weg verirrt gefunden und dich rechtgeleitet? 8 | Und dich in Bedürftigkeit gefunden und dir Genüge gegeben? 9 | Deshalb sollst du der Waise niemals unrecht tun, 10 | und den, der (deine) Hilfe sucht, sollst du niemals schelten, 11 | und von den Segnungen deines Erhalters sollst du (immer) sprechen. 12 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/094.txt: -------------------------------------------------------------------------------- 1 | Haben wir nicht dein Herz geöffnet 2 | und von dir die Last genommen, 3 | die so schwer auf deinem Rücken lastete? 4 | Und (haben Wir nicht) dich an Würde erhöht? 5 | Und, siehe, mit jeder Härte kommt Erleichterung: 6 | wahrlich, mit jeder Härte kommt Erleichterung! 7 | Darum, wenn du (von Bedrückung) befreit bist, bleibe standhaft 8 | und wende dich in Liebe zu deinem Erhalter. 9 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/095.txt: -------------------------------------------------------------------------------- 1 | Betrachte die Feige und die Olive 2 | und den Berg Sinai 3 | und dieses sichere Land! 4 | Wahrlich, Wir erschaffen den Menschen in bester Gestaltung, 5 | und danach setzen Wir ihn herab auf das Niedrigste des Niedrigen 6 | – ausgenommen nur solche, die Glauben erlangen und gute Werke tun: 7 | und ihrer wird eine unendliche Belohnung sein! 8 | Was denn (o Mensch,) könnte dich hinfort veranlassen, dieses Moralgesetz der Lüge zu zeihen? 9 | Ist nicht Gott der Gerechteste der Richter? 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/096.txt: -------------------------------------------------------------------------------- 1 | Lies im Namen deines Erhalters, der erschaffen hat 2 | – den Menschen erschaffen hat aus einer Keimzelle! 3 | Lies – denn dein Erhalter ist der Huldreichste, 4 | der (den Menschen) den Gebrauch der Schreibfeder gelehrt hat 5 | – den Menschen gelehrt hat, was er nicht wusste! 6 | Nein, wahrlich, der Mensch wird äußerst anmaßend, 7 | wann immer er sich für selbstgenügend hält: 8 | denn, siehe, zu deinem Erhalter müssen alle zurückkehren. 9 | Hast du jemals den betrachtet, der zu verhindern sucht, 10 | dass ein Diener (Gottes) betet? 11 | ⁋ 12 | Hast du betrachtet, ob er auf dem rechten Weg ist 13 | oder mit Gottesbewusstsein befasst ist? 14 | Hast du betrachtet, ob er (nicht) vielleicht (die Wahrheit) der Lüge zeiht und (ihr) den Rücken kehrt? 15 | Weiß er denn nicht, dass Gott (alles) sieht? 16 | Nein, wenn er nicht ablässt, werden Wir ihn ganz sicherlich auf seine Stirn herunterziehen 17 | – der lügnerischen, auflehnerischen Stirn! 18 | – und dann soll er die Ratgeber seiner eigenen (unechten) Weisheit (zu seiner Hilfe) rufen, 19 | (in dessen) Wir die Kräfte der himmlischen Strafe rufen werden! 20 | Nein, gib du nicht acht auf ihn, sondern wirf dich (vor Gott) nieder und nahe dich (Ihm)! 21 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/097.txt: -------------------------------------------------------------------------------- 1 | Siehe, von droben haben Wir diese (göttliche Schrift) in der Nacht des Schicksals erteilt. 2 | Und was könnte dich begreifen lassen, was sie ist, diese Nacht des Schicksals? 3 | Die Nacht des Schicksals ist besser als tausend Monate: 4 | in Scharen kommen in ihr die Engel herab, 5 | überbringen göttliche Eingebung mit der Erlaubnis ihres Erhalters; 6 | vor allem (Übel), was geschehen mag, macht sie sicher, 7 | bis zum Anbruch der Morgendämmerung. 8 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/098.txt: -------------------------------------------------------------------------------- 1 | Es ist nicht (vorstellbar), dass solche, die darauf aus sind, die Wahrheit zu leugnen, 2 | – (seien sie) von den Anhängern früherer Offenbarungen oder von jenen, 3 | die etwas anderem neben Gott Göttlichkeit zuschreiben 4 | – jemals (von Ihm) aufgegeben werden sollten, 5 | ehe der (ganze) Beweis der Wahrheit zu ihnen kommt: 6 | ein Gesandter von Gott, der (ihnen) mit Reinheit gesegnete Offenbarungen übermittelt, 7 | in denen Verordnungen von immerwahrer Triftigkeit und Klarheit sind. 8 | Nun haben jene, denen vordem Offenbarung gewährt worden ist, ihre Einheit (des Glaubens) zerbrochen, 9 | nachdem ein solcher Beweis der Wahrheit zu ihnen gekommen war. 10 | Und überdies, ihnen wurde nichts anderes geboten, als dass sie Gott anbeten sollten, 11 | aufrichtig in ihrem Glauben an Ihn allein, sich abwendend von allem, was falsch ist; 12 | und dass sie beständig das Gebet verrichten sollten; 13 | und dass sie aus Mildtätigkeit ausgeben sollten: 14 | denn dies ist ein mit immerwahrer Triftigkeit und Klarheit versehenes Moralgesetz. 15 | ⁋ 16 | Wahrlich, jene, die (trotz allen Beweises) darauf aus sind, die Wahrheit zu leugnen, 17 | – (seien sie) von den Anhängern früherer Offenbarungen oder von jenen, 18 | die etwas anderem neben Gott Göttlichkeit zuschreiben 19 | – werden sich im Feuer der Hölle finden, darin zu verbleiben: 20 | sie sind die schlechtesten aller Geschöpfe. 21 | (Und) wahrlich, jene, die Glauben erlangt haben und rechtschaffene Taten tun, 22 | – es sind sie, sie, welche die besten aller Geschöpfe sind. 23 | Ihr Lohn (erwartet sie) bei Gott: 24 | Gärten steter Seligkeit, durch die Wasserläufe fließen, 25 | darin zu verbleiben jenseits der Zählung der Zeit; 26 | wohlzufrieden ist Gott mit ihnen, und wohlzufrieden sind sie mit Ihm: 27 | all dies erwartet den, der Ehrfurcht vor seinem Erhalter hat! 28 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/099.txt: -------------------------------------------------------------------------------- 1 | Wenn die Erde mit ihrem (letzten) mächtigen Beben bebt, 2 | und (wenn) die Erde ihre Lasten herausgibt, 3 | und der Mensch ausruft: »Was ist mit ihr geschehen?« 4 | – an jenem Tag wird sie alle ihre Nachrichten berichten, 5 | wie dein Erhalter es ihr zu tun eingegeben haben wird. 6 | An jenem Tag werden alle Menschen hervortreten, abgetrennt voneinander, 7 | damit ihnen ihre (vergangenen) Taten gezeigt werden. 8 | Und so, wer das Gewicht eines Atoms an Gutem getan haben wird, der wird es erblicken; 9 | und wer das Gewicht eines Atoms an Übel getan haben wird, der wird es erblicken. 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/100.txt: -------------------------------------------------------------------------------- 1 | Oh, die Streitrosse, die keuchend laufen, 2 | Feuerfunken schlagend, 3 | anstürmend zum Angriff am Morgen, 4 | dabei Staubwolken aufwirbelnd, 5 | dabei (blind) in jede Schar hineinstürmend! 6 | Wahrlich, seinem Erhalter gegenüber ist der Mensch höchst undankbar 7 | – und davon, siehe, gibt er (selbst) fürwahr Zeugnis: 8 | denn, wahrlich, der Liebe zum Reichtum ist er höchst leidenschaftlich hingegeben. 9 | Aber weiß er nicht, dass (am Letzten Tag,) wenn alles, was in den Gräbern ist, auferweckt und hervorgebracht wird, 10 | und alles, was in den Herzen der Menschen (verborgen) ist, bloßgelegt wird 11 | – dass an jenem Tag ihr Erhalter (zeigen wird, dass Er) ihrer immer völlig gewahr gewesen ist? 12 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/101.txt: -------------------------------------------------------------------------------- 1 | Oh, das plötzliche Unheil! 2 | Wie schrecklich das plötzliche Unheil! 3 | Und was könnte dich begreifen lassen, was das plötzliche Unheil sein wird? 4 | (Es wird eintreten) an dem Tag, da die Menschen wie in Verwirrung schwärmende Motten sein werden, 5 | und die Berge wie flaumige Wollbüschel sein werden ... 6 | Und wessen Gewicht (an guten Taten) dann schwer auf der Waage ist, 7 | der wird sich in einem glückseligen Zustand des Lebens finden; 8 | während der, dessen Gewicht leicht auf der Waage ist, 9 | von einem Abgrund umschlossen sein wird. 10 | Und was könnte dich begreifen lassen, was dieser (Abgrund) sein wird? 11 | Ein heiß brennendes Feuer! 12 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/102.txt: -------------------------------------------------------------------------------- 1 | Ihr seid besessen von Gier nach mehr und mehr, 2 | bis ihr in eure Gräber niedergeht. 3 | Nein, beizeiten werdet ihr verstehen! 4 | Und noch einmal: Nein, beizeiten werdet ihr verstehen! 5 | Nein, wenn ihr (es) nur verstehen könntet, mit einem Verstehen (geboren aus) der Gewissheit, 6 | ihr würdet fürwahr, ganz sicherlich, das lodernde Feuer (der Hölle) erblicken! 7 | Am Ende werdet ihr es fürwahr, ganz sicherlich, mit dem Auge der Gewissheit erblicken: 8 | und an jenem Tag werdet ihr ganz sicherlich zur Rechenschaft gezogen werden 9 | für (das, was ihr getan habt mit) der Wohltat des Lebens! 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/103.txt: -------------------------------------------------------------------------------- 1 | Betrachte das Verfliegen der Zeit! 2 | Wahrlich, der Mensch verliert bestimmt sich selbst, 3 | außer er sei von jenen, die Glauben erlangen und gute Werke tun 4 | und einander zum Festhalten an der Wahrheit mahnen 5 | und einander zu Geduld in Widrigkeit mahnen. 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/104.txt: -------------------------------------------------------------------------------- 1 | Wehe jedem Verleumder, Nörgler! 2 | (Wehe dem,) der Reichtum anhäuft und ihn als Schutz zählt, 3 | und denkt, dass sein Reichtum ihn für immer leben lassen wird! 4 | Nein, sondern (im kommenden Leben) wird (solch einer wie) er fürwahr vernichtender Qual überlassen werden! 5 | Und was könnte dich begreifen lassen, was diese vernichtende Qual sein wird? 6 | Ein Feuer, von Gott entfacht, 7 | das über die (schuldigen) Herzen aufsteigen wird: 8 | wahrlich, es wird sich über ihnen schließen 9 | in endlosen Säulen! 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/105.txt: -------------------------------------------------------------------------------- 1 | Bist du nicht gewahr, wie dein Erhalter mit dem Heer des Elefanten verfuhr? 2 | Machte Er nicht ihr listiges Planen völlig zunichte? 3 | Also ließ Er große Schwärme fliegender Geschöpfe auf sie los, 4 | die sie mit steinharten Schlägen vorherbestimmter Strafe schlugen, 5 | und ließ sie werden wie ein Kornfeld, das bis auf die Stoppeln abgefressen worden ist – 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/106.txt: -------------------------------------------------------------------------------- 1 | Auf dass die Quraysch sicher bleiben mögen, 2 | sicher auf ihren Winter- und Sommerreisen. 3 | Sie sollen daher den Erhalter dieses Tempels anbeten, 4 | der ihnen Speise gegeben hat gegen Hunger und sie sicher gemacht hat vor Gefahr. 5 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/107.txt: -------------------------------------------------------------------------------- 1 | Hast du jemals (jene Art von Mensch) betrachtet, die alles Moralgesetz der Lüge zeiht? 2 | Siehe, es ist diese (Art von Mensch), welche die Waise verstößt 3 | und keinen Drang verspürt, den Bedürftigen zu speisen. 4 | Wehe denn jenen Betenden, 5 | deren Herzen von ihrem Gebet fern sind 6 | – jene, die nur gesehen und gepriesen werden wollen, 7 | und überdies (ihren Mitmenschen) alle Hilfeleistung verweigern! 8 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/108.txt: -------------------------------------------------------------------------------- 1 | Siehe, Wir haben dir Gutes in Fülle erteilt: 2 | darum bete zu deinem Erhalter (allein) und opfere (Ihm allein). 3 | Wahrlich, wer dich hasst, der ist fürwahr (von allem, was gut ist,) abgeschnitten worden! 4 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/109.txt: -------------------------------------------------------------------------------- 1 | Sag: »Oh ihr, die ihr die Wahrheit leugnet! 2 | Ich bete nicht das an, was ihr anbetet, 3 | und ihr betet auch nicht das an, was ich anbete. 4 | Und ich werde nicht das anbeten, was ihr (jemals) angebetet habt, 5 | und ihr werdet auch nicht (jemals) das anbeten, was ich anbete. 6 | Für euch euer Moralgesetz, und für mich meines!« 7 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/110.txt: -------------------------------------------------------------------------------- 1 | Wenn Gottes Beistand kommt und Sieg, 2 | und du siehst Leute in Gottes Religion in Scharen eintreten, 3 | lobpreise den grenzenlosen Ruhm deines Erhalters und preise Ihn und suche Seine Vergebung: 4 | denn, siehe, Er ist immer ein Reueannehmender. 5 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/111.txt: -------------------------------------------------------------------------------- 1 | Verdammt sind die Hände dessen mit dem glühenden Antlitz, und verdammt ist er! 2 | Was wird ihm sein Reichtum nutzen und alles, was er erworben hat? 3 | (Im kommenden Leben) wird er ein heftig glühendes Feuer zu ertragen haben, 4 | zusammen mit seiner Frau, jener Trägerin übler Geschichten, 5 | (die) um ihren Hals ein Seil von gedrehten Strängen (trägt)! 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/112.txt: -------------------------------------------------------------------------------- 1 | Sag: »Er ist der Eine Gott: 2 | Gott der Ewige, die unverursachte Ursache all dessen, was existiert, 3 | Er zeugt nicht, und Er ist auch nicht gezeugt; 4 | und es gibt nichts, das mit Ihm verglichen werden könnte.« 5 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/113.txt: -------------------------------------------------------------------------------- 1 | Sag: »Ich suche Zuflucht bei dem Erhalter der aufgehenden Morgendämmerung, 2 | vor dem Übel von etwas, das Er erschaffen hat, 3 | und vor dem Übel der schwarzen Finsternis, wann immer sie herabkommt, 4 | und vor dem Übel aller Menschen, die auf okkulte Bestrebungen aus sind, 5 | und vor dem Übel des Neiders, wenn er neidet.« 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/de.lproj/114.txt: -------------------------------------------------------------------------------- 1 | Sag: »Ich suche Zuflucht bei dem Erhalter der Menschen, 2 | dem Herrscher der Menschen, 3 | dem Gott der Menschen, 4 | vor dem Übel des flüsternden, entweichenden Versuchers, 5 | der in den Herzen der Menschen flüstert 6 | – vor aller (Versuchung zum Übel durch) unsichtbare Kräfte wie auch Menschen.« 7 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/001.txt: -------------------------------------------------------------------------------- 1 | In the name of God, The Most Gracious, The Dispenser of Grace: 2 | All praise is due to God alone, the Sustainer of all the worlds, 3 | the Most Gracious, the Dispenser of Grace, 4 | Lord of the Day of Judgment! 5 | Thee alone do we worship; and unto Thee alone do we turn for aid. 6 | Guide us the straight way. 7 | The way of those upon whom Thou hast bestowed Thy blessings, 8 | not of those who have been condemned [by Thee], 9 | nor of those who go astray! 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/062.txt: -------------------------------------------------------------------------------- 1 | All that is in the heavens and all that is on earth extols the limitless glory of God, 2 | the Sovereign Supreme, the Holy, the Almighty, the Wise! 3 | He it is who has sent unto the unlettered people an apostle from among themselves, 4 | to convey unto them His messages, and to cause them to grow in purity, 5 | and to impart unto them the divine writ as well as wisdom 6 | - whereas before that they were indeed, most obviously, lost in error 7 | and [to cause this message to spread] from them unto other people as soon as they come into contact with them: 8 | for He alone is almighty, truly wise! 9 | Such is God's bounty: He grants it to anyone who is willing [to receive it]: 10 | for God is limitless in His great bounty. 11 | ⁋ 12 | The parable of those who were graced with the burden of the Torah, and thereafter failed to bear this burden, 13 | is that of an ass that carries a load of books [but cannot benefit from them]. 14 | Calamitous is the parable of people who are bent on giving the lie to God's messages - 15 | for God does not bestow His guidance upon such evildoing folk! 16 | Say: "O you who follow the Jewish faith! 17 | If you claim that you [alone] are close to God, to the exclusion of all other people, 18 | then you should be longing for death - if what you say is true!" 19 | But never will they long for it, because [they are aware] of what their hands have wrought in this world; 20 | and God has full knowledge of evildoers. 21 | ⁋ 22 | Say: "Behold, the death from which you are fleeing is bound to overtake you 23 | - and then you will be brought back unto Him who knows all that is beyond the reach of a created being's perception as well as all that can be witnessed by a creature's senses or mind, 24 | whereupon He will make you truly understand all that you were doing [in life]. 25 | O you who have attained to faith! When the call to prayer is sounded on the day of congregation, 26 | hasten to the remembrance of God, and leave all worldly commerce: 27 | this is for your own good, if you but knew it. 28 | And when the prayer is ended, disperse freely on earth and seek to obtain [something] of God's bounty; 29 | but remember God often, so that you might attain to a happy state! 30 | Yet [it does happen that] when people become aware of [an occasion for] worldly gain or a passing delight, 31 | they rush headlong towards it, and leave thee standing [and preaching]. 32 | Say: "That which is with God is far better than all passing delight and all gain! And God is the best of providers!" 33 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/080.txt: -------------------------------------------------------------------------------- 1 | He frowned and turned away 2 | because the blind man approached him! 3 | Yet for all thou didst know, [O Muhammad,] he might perhaps have grown in purity, 4 | or have been reminded [of the truth], and helped by this reminder. 5 | Now as for him who believes himself to be self-sufficient 6 | to him didst thou give thy whole attention, 7 | although thou art not accountable for his failure to attain to purity; 8 | but as for him who came unto thee full of eagerness 9 | and in awe [of God] 10 | him didst thou disregard! 11 | Nay, verily, these [messages] are but a reminder: 12 | and so, whoever is willing may remember Him 13 | in [the light of His] revelations blest with dignity, 14 | lofty and pure, 15 | [borne] by the hands of messengers 16 | noble and most virtuous. 17 | ⁋ 18 | [But only too often] man destroys himself: how stubbornly does he deny the truth! 19 | [Does man ever consider] out of what substance [God] creates him? 20 | Out of a drop of sperm He creates him, and thereupon determines his nature, 21 | and then makes it easy for him to go through life; 22 | and in the end He causes him to die and brings him to the grave; 23 | and then, if it be His will, He shall raise him again to life, 24 | Nay, but [man] has never yet fulfilled what He has enjoined upon him! 25 | Let man, then, consider [the sources of] his food: 26 | [how it is] that We pour down water, pouring it down abundantly; 27 | and then We cleave the earth [with new growth], cleaving it asunder, 28 | and thereupon We cause grain to grow out of it, 29 | and vines and edible plants, 30 | and olive trees and date-palms, 31 | and gardens dense with foliage, 32 | and fruits and herbage, 33 | for you and for your animals to enjoy. 34 | ⁋ 35 | And so, when the piercing call [of resurrection] is heard 36 | on a Day when everyone will [want to] flee from his brother, 37 | and from his mother and father, 38 | and from his spouse and his children: 39 | on that Day, to every one of them will his own state be of sufficient concern. 40 | Some faces will on that Day be bright with happiness, 41 | laughing, rejoicing at glad tidings. 42 | And some faces will on that Day with dust be covered, 43 | with darkness overspread: 44 | these, these will be the ones who denied the truth and were immersed in iniquity! 45 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/081.txt: -------------------------------------------------------------------------------- 1 | Hen the sun is shrouded in darkness, 2 | and when the stars lose their light, 3 | and when the mountains are made to vanish, 4 | and when she-camels big with young, about to give birth, are left untended, 5 | and when all beasts are gathered together, 6 | and when the seas boil over, 7 | and when all human beings are coupled [with their deeds], 8 | and when the girl-child that was buried alive is made to ask 9 | for what crime she had been slain, 10 | and when the scrolls [of men's deeds] are unfolded, 11 | and when heaven is laid bare, 12 | and when the blazing fire [of hell] is kindled bright, 13 | and when paradise is brought into view: 14 | [on that Day] every human being will come to know what he has prepared [for himself]. 15 | ⁋ 16 | But Nay! I call to witness the revolving stars, 17 | the planets that run their course and set, 18 | and the night as it darkly falls, 19 | and the morn as it softly breathes: 20 | behold, this [divine writ] is indeed the [inspired] word of a noble apostle, 21 | with strength endowed, secure with Him who in almightiness is enthroned 22 | [the word] of one to be heeded, and worthy of trust! 23 | For, this fellow-man of yours is not a madman: 24 | he truly beheld [the angel - beheld] him on the clear horizon; 25 | and he is not one to begrudge others the knowledge [of whatever has been revealed to him] out of that which is beyond the reach of human Perception. 26 | Nor is this [message] the word of any satanic force accursed. 27 | Whither, then, will you go? 28 | This [message] is no less than a reminder to all mankind – 29 | to everyone of you who wills to walk a straight way. 30 | But you cannot will it unless God, the Sustainer of all the worlds, wills [to show you that way]. 31 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/082.txt: -------------------------------------------------------------------------------- 1 | When the sky is cleft asunder, 2 | and when the stars are scattered, 3 | and when the seas burst beyond their bounds, 4 | and when the graves are overturned – 5 | every human being will [at last] comprehend, 6 | what he has sent ahead and what he has held back [in this world]. 7 | O man! What is it that lures thee away from thy bountiful Sustainer, 8 | who has created thee, and formed thee in accordance with what thou art meant' to be, 9 | and shaped thy nature in just proportions, 10 | having put thee together in whatever form He willed [thee to have]? 11 | Nay, [O men,] but you [are lured away from God whenever you are tempted to] give the lie to [God's] Judgment! 12 | ⁋ 13 | And yet, verily, there are ever-watchful forces over you, 14 | noble, recording, 15 | aware of whatever you do! 16 | Behold, [in the life to come] the truly virtuous: will indeed be in bliss, 17 | whereas, behold, the wicked will indeed be in a blazing fire – 18 | [a fire] which they shall enter on Judgment Day, 19 | and which they shall not [be able to] evade. 20 | And what could make thee conceive what that Judgment Day will be? 21 | And once again: What could make thee conceive what that Judgment Day will be? 22 | [It will be] a Day when no human being shall be of the least avail to another human being: 23 | for on that Day [it will become manifest that] all sovereignty is God's alone. 24 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/084.txt: -------------------------------------------------------------------------------- 1 | When the sky is split asunder, 2 | obeying its Sustainer, as in truth it must; 3 | and when the earth is leveled, 4 | and casts forth whatever is in it, and becomes utterly void, 5 | obeying its Sustainer, as in truth it must -: 6 | [then,] O man - thou [that] hast, verily, been toiling towards thy Sustainer in painful toil - then shalt thou meet Him! 7 | And as for him whose record shall be placed in his right hand, 8 | he will in time be called to account with an easy accounting, 9 | and will [be able to] turn joyfully to those of his own kind. 10 | But as for him whose record shall be given to him behind his back;* 11 | he will in time pray for utter destruction: 12 | but he will enter the blazing flame. 13 | ⁋ 14 | Behold, [in his earthly life] he lived joyfully among people of his own kind 15 | for, behold, he never thought that he would have to return [to God]. 16 | Yea indeed! His Sustainer did see all that was in him! 17 | But Nay! I call to witness the sunset's [fleeting] afterglow, 18 | and the night, and what it [step by step] unfolds, 19 | and the moon, as it grows to its fullness: 20 | [even thus, O men,] are you bound to move; onward from stage to stage. 21 | What, then, is amiss with them that they will not believe [in a life to come]? 22 | and [that], when the Qur'an is read unto them, they do not fall down in prostration? 23 | Nay, but they who are bent on denying the truth give the lie [to this divine writ]! 24 | Yet God has full knowledge of what they conceal [in their hearts]. 25 | Hence, give them the tiding of grievous suffering [in the life to come] – 26 | unless it be such [of them] as [repent, and] attain to faith, and do good works: for theirs shall be a reward unending!. 27 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/085.txt: -------------------------------------------------------------------------------- 1 | Consider the sky full of great constellations, 2 | and [then bethink thyself of] the promised Day, 3 | and [of] Him who witnesses [all], and [of] that unto which witness is borne [by Him]! 4 | They destroy [but] themselves, they who would ready a pit 5 | of fire fiercely burning [for all who have attained to faith]! 6 | Lo! [With glee do] they contemplate that [fire], 7 | fully conscious of what they are doing to the believers, 8 | whom they hate for no other reason than that they believe in God, the Almighty, the One to whom all praise is due, 9 | [and] to whom the dominion of the heavens and the earth belongs. 10 | But God is witness unto everything! 11 | Verily, as for those who persecute believing men and believing women, and thereafter do not repent, 12 | hell's suffering awaits them: yea, suffering through fire awaits them! 13 | ⁋ 14 | [But,] verily, they who attain to faith 15 | and do righteous deeds shall [in the life to come] have gardens through which running waters flow - that triumph most great! 16 | Verily, thy Sustainer's grip is exceedingly strong! 17 | Behold, it is He who creates [man] in the first instance, and He [it is who] will bring him forth anew. 18 | And He alone is truly-forgiving, all-embracing in His love, 19 | in sublime almightiness enthroned, 20 | a sovereign doer of whatever He wills. 21 | Has it ever come within thy ken, the story of the [sinful] hosts 22 | of Pharaoh, and of [the tribe of] Thamud? 23 | And yet, they who are bent on denying the truth persist in giving it the lie: 24 | but all the while God encompasses them [with His knowledge and might] without their being aware of it. 25 | Nay, but this [divine writ which they reject] is a discourse sublime, 26 | upon an imperishable tablet [inscribed]. 27 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/086.txt: -------------------------------------------------------------------------------- 1 | Consider the heavens and that which comes in the night! 2 | And what could make thee conceive what it is that comes in the night? 3 | It is the star that pierces through [life's] darkness: 4 | [for] no human being has ever been left unguarded. 5 | Let Man, then, observe out of what he has been created: 6 | he has been created out of a seminal fluid 7 | issuing from between the loins [of man] and the pelvic arch [of woman]. 8 | Now, verily, He [who thus creates man in the first instance] is well able to bring him back [to life] 9 | on the Day when all I secrets will be laid bare, 10 | and [man] will have neither strength nor helper! 11 | Consider the heavens, ever-revolving, 12 | and the earth, bursting forth with plants! 13 | Behold, this [divine writ] is indeed a word that between truth and falsehood, 14 | and is no idle tale. 15 | Behold, they [who refuse to accept it] devise many a false argument [to disprove its truth]; 16 | but I shall bring all their scheming to nought. 17 | Let, then, the deniers of the truth have their will: let them have their will for a little while. 18 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/087.txt: -------------------------------------------------------------------------------- 1 | Extol the limitless glory of thy Sustainer's name: [the glory of] the Al-Highest, 2 | who creates [every thing], and thereupon forms it in accordance with what it is meant to be,* 3 | and who determines the nature [of all that exists], 4 | and thereupon guides it [towards its fulfilment], 5 | and who brings forth herbage, 6 | and thereupon causes it to decay into rust-brown stubble! 7 | We shall teach thee, and thou wilt not forget [aught of what thou art taught], 8 | save what God may will [thee to forget] - for, verily, 9 | He [alone] knows all that is open to [man's] perception as well as all that is hidden [from it] 10 | and [thus] shall We make easy for thee the path towards [ultimate] ease. 11 | ⁋ 12 | Remind, then, [others of the truth, regardless of] whether this reminding [would seem to] be of use [or not]: 13 | in mind will keep it he who stands in awe [of God], 14 | but aloof from it will remain that most hapless wretch – 15 | he who [in the life to come] shall have to endure the great fire 16 | wherein he will neither die nor remain alive. 17 | To happiness [in the life to come] will indeed attain he who attains to purity [in this world], 18 | and remembers his Sustainer's name, and prays [unto Him]. 19 | But nay, [O men,] you prefer the life of this world, 20 | although the life to come is better and more enduring. 21 | Verily, [all] this has indeed been [said] in the earlier revelations – 22 | the revelations of Abraham and Moses. 23 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/088.txt: -------------------------------------------------------------------------------- 1 | Has there come unto thee the tiding of the Overshadowing Event?' 2 | Some faces will on that Day be downcast, 3 | toiling [under burdens of sin], worn out [by fear], 4 | about to enter a glowing fire, 5 | given to drink from a boiling spring. 6 | No food for them save the bitterness of dry thorns, 7 | which gives no strength and neither stills hunger. 8 | [And] some faces will on that Day shine with bliss, 9 | well-pleased with [the fruit of] their striving, 10 | in a garden sublime, 11 | wherein thou wilt hear no empty talk. 12 | Countless springs will flow therein, 13 | [and] there will be thrones [of happiness] raised high, 14 | and goblets placed ready, 15 | and cushions ranged, 16 | and carpets spread out. 17 | ⁋ 18 | Do, then, they [who deny resurrection] never gaze at the clouds pregnant with water, [and observe] how they are created? 19 | And at the sky, how it is raised aloft? 20 | And at the mountains, how firmly they are reared? 21 | And at the earth, how it is spread out? 22 | And so, [O Prophet,] exhort them; thy task is only to exhort: 23 | thou canst not compel them [to believe]. 24 | However, as for him who turns away, being bent on denying the truth, 25 | him will God cause to suffer the greatest suffering [in the life to come]: 26 | for behold, unto Us will be their return, 27 | and verily, It is for Us to call them to account. 28 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/089.txt: -------------------------------------------------------------------------------- 1 | Consider the daybreak 2 | and the ten nights! 3 | Consider the multiple and the One! 4 | Consider the night as it runs its course! 5 | Considering all this - could there be, to anyone endowed with reason, a [more] solemn evidence of the truth? 6 | Art thou not aware of how thy Sustainer has dealt with [the tribe of] 'Ad, 7 | [the people of] Iram the many-pillared, 8 | the like of whom has never been reared in all the land? – 9 | and with [the tribe of] Thamud, who hollowed out rocks in the valley? – 10 | and with Pharaoh of the [many] tent-poles? 11 | [It was they] who transgressed all bounds of equity all over their lands, 12 | and brought about great corruption therein: 13 | and therefore thy Sustainer let loose upon them a scourge of suffering: 14 | for, verily, thy Sustainer is ever on the watch! 15 | ⁋ 16 | But as for man, whenever his Sustainer tries him by His generosity and by letting him enjoy a life of ease, 17 | he says, "My Sustainer has been [justly] generous towards me"; 18 | whereas, whenever He tries him by straitening his means of livelihood, he says, "My Sustainer has disgraced me!" 19 | But nay, nay, [O men, consider all that you do and fail to do:] you are not generous towards the orphan, 20 | and you do not urge one another to feed the needy, 21 | and you devour the inheritance [of others] with devouring greed, 22 | and you love wealth with boundless love! 23 | Nay, but [how will you fare on Judgment Day,] when the earth is crushed with crushing upon crushing, 24 | and [the majesty of] thy Sustainer stands revealed, 25 | as well as [the true nature of] the angels; rank upon rank? 26 | ⁋ 27 | And on that Day hell will be brought [within sight]; 28 | on that Day man will remember [all that he did and failed to do]: but what will that remembrance avail him? 29 | He will say, "Oh, would that I had. provided beforehand for my life [to come]!" 30 | For, none can make suffer as He will make suffer [the sinners] on that Day, 31 | and none can bind with bonds like His. 32 | [But unto the righteous God will say,] "O thou human being that hast attained to inner peace! 33 | Return thou unto thy Sustainer, well-pleased [and] pleasing [Him]: 34 | enter, then, together with My [other true] servants – 35 | yea, enter thou My paradise!" 36 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/090.txt: -------------------------------------------------------------------------------- 1 | Nay! I call to witness this land 2 | this land in which thou art free to dwell - 3 | and [I call to witness] parent and offspring: 4 | Verily, We have created man into [a life of] pain, toil and trial. 5 | Does he, then, think that no one has power over him? 6 | He boasts, "I have spent wealth abundant!" 7 | Does he, then, think that no one sees him? 8 | Have We not given him two eyes, 9 | and a tongue, and a pair of lips, 10 | and shown him the two highways [of good and evil]? 11 | But he would not try to ascend the steep uphill road... 12 | And what could make thee conceive what it is, that steep uphill road? 13 | ⁋ 14 | [It is] the freeing of one's neck [from the burden of sin], 15 | or the feeding, upon a day of [one's own] hunger, 16 | of an orphan near of kin, 17 | or of a needy [stranger] lying in the dust 18 | and being, withal, of those who have attained to faith, 19 | and who enjoin upon one another patience in adversity, 20 | and enjoin upon one another compassion. 21 | Such are they that have attained to righteousness; 22 | whereas those who are bent on denying the truth of Our messages 23 | they are such as have lost themselves in evil, 24 | [with] fire closing in upon them. 25 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/091.txt: -------------------------------------------------------------------------------- 1 | Consider the sun and its radiant brightness, 2 | and the moon as it reflects the sun! 3 | Consider the day as it reveals the world, 4 | and the night as it veils it darkly! 5 | Consider the sky and its wondrous make, 6 | and the earth and all its expanse! 7 | Consider the human self, and how it is formed in accordance with what it is meant to be, 8 | and how it is imbued with moral failings as well as with consciousness of God! 9 | To a happy state shall indeed attain he who causes this [self] to grow in purity, 10 | and truly lost is he who buries it [in darkness]. 11 | ⁋ 12 | To [this] truth gave the lie, in their overweening arrogance, [the tribe of] Thamud, 13 | when that most hapless wretch from among them rushed forward [to commit his evil deed], 14 | although God's apostle had told them, 15 | "It is a she-camel belonging to God, so let her drink [and do her no harm]!" 16 | But they gave him the lie, and cruelly slaughtered her - 17 | whereupon their Sustainer visited them with utter destruction for this their sin, 18 | destroying them all alike: 19 | for none [of them] had any fear of what might befall them. 20 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/092.txt: -------------------------------------------------------------------------------- 1 | Consider the night as it veils [the earth] in darkness, 2 | and the day as it rises bright! 3 | Consider the creation of the male and the female! 4 | Verily, [O men,] you aim at most divergent ends! 5 | Thus, as for him who gives [to others] and is conscious of God, 6 | and believes in the truth of the ultimate good - 7 | for him shall We make easy the path towards [ultimate] ease. 8 | But as for him who is niggardly, and thinks that he is self-sufficient, 9 | and calls the ultimate good a lie 10 | for him shall We make easy the path towards hardship: 11 | and what will his wealth avail him when he goes down [to his grave]? 12 | ⁋ 13 | Behold, it is indeed for Us to grace [you] with guidance; 14 | and, behold, Ours is [the dominion over] the life to come as well as [over] this earlier part [of your life]: 15 | and so I warn you of the raging fire - 16 | [the fire] which none shall have to endure but that most hapless wretch 17 | who gives the lie to the truth and turns away [from it]. 18 | For, distant from it shall remain he who is truly conscious of God: 19 | he that spends his possessions [on others] so that he might grow in purity 20 | not as payment for favours received, 21 | but only out of a longing for the countenance of his Sustainer, the All-Highest: 22 | and such, indeed, shall in time be well-pleased. 23 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/093.txt: -------------------------------------------------------------------------------- 1 | Consider the bright morning hours, 2 | and the night when it grows still and dark. 3 | Thy Sustainer has not forsaken thee, nor does He scorn thee: 4 | for, indeed, the life to come will be better for thee than this earlier part [of thy life]! 5 | And, indeed, in time will thy Sustainer grant thee [what thy heart desires], and thou shalt be well-pleased. 6 | Has He not found thee an orphan, and given thee shelter? 7 | And found thee lost on thy way, and guided thee? 8 | And found thee in want, and given thee sufficiency? 9 | Therefore, the orphan shalt thou never wrong, 10 | and him that seeks [thy] help shalt thou never chide, 11 | and of thy Sustainer's blessings shalt thou [ever] speak. 12 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/094.txt: -------------------------------------------------------------------------------- 1 | Have We not opened up thy heart, 2 | and lifted from thee the burden 3 | that had weighed so heavily on thy back? 4 | And [have We not] raised thee high in dignity? 5 | And, behold, with every hardship comes ease: 6 | verily, with every hardship comes ease! 7 | Hence, when thou art freed [from distress], remain steadfast, 8 | and unto thy Sustainer turn with love. 9 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/095.txt: -------------------------------------------------------------------------------- 1 | Consider the fig and the olive, 2 | and Mount Sinai, 3 | and this land secure! 4 | Verily, We create man in the best conformation; 5 | and thereafter We reduce him to the lowest of low 6 | excepting only such as attain to faith and do good works: 7 | and theirs shall be a reward unending! 8 | What, then, [Oman,] could henceforth cause thee to give the lie to this moral law? 9 | Is not God the most just of judges? 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/096.txt: -------------------------------------------------------------------------------- 1 | Read in the name of thy Sustainer, who has created 2 | created man out of a germ-cell! 3 | Read - for thy Sustainer is the Most Bountiful One 4 | who has taught [man] the use of the pen 5 | taught man what he did not know! 6 | Nay, verily, man becomes grossly overweening 7 | whenever he believes himself to be self-sufficient: 8 | for, behold, unto thy Sustainer all must return. 9 | Hast thou ever considered him who tries to prevent 10 | a servant [of God] from praying? 11 | ⁋ 12 | Hast thou considered whether he is on the right way, 13 | or is concerned with God- consciousness? 14 | Hast thou considered whether he may [not] be giving the lie to the truth and turning his back [upon it]? 15 | Does he, then, not know that God sees [all]? 16 | Nay, if he desist not, We shall most surely drag him down upon his forehead 17 | the lying, rebellious forehead! 18 | and then let him summon [to his aid] the counsels of his own [spurious] wisdom, 19 | [the while] We shall summon the forces of heavenly chastisement! 20 | Nay, pay thou no heed to him, but prostrate thyself [before God] and draw close [unto Him]! 21 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/097.txt: -------------------------------------------------------------------------------- 1 | Behold, from on high have We bestowed this [divine writ] on Night of Destiny. 2 | And what could make thee conceive what it is, that Night of Destiny? 3 | The Night of Destiny is better than a thousand months: 4 | in hosts descend in it the angels, bearing divine inspiration by their Sustainer's leave; 5 | from all [evil] that may happen 6 | does it make secure, until the rise of dawn. 7 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/098.txt: -------------------------------------------------------------------------------- 1 | It is not [conceivable] that such as are bent on denying the truth - 2 | [be they] from among the followers of earlier revelation or from among those who ascribe divinity to aught beside God - 3 | should ever be abandoned [by Him] ere there comes unto them the [full] evidence of the truth: 4 | an apostle from God, conveying [unto them] revelations blest with purity, 5 | wherein there are ordinances of ever-true soundness and clarity. 6 | Now those who have been vouchsafed revelation aforetime did break up their unity [of faith] after such an evidence of the truth had come to them. 7 | And withal, they were not enjoined aught but that they should worship God, 8 | sincere in their faith in Him alone, turning away from all that is false; 9 | and that they should be constant in prayer; 10 | and that they should spend in charity: 11 | for this is a moral law endowed with ever-true soundness and clarity. 12 | ⁋ 13 | Verily, those who [despite all evidence] are bent on denying the truth - 14 | [be they] from among the followers of earlier revelation or from among those who ascribe divinity to aught beside God - 15 | will find themselves in the fire of hell, therein to abide: 16 | they are the worst of all creatures. 17 | [And,] verily, those who have attained to faith, and do righteous deeds - 18 | it is they, they who are the best of all creatures. 19 | Their reward [awaits them] with God: 20 | gardens of perpetual bliss, through which running waters flow, 21 | therein to abide beyond the count of time; well-pleased is God with them, 22 | and well-pleased are they with Him: 23 | all this awaits him who of his Sustainer stands in awe! 24 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/099.txt: -------------------------------------------------------------------------------- 1 | When the earth quakes with her [last] mighty quaking, 2 | and [when] the earth yields up her burdens, 3 | and man cries out, "What has happened to her?" - 4 | on that Day will she recount all her tidings, 5 | as thy Sustainer will have inspired her to do! 6 | On that Day will all men come forward, cut off from one another, 7 | to be shown their [past] deeds. 8 | And so, he who shall have done an atom's weight of good, shall behold it; 9 | and he who shall have done an atom's weight of evil, shall behold it. 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/100.txt: -------------------------------------------------------------------------------- 1 | Oh, the chargers that run panting, 2 | sparks of fire striking, 3 | rushing to assault at morn, 4 | thereby raising clouds of dust, 5 | thereby storming [blindly] into any host! 6 | Verily, towards his Sustainer man is most ungrateful 7 | and to this, behold, he [himself] bears witness indeed: 8 | for, verily, to the love of wealth is he most ardently devoted. 9 | But does he not know that [on the Last Day,] when all that is in the graves is raised and brought out, 10 | and all that is [hidden] in men's hearts is bared 11 | that on that Day their Sustainer [will show that He] has always been fully aware of them? 12 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/101.txt: -------------------------------------------------------------------------------- 1 | Oh, the sudden calamity! 2 | How awesome the sudden calamity! 3 | And what could make thee conceive what that sudden calamity will be? 4 | [It will occur] on the Day when men will be like moths swarming in confusion, 5 | and the mountains will be like fluffy tufts of wool.... 6 | And then, he whose weight [of good deeds] is heavy in the balance 7 | shall find himself in a happy' state of life; 8 | whereas he whose weight is light in the balance 9 | shall be engulfed by an abyss. 10 | And what could make thee conceive what that [abyss] will be? 11 | A fire hotly burning! 12 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/102.txt: -------------------------------------------------------------------------------- 1 | You are obsessed by greed for more and more 2 | until you go down to your graves. 3 | Nay, in time you will come to understand! 4 | And once again: Nay, in time you will come to understand! 5 | Nay, if you could but understand [it] with an understanding [born] of certainty, 6 | you would indeed, most surely, behold the blazing fire [of hell]! 7 | In the end you will indeed, most surely, behold it with the eye of certainty: 8 | and on that Day you will most surely be called to account for [what you did with] the boon of life! 9 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/103.txt: -------------------------------------------------------------------------------- 1 | Consider the flight of time! 2 | Verily, man is bound to lose himself 3 | unless he be of those who attain to faith, and do good works, 4 | and enjoin upon one another the keeping to truth, 5 | and enjoin upon one another patience in adversity. 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/104.txt: -------------------------------------------------------------------------------- 1 | Woe unto every slanderer, fault-finder! 2 | [Woe unto him] who amasses wealth and counts it a safeguard, 3 | thinking that his wealth will make him live forever! 4 | Nay, but [in the life to come such as] he shall indeed be abandoned to crushing torment! 5 | And what could make thee conceive what that crushing torment will be? 6 | A fire kindled by God, 7 | which will rise over the [guilty] hearts: 8 | verily, it will close in upon them 9 | in endless columns! 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/105.txt: -------------------------------------------------------------------------------- 1 | Art thou not aware of how thy Sustainer dealt with the Army of the Elephant? 2 | Did He not utterly confound their artful planning? 3 | Thus, He let loose upon them great swarms of flying creatures 4 | which smote them with stone-hard blows of chastisement pre-ordained, 5 | and caused them to become like a field of grain that has been eaten down to stubble – 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/106.txt: -------------------------------------------------------------------------------- 1 | So that the Quraysh might remain secure, 2 | secure in their winter and summer journeys, 3 | Let them, therefore, worship the Sustainer of this Temple; 4 | who has given them food against hunger, and made them safe from danger. 5 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/107.txt: -------------------------------------------------------------------------------- 1 | Hast thou ever considered [the kind of man] who gives the lie to all moral law? 2 | Behold, it is this [kind of man] that thrusts the orphan away, 3 | and feels no urge to feed the needy. 4 | Woe, then, unto those praying ones 5 | whose hearts from their prayer are remote 6 | those who want only to be seen and praised, 7 | and, withal, deny all assistance [to their fellow-men]! 8 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/108.txt: -------------------------------------------------------------------------------- 1 | Behold, We have bestowed upon thee good in abundance: 2 | hence, pray unto thy Sustainer [alone], and sacrifice [unto Him alone]. 3 | Verily, he that hates thee has indeed been cut off [from all that is good]! 4 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/109.txt: -------------------------------------------------------------------------------- 1 | Say: "O you who deny the truth! 2 | "I do not worship that which you worship, 3 | and neither do you worship that which I worship! 4 | "And I will not worship that which you have [ever] worshipped, 5 | and neither will you [ever] worship that which I worship. 6 | Unto you, your moral law, and unto me, mine !" 7 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/110.txt: -------------------------------------------------------------------------------- 1 | When God's succour comes, and victory, 2 | and thou seest people enter God's religion in hosts, 3 | extol thy Sustainer's limitless glory, and praise Him, and seek His forgiveness: 4 | for, behold, He is ever an acceptor of repentance. 5 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/111.txt: -------------------------------------------------------------------------------- 1 | Doomed are the hands of him of the glowing countence: and doomed is he! 2 | What will his wealth avail him, and all that he has gained? 3 | [In the life to come] he shall have to endure a fire fiercely glowing; 4 | together with his wife, that carrier of evil tales, 5 | [who bears] around her neck a rope of twisted strands! 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/112.txt: -------------------------------------------------------------------------------- 1 | Say: "He is the One God: 2 | "God the Eternal, the Uncaused Cause of All Being. 3 | "He begets not, and neither is He begotten; 4 | "and there is nothing that could be compared with Him." 5 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/113.txt: -------------------------------------------------------------------------------- 1 | Say: "I seek refuge with the Sustainer of the rising dawn, 2 | "from the evil of aught that He has created, 3 | "and from the evil of the black darkness whenever it descends, 4 | "and from the evil of all human beings bent on occult endeavours, 5 | "and from the evil of the envious when he envies." 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/en.lproj/114.txt: -------------------------------------------------------------------------------- 1 | Say: "I seek refuge with the Sustainer of men, - 2 | "the Sovereign of men, 3 | "the God of men, 4 | "from the evil of the whispering, elusive tempter 5 | "who whispers in the hearts of men 6 | "from all [temptation to evil by] invisible forces as well as men." 7 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/001.txt: -------------------------------------------------------------------------------- 1 | Rahmân, Rahîm Allah adına: 2 | Her türlü övgü yalnızca Allah'a özgüdür, bütün âlemlerin Rabbi, 3 | Rahmân, Rahîm, 4 | Hesap Günü'nün Hâkimi. 5 | Yalnız Sana kulluk eder; ve yalnız senden yardım dileriz. 6 | Bizi dosdoğru yola ilet, 7 | Nimet bahşettiklerinin yoluna; 8 | gazab(ın)a uğrayanların ve sapkınlarınkine değil! 9 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/062.txt: -------------------------------------------------------------------------------- 1 | Göklerde ve yerde olan her şey, Mülkün Sahibi, Mukaddes, 2 | Kudret ve Hikmet Sahibi Allah'ın sınırsız şanını yüceltmektedir. 3 | O, Kitap ile ilgisiz bir topluma, kendi içlerinden kendilerine Allah'ın mesajlarını aktaran, onları arındıran, 4 | ilahî kelâmı ve hikmeti öğreten bir elçi göndermiştir ki, o'ndan önce, açık bir sapıklık içindeydiler; 5 | ve başka toplumlarla temasa geçmeleri sonucunda, 6 | kendilerinden diğerlerine (bu mesajın yayılmasını sağlamıştır): çünkü yalnız O, güç ve hikmet Sahibidir. 7 | Bu, Allah'ın lütfudur: Allah, onu, (elde etmek) isteyen herkese bağışlar: çünkü Allah lütfunda sınırsızdır. 8 | Tevrat'ın yükü ile onurlandırılmış iken bu yükü taşıyamamış olanların durumu, 9 | sırtına kitaplar yüklenmiş (ama onlardan habersiz bulunan) merkebin durumuna benzer. 10 | Allah'ın mesajlarını yalanlamaya şartlanmış olanların durumu ne acıdır, 11 | çünkü Allah rehberliğini böyle zalim bir halka ihsan etmez! 12 | De ki: "Siz ey Yahudi akîdesine mensup olanlar! Eğer, 13 | (yalnız) kendinizin Allah'a yakın olduğunu iddia eder ve diğer bütün insanları dışlarsanız, 14 | o zaman ölümü özlüyorsunuz demektir; eğer söylediğinizde samimî iseniz!" 15 | ⁋ 16 | Ama aslında onu hiçbir zaman özlemezler, çünkü bu dünyada kendi elleriyle yapıp-ettiklerini(n farkındadırlar); ve Allah zalimleri hakkıyla bilendir. 17 | De ki: "Bakın, kendisinden kaçtığınız ölüm, eninde sonunda sizi yakalayacaktır; 18 | o zaman, hem yaratılmışların zihinsel kavrayışlarının ötesinde olanları, 19 | hem de duyular yoluyla yahut akıl ile kavranabilen şeyleri bilen Allah'a döndürüleceksiniz; 20 | ve O, orada size (hayatta iken) yaptıklarınızın tümünü gösterecektir. 21 | Siz ey imana ermiş olanlar! Cuma günü namaz için çağrıldığınızda her türlü dünyevî alış verişi bırakıp Allah'ı anmaya koşun: eğer bilseniz, bu sizin yararınızadır. 22 | Ve namaz bittiğinde yeryüzüne serbestçe dağılın ve Allah'ın lütfundan (rızkınızı) aramaya devam edin; 23 | mutluluğa ulaşabilmek için de Allah'ı sıkça anın! 24 | Ama insanlar, dünyevî bir kazanç (fırsatı) veya geçici bir eğlence gördükleri zaman ona doğru koşup seni ayakta (ve konuşur durumda) bırakıverirler. 25 | De ki: "Allah katında olan, bütün geçici eğlencelerden ve bütün kazançlardan çok daha hayırlıdır! 26 | Ve Allah rızık verenlerin en iyisidir!" 27 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/063.txt: -------------------------------------------------------------------------------- 1 | İkiyüzlüler sana geldiklerinde: "Senin gerçekten Allah'ın Elçisi olduğuna tanıklık ederiz!" derler. 2 | Ama Allah, senin Kendi Elçisi olduğunu bilir; 3 | ve Allah, ikiyüzlülerin (inandık demelerinde) asla samimî olmadıklarına tanıklık eder. 4 | Onlar yeminlerini (yalan ve sahtekarlıklarına) kalkan yapmakta ve böylece başkalarını Allah yolundan saptırmaktadırlar. 5 | Yaptıkları, gerçekten çok çirkindir: 6 | böyledir, çünkü onlar imana erdi(klerini iddia eder)ler, 7 | halbuki (içlerinde) hakikati inkar ederler ve böylece, kalplerine bir mühür vurulmuştur, 8 | artık (neyin doğru, neyin yanlış olduğunu) anlayamazlar. 9 | Şimdi sen onları gördüğünde dış görünüşleri hoşuna gider; ve konuştuklarında ne söylediklerine kulak vermek istersin. 10 | Onlar, yere (sağlam şekilde) dikilmiş kütükler gibi (olduklarına emin görünseler de) her çığlığı kendilerine (yönelik) sanırlar. 11 | ⁋ 12 | Onlar (bütün inançlara) düşmandırlar, öyleyse onlara karşı dikkatli ol. 13 | (Ve bedduayı hak ederler:) "Allah onları kahretsin!" Akılları nasıl da (hakikatten) sapıyor! 14 | Çünkü onlara: "Gelin, Allah'ın Elçisi bağışlanmanız için (Allah'a) dua edecek!" dendiği zaman başlarını çevirirler 15 | ve sen onların sahte bir kibirle nasıl çekip gittiklerini görürsün. 16 | Onlar için bağışlanma dilemen ile dilememen aynıdır: 17 | Allah onları bağışlamayacaktır, çünkü Allah, böyle sapkın bir halka rehberliğini bahşetmez. 18 | Onlar, (hemşehrilerine): "Allah'ın Elçisi ile birlikte olanlara hiçbir şey vermeyin ki belki o'nu terk et(mek zorunda kal)ırlar" derler. 19 | Göklerin ve yerin hazineleri Allah'ındır: ama bu gerçeği ikiyüzlüler kavrayamaz. 20 | ⁋ 21 | (Ve) onlar: "Kente döndüğümüzde şan şeref sahibi olan (biz)ler, zavallı bîçâreleri oradan sürüp atacaktır!" derler. 22 | Ama asıl şeref, Allah'a, O'nun Elçisi'ne ve inananlara aittir: ama ikiyüzlüler bunun farkında değiller. 23 | Siz ey imana ermiş olanlar! Malınızın mülkünüzün veya çocuklarınızın sizi Allah'ı anmaktan alıkoymasına izin vermeyin: 24 | çünkü böyle davranan herkes ziyana uğrayanlardan olur! 25 | Birinize ölüm yaklaştığı ve "Ey Rabbim! Bana bir mühlet tanısan da karşılıksız yardımda bulunup iyiler arasına girsem!" diye 26 | (yalvara)cağı zaman gelip çatmadan önce size rızık olarak verdiğimizden harcayın. 27 | Ama, vakti geldiğinde Allah hiçbir insana mühlet tanımaz; ve Allah bütün yaptıklarınızı tam olarak bilir.64:1 28 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/073.txt: -------------------------------------------------------------------------------- 1 | Ey örtülere bürünen (insan)! 2 | Gece biraz ilerleyince (namaz için) kalk; 3 | gece yarısı -biraz önce 4 | ya da sonra- (kalk) ve ağır ağır, duyarak Kur'an oku. 5 | Biz sana (sorumluluğu) ağır bir mesaj tevdî edeceğiz; 6 | (ve) gerçek şu ki, gece vakti zihin daha zinde ve güçlü olur ve okuma daha da berraklaşır, 7 | halbuki gündüzleri seni meşgul edecek yığınla iş var, 8 | ama (hem gece hem gündüz) Rabbinin adını an ve bütün varlığınla kendini O'na ada. 9 | (O'dur) doğunun ve batının Rabbi; O'ndan başka tanrı yoktur: öyleyse, kaderini belirleme gücünü yalnız O'na izafe et, 10 | halkın (senin aleyhinde) söyleyebileceği her şeye sabırla katlan ve onlardan uygun şekilde uzaklaş. 11 | ⁋ 12 | Ve nimet içinde oldukları halde (Allah'tan geldiğini umursamadan) hakikati yalanlayanları Bana bırak; onlara bir süre daha dayan: 13 | çünkü, Katımızda ağır prangalar ve yakıcı bir alev (onları beklemektedir), 14 | boğaza takılan yiyecek ve şiddetli bir azap, 15 | yeryüzünün ve dağların sarsılacağı ve (parçalanarak) savrulan bir kum yığını haline geleceği o Gün! 16 | Bakın (ey insanlar!) Firavun'a bir elçi gönderdiğimiz gibi size de karşınızda hakikate tanıklık yapacak bir elçi gönderdik: 17 | ve Firavun elçiye isyan etti, bunun üzerine Biz de onu kahredici bir tutuşla kıskıvrak yakaladık. 18 | Öyleyse, hakikati kabul etmeye yanaşmazsanız, çocukların saçlarını ağartan o Gün kendinizi nasıl koruyacaksınız, 19 | göklerin paramparça olacağı, (ve) Allah'ın (yeniden diriltme) vaadinin gerçekleşeceği (Gün)? 20 | Bu, şüphesiz, bir öğüt ve uyarıdır: öyleyse, dileyen Rabbine ulaştıran yola koyulsun! 21 | ⁋ 22 | (Ey Peygamber!) Rabbin, senin ve beraberindekilerin gecenin üçte ikisini, 23 | yahut yarısını, yahut üçte birini (namaz için) uyanık geçirdiğini bilir. 24 | Gecenin ve gündüzün ölçüsünü koyan Allah, sizin onu küçümsemeyeceğinizi bilir: ve bu sebeple O rahmetiyle size yaklaşır. 25 | O halde Kur'an'ın kolayca okuyabileceğiniz kadarını okuyun. 26 | Allah, zaman zaman içinizde hastalar, Allah'ın lütfunu aramak için yola koyulanlar ve Allah yolunda savaşa çıkanlar olacağını bilir. 27 | Öyleyse ondan (yalnızca) kolayca okuyabileceğiniz kadarını okuyun, 28 | namazınızda devamlı ve dikkatli olun ve karşılıksız harcamada bulunun ve (böylece) Allah'a güzel bir borç verin: 29 | çünkü kendi adınıza güzel ne iş yaparsanız karşılığını aynen Allah katında görürsünüz; 30 | evet, daha iyi ve daha zengin bir ödül olarak. 31 | Ve (daima) Allah'ın bağışlayıcılığını arayın: kuşkusuz Allah çok bağışlayıcıdır, rahmet kaynağıdır! 32 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/075.txt: -------------------------------------------------------------------------------- 1 | Kıyamet günü'nü tanıklığa çağırırım! 2 | İnsan vicdanının kınayan sesini tanıklığa çağırırım! 3 | İnsan, (onu tekrar diriltip) kemiklerini yeniden bir araya getiremeyeceğimizi mi sanıyor? 4 | Hayır, kesinlikle! Onu parmak uçlarına kadar yeniden var etmeye kâdiriz! 5 | Ama yine de insan, önüne serilmiş olan şeyi inkara kalkışır, 6 | ve (istihzâ ile) sorar: "Şu Kıyamet Günü ne zaman gelecekmiş?" 7 | Ama (o Gün,) gözler korku ile açıldığında, 8 | ve ay karanlığa gömüldüğünde, 9 | ve güneş ile ay bir araya getirildiğinde, 10 | o Gün insan haykıracak: "(Eyvah!) Nereye kaçayım?" 11 | Hayır! Bir sığınak yok (senin için, ey insan)! 12 | O gün bütün yolların varış yeri, Rabbinin katı olacak! 13 | ⁋ 14 | O gün insana, yaptığı ve yapmadığı her şey bildirilecek: 15 | hayır, aslında insan, kendi aleyhine şahitlik yapacak, 16 | mazeretler bulup kendi (yaptıkları)nı gizlemeye çalışsa bile. 17 | (Vahyin sözlerini tekrarlarken) dilini hızla oynatıp durma: 18 | çünkü onu (senin kalbine) yerleştirmek ve (gerektiğinde) okutturmak Bizim işimizdir. 19 | Böylece, onu telaffuz ettiğimiz zaman, kelimelerini (bütün zihnini vererek) takip et: 20 | sonra onun anlamını açıklamak da Bize düşer: 21 | (Çoğunuz) bu geçici hayatı seviyorsunuz, 22 | ama öteki dünyayı (ve Hesap Günü'nü) hiç düşünmüyorsunuz! 23 | Bazı yüzler o Gün mutlulukla parlayacak, 24 | Rablerine bakarken; 25 | ve o Gün bazı yüzler ümitsizlikle kararacak, 26 | çatırdatan bir felaketin başlarına gelmek üzere olduğunu bilerek. 27 | ⁋ 28 | Ne zaman ki, (son nefes ölen birinin) boğazına gelip düğümlenir, 29 | ve insanlar: "(onu kurtaracak) bir hekim yok mu?" diye sorarlar; 30 | kendisi de bilir ki bu ayrılma vaktidir, 31 | ve ölüm sancıları ile örülmektedir: 32 | işte o zaman gidişinin Rabbine doğru olduğunu hisseder! 33 | (Artık son pişmanlık fayda etmez:) çünkü (yaşadığı sürece) hakikati kabul etmedi ve (aydınlığa kavuşmak için) namaz kılmadı; 34 | tam tersine, hakikati yalanladı ve (ondan) uzaklaştı, 35 | ve sonra böbürlenerek geldiği yere döndü. 36 | (Ama ey insan, akibetin geliyor her dakika) yakınına, daha da yakınına, 37 | yakınına, daha da yakınına! 38 | İnsan, başıboş bırakılacağını ve dilediği gibi hareket edebileceğini mi sanır? 39 | O, bir zamanlar (sadece) akıtılan bir meni damlası değil miydi, 40 | ve sonra döllenmiş hücre; bu safhada Allah (onu) yaratmış ve olması gerektiği gibi şekil vermişti, 41 | ve ondan iki cinsi, erkeği ve dişiyi var etmişti? 42 | Öyleyse, Allah, ölüyü hayata yeniden döndüremez mi? 43 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/080.txt: -------------------------------------------------------------------------------- 1 | O, suratını astı ve uzaklaştı, 2 | çünkü kör bir adam o'na yaklaşmıştı! 3 | Nereden bilebilirsin (ey Muhammed,) belki de o arınacaktı, 4 | yahut (hakikat) hatırlatılacak ve bu hatırlatma kendisine fayda verecekti. 5 | Ama kendini her şeye yeterli görene gelince, 6 | sen bütün ilgiyi ona gösterdin, 7 | halbuki onun arınmaktan geri kalmasının sorumlusu sen değilsin; 8 | ama sana büyük bir istekle geleni 9 | ve (Allah) korkusu ile (yaklaşanı) 10 | sen görmezden geldin! 11 | ⁋ 12 | Elbette, bu (mesaj)lar yalnızca birer hatırlatma ve öğütten ibarettir: 13 | kim istekliyse O'nu hatırlayıp öğüt alabilir 14 | (O'nun) kutsal ve soylu vahiyleri (ışığında), 15 | yüce ve arı-duru, 16 | elçilerin elleriyle (yayılıp duyurulan), 17 | seçkin ve erdem sahibi (elçilerin). 18 | (Ama çoğu zaman) insan kendini mahveder: hakikati ne kadar inatla inkar eder o! 19 | (İnsan hiç düşünür mü) hangi özden yaratır (Allah) onu? 20 | Bir sperm damlasından yaratır ve sonra onun tabiatını oluşturur; 21 | sonra hayatı onun için kolaylaştırır; 22 | ve sonunda onu öldürür ve kabre koyar; 23 | ve sonra, dilediğinde onu tekrar diriltir. 24 | ⁋ 25 | Hayır, (insan) Allah'ın kendisine buyurduklarını henüz yerine getirmiş değildir! 26 | Öyleyse insan, yiyeceklerin(in kaynağın)a bir baksın: 27 | (nasıl) suyu bolca indirmekteyiz; 28 | ve sonra toprağı (daha da büyüterek) parça parça yarmaktayız, 29 | bu sayede ondan tahıllar yetiştirmekteyiz, 30 | ve üzüm bağları ve yenebilir otlar, 31 | zeytin ağaçları ve hurmalıklar, 32 | ve ağaçlarla dolu bahçeler, 33 | meyveler ve otlar, 34 | sizin için ve hayvanlarınızın beslenmesi için. 35 | ⁋ 36 | Ve böylece, (yeniden dirilmenin) o kulakları sağır eden çağrısı duyulduğunda, 37 | herkesin kardeşinden kaç(mak iste)diği Gün, 38 | annesinden ve babasından, 39 | eşinden ve çocuklarından: 40 | o Gün her birinin durumu kendisi için yeterli bir endişe kaynağı olacak. 41 | Bazı yüzler o Gün mutlulukla parıldayacak, 42 | güleç ve müjdelere sevinen. 43 | Bazı yüzler de o Gün toz-toprakla kapanacak, 44 | her yanı kuşatan bir karanlıkla: 45 | işte bunlar, hakikati inkar eden ve yoldan sapan kimselerdir. 46 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/081.txt: -------------------------------------------------------------------------------- 1 | Güneş, karanlığa gömüldüğünde, 2 | ve yıldızlar ışıklarını yitirdiğinde, 3 | dağlar kaybolup gittiğinde, 4 | ve doğurmak üzere olan dişi develer başıboş bırakıldığında, 5 | bütün hayvanlar bir araya toplandığında, 6 | ve denizler kaynadığında, 7 | bütün insanlar (yaptıklarıyla) eşleştirildiğinde, 8 | ve diri diri gömülen kız çocuklarına sorulduğunda 9 | hangi suçtan dolayı öldürüldükleri, 10 | (insanların yapıp-ettiklerinin) dosyaları açıldığında, 11 | ve gökyüzü açılıp ortaya serildiğinde, 12 | (cehennemin) yakıcı ateşi parladığında, 13 | ve cennet gözler önüne getirildiğinde, 14 | (o Gün) her insan, (kendisi için) ne hazırlamış olduğunu görecektir. 15 | ⁋ 16 | Hayır! Hayır! Dönüp duran yıldızları tanıklığa çağırırım, 17 | yörüngelerinde akan ve kaybolan gezegenleri, 18 | ve kararan geceyi, 19 | ve soluk almaya başlayan sabahı: 20 | bakın, bu (ilahî kelâm), gerçekten soylu bir elçinin (vahyedilmiş) sözüdür, 21 | güç bahşedilmiş, kudret ve egemenlik tahtının Sahibi nezdinde emin kılınmış, 22 | itaat edilen ve güvene layık birinin (sözü)! 23 | Çünkü, bu arkadaşınız bir deli değil: 24 | o gerçekten (meleği) gördü, berrak bir ufukta (gördü) onu; 25 | o, (başka birine vahyedilmiş olan) insan kavrayışının ötesindeki şeylerin bilgisinden dolayı onları kıskanan biri değildir. 26 | Bu (mesaj), lânetlenmiş bir şeytanî gücün sözü de değildir. 27 | Öyleyse nereye gidiyorsunuz? 28 | Bu (mesaj), bütün insanlık için bir öğüt ve hatırlatmadan başka bir şey değildir, 29 | doğru yolda yürümek isteyen her biriniz için. 30 | Ama Allah, bütün âlemlerin Rabbi, (o yolu size göstermeyi) istemedikçe siz onu isteyemezsiniz. 31 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/082.txt: -------------------------------------------------------------------------------- 1 | Gökyüzü parçalanıp yarıldığında, 2 | ve yıldızlar dağılıp savrulduğunda, 3 | denizler kabarıp taştığında, 4 | ve kabirler alt-üst olduğunda, 5 | her insan, (sonunda,) ilerisi için ne hazırladığını ve (bu dünyada) ne bıraktığını anlayacaktır. 6 | Ey İnsan! Nedir seni lütuf sahibi Rabbinden uzaklaştıran, 7 | seni yaratan ve varlık amacına uygun olarak şekillendiren, tabiatını adil ölçüler içinde oluşturan, 8 | ve seni dilediği şekilde bir araya getiren (Rabbinden)? 9 | Hayır, (ey insanlar,) siz (Allah'ın) hükmünü yalanla(maya ne zaman kalkıştıysanız Allah'tan uzaklaş)tınız! 10 | ⁋ 11 | Halbuki üzerinizde gözetleyici güçler vardır, 12 | değerli kaydedici(ler), 13 | yaptığınız her şeyin farkında olan! 14 | Bakın, (öteki dünyada) gerçek erdem sahipleri nimetler içinde bulunacaklar, 15 | kötü ruhlular ise yakıcı bir ateş içinde, 16 | (bir ateş ki) Hesap Günü ortasına düşerler, 17 | ve ondan kurtulmaları mümkün olmaz. 18 | Hesap Günü nedir bilir misin? 19 | Ve bir kez daha: Hesap Günü nedir bilir misin? 20 | Hiçbir insanın başka birine zerre fayda sağlayamayacağı bir Gün(dür o): 21 | çünkü o Gün (açık seçik görülecektir ki) hakimiyet yalnız Allah'a aittir. 22 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/083.txt: -------------------------------------------------------------------------------- 1 | Vay haline ölçüyü eksik tutanların: 2 | onlar, (öteki) insanlardan haklarını eksiksiz isterler; 3 | ama borçlarını ölçüp tartmaya gelince, onu azaltmaya çalışırlar. 4 | Onlar bilmez mi ki tekrar diriltilecekler 5 | (ve) korkunç bir Gün'de (hesaba çekilecekler); 6 | bütün insanların âlemlerin Rabbi huzuruna varacakları Gün'de? 7 | Gerçek şu ki, kötü ruhluların kaydı, kayıpsız-kaçaksız bir şekilde (tutulmuş)tur! 8 | Bilir misin nedir o kayıpsız-kaçaksız olan? 9 | O, (silinmez şekilde) tutulan bir kayıttır! 10 | Vay haline o Gün hakikati yalanlayanların, 11 | Hesap Günü'nü(n geleceğini) yalanlayanların: 12 | oysa, hak ve adalet sınırlarını ihlal edenler (ve) günaha batmış (olan)lar dışında kimse onu yalanlamaz: 13 | (işte böyle,) ne zaman mesajlarımız onlara iletilse, hep "Geçmişin masalları!" derler. 14 | ⁋ 15 | Hayır, onların kalpleri, yaptıkları (kötülükler) ile pas tutmuştur! 16 | Elbette onlar, o Gün Rablerin(in rahmetin)den yoksun bırakılacaklar: 17 | ve sonra kesinlikle yakıcı ateşe girecekler 18 | ve kendilerine, "Bu, işte sizin yalanlamaya düşkün olduğunuz (şey)dir!" denilecek. 19 | Ama, gerçek erdem sahiplerinin kaydı en yüce şekilde (tutulur)! 20 | Bilir misin nedir o yüce şekil? 21 | O, (silinmez şekilde) tutulan bir kayıttır, 22 | Allah'a yakınlaşmış herkes tarafından gözlenen. 23 | Bakın, gerçek erdem sahipleri (öteki dünyada) mutlaka kutsananlardan olacaklar; 24 | sedirler üzerinde (uzanarak) bakacaklar (Allah'a): 25 | ve yüzlerinde kutsanmışlığın parıltısını göreceksin. 26 | ⁋ 27 | Onlara (Allah'ın) mührü ile damgalanmış halis bir içki verilecek, 28 | misk kokusu saçarak akan. Öyleyse, değerli şeylere ulaşmak için (can atanlar) bu (cennet içkisi)ni hedeflesinler: 29 | çünkü o en yüce (madde)lerden oluşmuştur; 30 | Allah'a yakınlaşanların içecekleri bir (nimetin) kaynağı. 31 | Bakın, kendilerini günaha kaptıranlar, imana erenlere gülerler: 32 | ve ne zaman yanlarından geçseler birbirlerine (istihzâ ile) göz kırparlar; 33 | ve kendileriyle aynı görüşteki insanlara geri döndüklerinde de keyif ve neşeyle dönerler; 34 | ve ne zaman (inananları) görseler, onlara: "Yazık, bu (insa)nlar doğru yoldan sapmış!" derler. 35 | Oysa onlara, başkaları(nın inançları) üzerinde gözetleyicilik görevi verilmiş değildir. 36 | (Hesap) Günü ise, imana ermiş olanlar (geçmişte) hakikati inkar edenler(in halin)e gülecekler: 37 | (çünkü, cennette) sedirlerin üstünde (uzanmış şekilde) bakınıp duracaklar ve (kendi-kendilerine diyecekler): 38 | "Bu hakikat inkarcıları, yapmaya düşkün oldukları şeyler için mi (böyle) cezalandırılıyorlar?" 39 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/084.txt: -------------------------------------------------------------------------------- 1 | Gökyüzü parçalara ayrıldığında, 2 | tabiatı gereği Rabbine boyun eğdiğinde; 3 | ve yeryüzü dümdüz hale getirildiğinde, 4 | ve içindeki her şeyi dışarı atarak tamamen boşaldığında, 5 | tabiatı gereği Rabbine boyun eğerek: 6 | (öyleyse,) ey insan -sen (madem ki) zahmetli bir çaba ile Rabbine yönelmektesin- sonunda mutlaka O'na kavuşacaksın! 7 | Sicili sağ eline verilecek olan kimse, 8 | zamanı geldiğinde kolay bir hesaba çekilecektir; 9 | ve kendi görüş ve anlayışındaki insanlara sevinçle dön(ebil)ecektir. 10 | Sicili arkasından verilecek olan ise, 11 | zamanı geldiğinde tamamiyle yok olmak için yalvaracak: 12 | ama yakıcı ateşe atılacaktır. 13 | ⁋ 14 | Bakın, o adam, (yeryüzündeki hayatında) kendi görüş ve anlayışındaki insanlar arasında keyifle yaşadı; 15 | çünkü, hiçbir zaman (Allah'a) döneceğini düşünmedi. 16 | Evet, öyle! Halbuki Rabbi, onda olan her şeyi görmekteydi! 17 | Yok yok! Hayır! Akşamın (geçip giden) alacakaranlığını tanıklığa çağırırım. 18 | Ve geceyi, onun (safha safha) gözler önüne serdiklerini, 19 | ve dolunay haline gelen ayı: 20 | (işte böylece, ey insanlar,) siz adım adım ilerleyeceksiniz. 21 | Peki, onlara ne oluyor da (öteki dünyaya) inanmıyorlar? 22 | Ve Kur'an kendilerine okunduğunda saygıyla yere kapanmıyorlar? 23 | Evet, hakikati inkara şartlanmış olanlar (bu ilahî kelâmı) yalanlıyorlar! 24 | Ama Allah, onların (kalplerinde) gizlediklerini bilir. 25 | O halde, onlara (öteki dünyada) şiddetli azabı haber ver, 26 | yalnız (pişmanlık duyarak) iman edip doğru ve yararlı işler yapanlar hariç: onlar için kesintisiz bir ödül vardır! 27 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/085.txt: -------------------------------------------------------------------------------- 1 | Düşün büyük burçlarla dolu göğü, 2 | ve (tahayyül et) vaad edilen Günü, 3 | ve O (her şeye) tanıklık eden ile (O'nun tarafından) tanıklık edileni! 4 | Onlar (yalnızca) kendilerini yok ederler, o çukuru hazırlayanlar, 5 | (imana ermiş olanlara karşı) şiddetle yanan ateş (çukurunu)! 6 | Hani, onlar (keyifle) o (ateşi) seyretmişlerdi, 7 | müminlere ne yaptıklarının bilincinde olarak; 8 | yalnızca Kudret Sahibi, bütün övgülere layık olan Allah'a inanmalarından dolayı nefret ediyorlardı o müminlerden, 9 | O Allah ki göklerin ve yerin hükümranlığına sahiptir. Allah ki her şeye tanıktır! 10 | İnanan erkekler ile inanan kadınlara işkence edenlere ve sonra hiçbir pişmanlık duymayanlara gelince, 11 | onları cehennem azabı beklemektedir: evet, yakıcı azap beklemektedir onları! 12 | (Ama,) imana ermiş olup da doğru ve yararlı işler yapanlar, 13 | (öteki dünyada) içinden ırmaklar akan bahçeler bulacaklardır; bu, büyük bir kurtuluştur! 14 | ⁋ 15 | Şüphesiz, Rabbinin yakalaması son derece çetindir! 16 | O'dur (insanı) yoktan var eden ve sonra yeniden hayata getiren. 17 | Ve yalnız O'dur gerçek bağışlayıcı, sevgide kapsayıcı, 18 | şanlı kudret tahtının sahibi, 19 | dilediği her şeyin mutlak Yapıcısı. 20 | (Günahkar) orduların kıssasından haberin var mı? 21 | Firavun ve Semûd (kavmi)nin? 22 | Ama, hakikati inkara şartlanmış olanlar onu yalanlamakta ısrar ederler: 23 | halbuki Allah onları, farkında olmadıkları halde, (ilmi ve kudreti ile) kuşatır. 24 | Yok yok, hayır! Bu (reddettikleri ilahî kelâm) şerefli/soylu bir hitabedir, 25 | kaybolmayan bir levha üzerine (işlenmiş (bir hitabe)). 26 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/086.txt: -------------------------------------------------------------------------------- 1 | Düşün gökleri ve gece vakti geleni! 2 | Bilir misin nedir gece vakti gelen? 3 | O, yıldızdır (inanmadan yaşanan hayatın) karanlığını delip geçen: 4 | (zaten) hiçbir insan korunmasız bırakılmamıştır. 5 | İnsan, neden yaratıldığına bir baksın: 6 | o spermalı bir sıvıdan yaratılmıştır 7 | (erkeğin) beli ile (kadının) leğen kemiği arasından çıkan. 8 | Elbette O, (insanı yoktan var eden) onu yeniden (hayata) döndürmeye de kâdirdir: 9 | bütün sırların ortaya serileceği Gün, 10 | ve (insanın) ne bir kuvvet ne de yardımcı bulacağı (Gün)! 11 | Düşün dönüp duran gökleri, 12 | ve bitkilerle patlayıp yarılan yeri! 13 | Bakın, bu (ilahî kelâm) doğruyu yanlıştan ayıran bir sözdür, 14 | boş bir lakırdı değil. 15 | Elbette on(u kabule yanaşmayan)lar, birçok düzmece kanıt ararlar (ilahî kelâmı çürütmek için); 16 | ama Ben onların bütün planlarını boşa çıkaracağım. 17 | Öyleyse bırak, hakikati inkar edenler dilediklerini yapsınlar, yapsınlar kısa bir süre! 18 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/087.txt: -------------------------------------------------------------------------------- 1 | Yücelt Rabbinin sınırsız şanını: Yüceler-Yücesi(nin şanını), 2 | O ki, (her şeyi) yaratmakta ve amacına uygun şekiller vermektedir; 3 | O ki, (bütün mevcudatın) tabiatını belirlemekte ve onu (hedefine doğru) yöneltmektedir; 4 | O ki, yeşil ot(lar)ı çıkarmakta, 5 | ve sonra on(lar)ı kara-kavruk kök haline getirmektedir! 6 | Biz sana öğreteceğiz ve (öğrendiklerinden hiç birini) unutmayacaksın, 7 | Allah'ın (unutmanı) diledikleri hariç; çünkü, (yalnız) O'dur (insanın) kavrayışına açık olan her şeyi ve (ondan) gizli olanları bilen: 8 | Biz, (böylece) (nihaî) huzura ve rahatlığa giden yolu senin için kolaylaştıracağız. 9 | ⁋ 10 | O halde, (hakikati başkalarına) hatırlat, bu hatırlatma ister fayda ver(iyor görün)sün, (ister görünmesin): 11 | (Allah'tan) korkan, düşünüp ondan ders alır, 12 | ona yabancılaşan ise bir zavallı bîçare olarak kalır; 13 | böylesi, (öteki dünyada) büyük ateşe atılacak 14 | ve orada ne ölecektir ne de diri kalacak. 15 | (Bu dünyada) arınmayı başaran ise, (öteki dünyada) mutluluğa ulaşır, 16 | ki böylesi, Rabbinin ismini hatırlayan ve (O'na) ibadet edendir. 17 | Ama hayır, (ey insanlar,) siz bu dünya hayatını tercih edersiniz, 18 | oysa gelecek hayat daha iyi ve daha kalıcıdır. 19 | Gerçek şu ki, (bütün) bunlar, geçmiş vahiylerde (bildirilmiş)tir. 20 | İbrahim ve Musa'ya indirilen vahiylerde. 21 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/088.txt: -------------------------------------------------------------------------------- 1 | Kâbus gibi çöken'den haberin var mı? 2 | Bazı yüzler o Gün yere bakacak, 3 | (günahın yükü altında) bitkin düşmüş, (korku ile) sarsılmış, 4 | kızgın bir ateşe girmek 5 | ve kaynar bir pınardan tatmak üzere. 6 | Hiçbir yiyecekleri yok kuru dikenlerin acılığından başka, 7 | ne bir güç veren ne de açlığı gideren (dikenlerin). 8 | Bazı yüzler (de) o Gün mutlulukla parıldayacak, 9 | çabaları(nın meyvesini tatmak)tan memnun, 10 | harika bir bahçede, 11 | boş lakırdı işitmeyecekleri (bir bahçede). 12 | ⁋ 13 | Sayısız pınarlar akacak orada, 14 | (ve) yükseltilmiş (mutluluk) tahtları, 15 | doldurulmuş kadehler, 16 | dizilmiş yastıklar, 17 | ve serilmiş halılar... 18 | Peki, (o yeniden dirilmeyi inkar edenler) bakmazlar mı yağmur yüklü bulutlara, (ve görmezler mi) nasıl yaratılmış onlar? 19 | Ve (bakmazlar mı) göğe, nasıl yükseltilmiş? 20 | Ve dağlara, nasıl sağlamca dikilmiş? 21 | Ve toprağa, nasıl yayılmış? 22 | İşte böyle, (ey Peygamber,) onlara öğüt ver; senin görevin yalnız öğüt vermektir: 23 | sen onları (inanmaya) zorlayamazsın. 24 | Ancak, kim hakikati inkara şartlanmış olarak yüz çevirip uzaklaşırsa, 25 | Allah ona (öteki dünyada) en büyük azabı tattıracaktır: 26 | Bizedir onların dönüşleri, 27 | ve Bize düşer onları hesaba çekmek. 28 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/089.txt: -------------------------------------------------------------------------------- 1 | Şafağı düşün 2 | ve on geceyi! 3 | Çok olanı ve Tek olanı düşün! 4 | Kendi yolunda akıp giden geceyi düşün! 5 | Düşün bütün bunları; bunlarda, akıl sahipleri için hakikatin sağlam bir kanıtı yok mudur? 6 | Bilmez misin Rabbin neler yaptı 'Âd (halkın)a, 7 | çok sütunlu İrem (halkına), 8 | ki bütün o topraklarda bir benzeri inşa edilmemişti? 9 | Ve vadide kayaları oymuş olan Semûd (halkın)a? 10 | Ve (pekçok) çadır direğine sahip Firavun'a? 11 | (Onlar) toprakları üzerinde hak ve adalet sınırlarını aştılar; 12 | ve orada büyük bir yozlaşma ve çürümeye sebep oldular; 13 | işte bu yüzden Rabbin onları azap kırbacından geçirdi; 14 | çünkü Rabbin, şüphesiz, her zaman gözetleyip durmaktadır! 15 | ⁋ 16 | İnsana gelince, ne zaman Rabbin onu, 17 | cömertliğiyle ve hoşnut olacağı bir hayat bağışlamakla denese, 18 | "Rabbim, bana karşı (ne kadar) cömertmiş!" der; 19 | ama geçim vasıtalarını daraltarak onu denediği zaman ise, "Rabbim beni küçük düşürdü!" di(ye sızlanı)r. 20 | Ama hayır, hayır, (ey insanlar, bütün yaptıklarınızı ve yapmadıklarınızı bir düşünün:) siz yetime karşı cömert değilsiniz, 21 | muhtaçları doyurmaya birbirinizi teşvik etmiyorsunuz, 22 | (başkalarının) mirasını aç-gözlülükle yiyip bitiriyorsunuz, 23 | ve sınırsız bir sevgiyle malı-mülkü seviyorsunuz! 24 | Peki, (Hesap Günü nasıl davranacaksınız,) yeryüzü ardarda sarsılıp paramparça olduğunda, 25 | ve Rabbin(in haşmeti) ortaya çıktığında ve melekler (gerçek hüviyetleriyle) saf saf olduklarında? 26 | ⁋ 27 | İşte o Gün cehennem (gözönüne) getirilip konacak; 28 | o Gün insan (yaptığı ve yapmadığı her şeyi) hatırlayacak: 29 | ama bu hatırlamanın ne faydası olacak ona? 30 | O, "Âh, keşke (gelecek) hayatım için önceden bir hazırlık yapsaydım!" diyecek. 31 | Hiç kimse Allah'ın o Gün (günahkarlara verdiği) azap gibi azap veremez; 32 | ve hiç kimse O'nun gibi bağlarla bağlayamaz. 33 | (Ama dürüst ve erdemlilere,) "Ey iç huzuruna ermiş olan insanoğlu!" (diye seslenecek Allah,) 34 | "Rabbine O'ndan hoşnut kalmış ve (O'nu) hoşnut etmiş olarak dön: 35 | gir, öyleyse Benim (öteki sadık) kullarımla birlikte, 36 | gir cennetime!" 37 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/090.txt: -------------------------------------------------------------------------------- 1 | Ben bu beldeyi tanıklığa çağırırım, 2 | senin serbestçe yaşadığın bu beldeyi, 3 | ve (tanıklığa çağırırım) anne-babayı ve çocukları: 4 | Gerçek şu ki, Biz insanı acı, sıkıntı ve imtihan (ile yüklü bir hayat)a gönderdik. 5 | İnsan, kimsenin kendi üzerinde güç sahibi olmadığını mı zannediyor? 6 | Övünüp duruyor: "Ben, yığınla servet tükettim!" 7 | Peki, kimsenin kendisini görmediğini mi sanıyor? 8 | Biz ona iki göz vermedik mi? 9 | Bir dil ve bir çift dudak, 10 | ve ona (kötülüğün ve iyiliğin) iki yolunu da göstermedik mi? 11 | Ama o, sarp yokuşa tırmanmayı denemedi... 12 | Bilir misin nedir o sarp yokuş? 13 | ⁋ 14 | (O,) boynunu (günah zincirinden) kurtarmaktır; 15 | yahut (kendi) aç iken (başkasını) doyurmaktır, 16 | yakını olan bir yetimi, 17 | yahut toprağa uzanıp kalmış olan (yabancı) bir yoksulu, 18 | ve imana ermişlerden ve birbirine sabrı ve merhameti tavsiye edenlerden olmaktır. 19 | İşte böyleleri dürüstlüğe ve erdemliliğe erişmiş olanlardır; 20 | Bizim mesajlarımızın doğruluğunu inkara şartlanmış olanlar ise 21 | kötülüğe batmış kimselerdir, 22 | üzerlerine salınmış ateş (ile). 23 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/091.txt: -------------------------------------------------------------------------------- 1 | Güneşi ve onun aydınlık veren parlaklığını düşün, 2 | ve güneşi(n ışığını) yansıtan ayı! 3 | Dünyayı gün ışığına çıkaran gündüzü düşün, 4 | ve onu karanlığa boğan geceyi! 5 | Gökyüzünü ve onun hârika yapısını düşün, 6 | ve yeryüzünü, onun (uçsuz bucaksız) genişliğini! 7 | İnsan benliğini düşün ve onun nasıl (yaratılış) amacına uygun şekillendirildiğini; 8 | ve nasıl ahlakî zaaflarla olduğu kadar Allah'a karşı sorumluluk bilinciyle de donatıldığını! 9 | Her kim (benliğini) arındırırsa, kesinlikle mutluluğa erişecektir, 10 | onu (karanlığa) gömen ise hüsrandadır. 11 | ⁋ 12 | Semûd (kavmi,) kaba bir küstahlıkla (bu) hakikati yalan saydı; 13 | içlerinden en onulmaz azgınları, (zulüm yapmak için) ileri atılırken, 14 | Allah'ın Elçisi onlara: "Şu dişi deve Allah'ındır, 15 | öyleyse bırakın suyunu içsin (ve ona bir zarar vermeyin)!" demişti. 16 | Ama onlar Elçi'yi (hiçe sayıp) yalanladılar ve deveyi vahşîce boğazladılar; 17 | bunun üzerine Rableri, bu günahları yüzünden onları yıkıma uğrattı ve tümünü birden yok etti: 18 | çünkü (onlardan) hiç biri başlarına gelecek şeyin korkusunu taşımıyordu. 19 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/092.txt: -------------------------------------------------------------------------------- 1 | Düşün (yeryüzünü) karanlığa boğan geceyi, 2 | ve aydınlığı yükselten gündüzü! 3 | Erkeğin ve dişinin yaratılışını düşün! 4 | Gerçekte, (ey insanlar,) siz çok çeşitli hedefler peşindesiniz! 5 | Her kim (başkaları için) harcar ve Allah'a karşı sorumluluk bilinci taşırsa, 6 | ve nihaî güzelliğin/iyiliğin gerçekliğine inanırsa, 7 | işte onun için (nihaî) huzur ve rahatlığa giden yolu kolaylaştıracağız. 8 | Cimrilik yapana ve kendi-kendine yeterli olduğunu zannedene, 9 | ve nihaî güzelliği/iyiliği yalanlayana gelince, 10 | onun için zorluğa ve sıkıntıya giden yolu kolaylaştırırız: 11 | bakalım serveti onu koruyacak mı (mezarına) girdiği zaman? 12 | ⁋ 13 | Bakın, Bize düşen doğru yolu göstermektir; 14 | ve hem öteki dünya, hem de (hayatınızın) bu ilk bölümü (üzerindeki hakimiyet) Bize aittir: 15 | İşte, sizi alevler saçan ateşe karşı uyarıyorum; 16 | (öyle bir ateş ki) kimse girmez, en onulmaz azgınlar dışında, 17 | hakikati yalanlayan ve (ondan) yüz çeviren (azgınlar). 18 | Ama, Allah'a karşı sorumluluğunun bilincinde olanlar (ateşten) uzak kalacak: 19 | arınmak için servetini (başkalarına) harcayanlar, 20 | gördüğü bir iyiliğin karşılığı olarak değil, 21 | ama yalnızca yüce Rabbinin rızasını kazanmak için: 22 | işte böyleleri de, zamanı geldiğinde sevinci tadacaklar. 23 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/093.txt: -------------------------------------------------------------------------------- 1 | Aydınlık sabahı düşün, 2 | ve durgun, karanlık geceyi. 3 | Rabbin seni ne unuttu ne de darıldı: 4 | öteki dünya senin için (hayatının) bu ilk bölümünden mutlaka daha iyi olacak! 5 | Ve zamanı geldiğinde Rabbin sana (kalbinden geçeni) bağışlayacak ve seni hoşnut kılacak. 6 | O seni yetim olarak bulup bir sığınak vermedi mi? 7 | Ve yolunu kaybetmiş görüp seni doğru yola ulaştırmadı mı? 8 | İhtiyaç içinde bulup seni tatmin etmedi mi? 9 | Öyleyse yetime haksızlık yapma, 10 | yardım isteyeni asla geri çevirme, 11 | ve (her zaman) Rabbini(n) nimetlerini an. 12 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/094.txt: -------------------------------------------------------------------------------- 1 | Biz kalbini aç(ıp ferahlat)madık mı, 2 | ve üzerinden yükü kaldırmadık mı, 3 | o belini büken (yükü)? 4 | Şerefini ve itibarını yükseltmedik mi? 5 | Elbette her güçlükle birlikte bir kolaylık vardır: 6 | Şüphesiz, her güçlükle bir kolaylık! 7 | Öyleyse (sıkıntıdan) kurtulduğun zaman sağlam dur, 8 | ve yalnız Rabbine sevgi ile yönel. 9 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/095.txt: -------------------------------------------------------------------------------- 1 | İnciri ve zeytini düşün, 2 | ve Sina Dağını, 3 | ve bu güvenli toprakları! 4 | Gerçek şu ki biz insanı en güzel şekilde yaratırız, 5 | ve sonra onu aşağıların en aşağısına indiririz, 6 | iman edip doğru ve yararlı işler yapanlar hariç: 7 | onlar için kesintisiz bir ödül vardır! 8 | Öyleyse, (ey insan,) nedir bu ahlakî değerler sistemini yalanlamana yol açan? 9 | Allah hükmedenlerin en adili değil mi? 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/096.txt: -------------------------------------------------------------------------------- 1 | Oku yaratan Rabbin adına, 2 | insanı bir yumurta hücresinden yaratan! 3 | Oku, çünkü Rabbin Sonsuz Kerem Sahibidir, 4 | (insana) kalemi kullanmayı öğretendir, 5 | insana bilmediğini belleten! 6 | Gerçek şu ki insan fütursuzca azar, 7 | ne zaman kendini yeterli görse: 8 | oysa, herkes eninde sonunda Rabbine dönecektir. 9 | Hiç düşündün mü şu engellemeye kalkışanı 10 | (Allah'ın) bir kulu(nu) namazdan? 11 | ⁋ 12 | Hiç düşündün mü o doğru yolda mıdır, 13 | ya da Allah'a karşı sorumluluk bilinciyle yüklü mü? 14 | Hiç düşündün mü onun hakikati yalanla(ma)yabileceğini ve sırtını (ona) dön(mey)ebileceğini? 15 | O bilmez mi ki Allah (her şeyi) görür? 16 | Hayır, eğer vazgeçmezse, onu alnından tutup sürükleyeceğiz, 17 | o yalancı, isyankar alnından! 18 | Bırak, kendi aklının (asılsız, düzmece) tavsiyelerini (yardımına) çağırsın, 19 | (o zaman) Biz de semavî azap güçlerini çağırırız! 20 | Hayır, ona kulak verme, ama (Allah'ın huzurunda) yere kapan ve (O'na) yakınlaş! 21 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/097.txt: -------------------------------------------------------------------------------- 1 | Biz bu (ilahî kelâm)ı Kadir Gecesi'nde indirdik. 2 | Bilir misin nedir Kadir Gecesi? 3 | Kadir Gecesi bin aydan daha hayırlıdır: 4 | o gece melekler, Rablerinin izniyle ilahî bir esin taşıyarak bölük bölük inerler; 5 | (insanı) her türlü (kötülük)ten 6 | emîn kılar bu (gece), tâ şafak vaktine kadar. 7 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/098.txt: -------------------------------------------------------------------------------- 1 | Hakikati inkara şartlanmış olanlar, 2 | -ister geçmiş vahyin mensuplarından isterse Allah'tan başkasına da ilahlık yakıştıranlardan (olsunlar)- 3 | kendilerine hakikatin açık kanıtları gelmeden (O'nun tarafından) gözden çıkarılacak değillerdir: 4 | (onlara) kutsanmış tertemiz vahiyler ileten Allah'tan bir elçi (gelmeden), 5 | doğruluğu kesin ve açık hükümler taşıyan (vahiyler ileten bir elçi). 6 | Ama kendilerine daha önce vahiy verilenler, 7 | hakikatin böyle bir kanıtı geldikten sonra (inanç) birlikteliklerini bozdular. 8 | Oysa kendilerine yalnızca Allah'a ibadet etmeleri, 9 | bütün içtenlikleriyle yalnız O'na iman ederek bâtıl olan her şeyden uzak durmaları; 10 | namazlarında dikkatli ve devamlı olmaları; 11 | ve karşılıksız harcamada bulunmaları emrolunmuştu: 12 | çünkü bu, doğruluğu kesin ve açık olan bir ahlakî değerler sistemidir. 13 | ⁋ 14 | Gerçek şu ki, (bütün kanıtlara rağmen) hakikati inkara şartlanmış olanlar, 15 | -ister geçmiş vahyin mensuplarından, isterse Allah'tan başkasına da ilahlık yakıştıranlardan (olsunlar)- 16 | kendilerini cehennem ateşinde kalıcı bulacaklar: 17 | onlar, bütün yaratıkların en şerlileridir. 18 | (Ve) iman edip doğru ve yararlı işlerde bulunanlar, 19 | işte onlar, bütün yaratıkların en hayırlılarıdır. 20 | Onların ödülleri Allah katında (kendilerini bekler:) içinden ırmaklar akan, 21 | sonsuza kadar kalacakları sınırsız nimet bahçeleri; 22 | Allah onlardan hoşnuttur ve onlar da Allah'tan: 23 | bütün bunlar Rablerini ürpertiyle hissedenler içindir! 24 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/099.txt: -------------------------------------------------------------------------------- 1 | Yer, o (son) müthiş sarsıntı ile sarsıldığında, 2 | ve yeryüzü ağırlıklarını attı(ğında), 3 | ve insan: "Ona ne oluyor?" diye bağırdı(ğında), 4 | o Gün yer, bütün haberlerini ortaya dökecek, 5 | Rabbinin vahyettiği şekilde. 6 | O Gün bütün insanlar, 7 | (geçmiş) fiillerini görmek üzere biri öbüründen ayrılmış olarak ortaya çıkacaklar. 8 | Ve kim zerre kadar iyilik yapmışsa, onu(n karşılığını) görecek, 9 | kim de zerre kadar kötülük yapmışsa onu(n karşılığını) görecektir. 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/100.txt: -------------------------------------------------------------------------------- 1 | Ooo! Nefes nefese koşan binek atları, 2 | ateş saçan kıvılcımlar, 3 | sabah vakti akına koşan, 4 | böylece toz bulutları yükselten, 5 | (körcesine) bir ordunun içine dalan! 6 | Gerçek şu ki, insan Rabbine karşı çok nankördür; 7 | ve kendisi (de) buna şahittir: 8 | çünkü servet hırsına kapılmıştır. 9 | Ama bilmez mi ki (Ahiret Günü,) herkes mezarından ayağa kalkıp dışarı çıktığında, 10 | ve insanların kalplerinde (gizli) olan her şey ortaya döküldüğünde, 11 | işte o Gün Rableri, onların her halinden haberdar (olduğunu gösterecek)tir? 12 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/101.txt: -------------------------------------------------------------------------------- 1 | Ah! Apansız (gelen) bir bela!. 2 | Ne korkunçtur apansız (gelen) bela! 3 | Bilir misin nedir, nasıl olacaktır o apansız bela? 4 | (O,) insanların şaşkın vaziyette uçuşan pervanelere benzeyeceği Gün, 5 | ve dağların yumuşak yün topaklarını andıracağı Gün (vuku bulacaktır). 6 | O zaman, (iyiliklerinin) tartısı ağır basan 7 | kendisini mutlu bir hayat içinde bulacak; 8 | tartısı hafif gelen ise 9 | bir uçurumun girdabına sürüklenecektir.. 10 | Bilir misin nedir o (uçurum)? 11 | Dağlayan bir ateş!. 12 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/102.txt: -------------------------------------------------------------------------------- 1 | Bir aç-gözlülük saplantısı içindesiniz, 2 | mezarlarınıza girinceye dek (süren). 3 | Ama, zamanı geldiğinde anlayacaksınız! 4 | Evet, evet! Zamanı geldiğinde anlayacaksınız! 5 | Hayır, (onu) tartışılmaz bir kesinlikle anlasaydınız, 6 | (cehennemin) yakıcı ateşini mutlaka görürdünüz! 7 | Sonunda onu keskin bir gözle mutlaka göreceksiniz: 8 | ve o Gün hayatın nimetleri(ne karşı yaptıklarınız) için mutlaka sorguya çekileceksiniz! 9 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/103.txt: -------------------------------------------------------------------------------- 1 | Düşün zamanın akıp gidişini! 2 | Gerçek şu ki, insan ziyandadır; 3 | meğer ki imana erip doğru ve yararlı işler yapanlardan olsun, 4 | ve birbirlerine hakkı tavsiye edenlerden, 5 | birbirlerine sabrı tavsiye edenlerden... 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/104.txt: -------------------------------------------------------------------------------- 1 | Vay haline iftira atanın ve ayıp-kusur arayanın! 2 | (Vay haline o kişinin) ki, serveti biriktirir ve onu bir kalkan sayar, 3 | zanneder ki serveti onu sonsuza dek yaşatacak! 4 | Hayır, tersine, (öteki dünyada) çökerten bir azaba terk edilecektir o! 5 | Bilir misin nedir o çökerten azap? 6 | Allah tarafından tutuşturulan bir ateş, 7 | (günahkar) kalplerin üstünde yükselen: 8 | üzerlerine salınacak (bir ateş), 9 | sonsuz sütunlar arasında! 10 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/105.txt: -------------------------------------------------------------------------------- 1 | Haberin yok mu Rabbin Fil Ordusu'na ne yaptı? 2 | Onların kurnazca planlarını tamamen bozmadı mı? 3 | Üzerlerine kalabalık sürüler halinde uçan varlıklar saldı, 4 | onlara önceden tesbit edilmiş taş gibi sert azap darbeleri vurdular, 5 | ve onları yalnız sap dipleri kalasıya yenmiş bir ekin tarlasına benzettiler – 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/106.txt: -------------------------------------------------------------------------------- 1 | Kureyş'in emniyeti sağlanabilsin diye, 2 | kış ve yaz seferlerindeki emniyeti. 3 | O halde bu Mâbed'in Rabbine kulluk etsinler, 4 | O ki, aç kalmasınlar diye onları beslemiş ve tehlikelerden emin kılmıştır. 5 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/107.txt: -------------------------------------------------------------------------------- 1 | Hiç bütün bir ahlakî değerler sistemini yalanlayan (birini) tasavvur edebilir misin? 2 | İşte böyle biridir, yetimi itip kakan, 3 | yoksulu doyurma arzusu/gayreti duymayan. 4 | Yazıklar olsun şu namaz kılıp duranlara, 5 | onlar ki kalpleri namazlarına yabancıdır, 6 | onlar ki niyetleri yalnızca görülüp takdir edilmektir, 7 | ve üstelik onlar, (insanlara) en ufak bir yardımı bile reddederler! 8 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/108.txt: -------------------------------------------------------------------------------- 1 | Bak, Biz sana bol nimet verdik: 2 | o halde (yalnız) Rabbine ibadet et ve (yalnız O'nun adına) kurban kes. 3 | Şu gerçek ki, senden nefret eden, (her türlü iyilik ve güzellikten) kesilmektedir! 4 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/109.txt: -------------------------------------------------------------------------------- 1 | De ki: "Siz ey hakikati inkar edenler! 2 | Ben tapmam sizin taptığınıza, 3 | siz de tapmazsınız benim taptığıma. 4 | Ve ben tapmayacağım (asla) sizin tapıp durduğunuza, 5 | siz de (hiç) tapmayacaksınız benim taptığıma. 6 | Sizin dininiz size, benimki bana!" 7 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/110.txt: -------------------------------------------------------------------------------- 1 | Allah'ın yardımı ve zafer geldiğinde, 2 | ve insanların Allah'ın dinine dalga dalga girdiklerini gördüğünde, 3 | Rabbinin sınırsız şanını yücelt, O'na hamdet ve O'ndan mağfiret dile: 4 | çünkü O, her zaman tevbeleri kabul edendir. 5 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/111.txt: -------------------------------------------------------------------------------- 1 | Kahrolsun o parlak yüzlünün iki eli, ve kahrolsun kendisi! 2 | Ne faydası olacak servetinin ve kazancının? 3 | (Öteki dünyada) şiddetle parlayan bir ateşe atılacak, 4 | iğrenç söylentilerin taşıyıcısı olan karısı ile birlikte, 5 | (o ki,) boynunda bükülmüş iplerden bir halat (taşır)! 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/112.txt: -------------------------------------------------------------------------------- 1 | De ki: "O, Tek Allah'tır: 2 | Allah, Öncesiz ve Sonrasız, Bütün Evrenin Asıl Sebebi. 3 | O doğurmamıştır, doğurulmamıştır; 4 | ve hiçbir şey O'na denk tutulamaz." 5 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/113.txt: -------------------------------------------------------------------------------- 1 | De ki: "Sığınırım ben yükselen şafağın Rabbine, 2 | O'nun yarattıklarının şerrinden, 3 | ve bastıran kapkara karanlığın şerrinden, 4 | karanlık işlere düşkün tüm insanların şerrinden, 5 | ve kıskançlık duyduğunda kıskancın şerrinden." 6 | -------------------------------------------------------------------------------- /App/Resources/Recitations/tr.lproj/114.txt: -------------------------------------------------------------------------------- 1 | De ki: "Sığınırım ben insanların Rabbine, 2 | insanların Hakimine, 3 | insanların İlahına; 4 | fısıldayan sinsi ayartıcının şerrinden, 5 | insanların kalbine fısıldayan; 6 | görünmez güçler(in) ve insanlar(ın bütün ayartmaların)dan". 7 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/de.lproj/Opening-Supplication.txt: -------------------------------------------------------------------------------- 1 | Preis sei Dir, o Gott, und Lob sei Dir. 2 | Gesegnet ist Dein Name, und hoch erhaben Deine Herrschaft. 3 | Es gibt keinen Gott außer Dir. 4 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/de.lproj/Rabbanagh.txt: -------------------------------------------------------------------------------- 1 | Oh unser Erhalter! Gewähre uns Gutes in dieser Welt und Gutes im kommenden Leben, 2 | und bewahre uns vor dem Leiden durch das Feuer. 3 | Oh unser Erhalter, gewähre mir Deine Vergebung und meinen Eltern 4 | und all den Gläubigen an dem Tag, da die (letzte) Abrechnung geschehen wird! 5 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/de.lproj/Ruku.txt: -------------------------------------------------------------------------------- 1 | Preis sei meinem Herrn, dem Erhabenen. 2 | Preis sei meinem Herrn, dem Erhabenen. 3 | Preis sei meinem Herrn, dem Erhabenen. 4 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/de.lproj/Sajdah.txt: -------------------------------------------------------------------------------- 1 | Preis sei meinem Herrn, dem Allerhöchsten. 2 | Preis sei meinem Herrn, dem Allerhöchsten. 3 | Preis sei meinem Herrn, dem Allerhöchsten. 4 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/de.lproj/Salam.txt: -------------------------------------------------------------------------------- 1 | Friede sei mit euch und Gottes Gnade. 2 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/de.lproj/Salatul-Ibrahimiyyah.txt: -------------------------------------------------------------------------------- 1 | O Gott, schütte Deine Gnade aus über Muhammad und den Anhängern Muhammads, 2 | so wie Du Gnade ausschüttetest über Abraham und den Anhängern Abrahams; 3 | Wahrlich, Du bist der zu Lobende, der Ruhmreiche. 4 | O Gott, gib Muhammad und den Anhängern Muhammads Deinen Segen, 5 | so wie Du Abraham und den Anhängern Abrahams Segen gabst; 6 | Wahrlich, Du bist der zu Lobende, der Ruhmreiche. 7 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/de.lproj/Straightening-Up.txt: -------------------------------------------------------------------------------- 1 | Gott hört den, der Ihn preist, 2 | Unser Herr, Lob sei Dir. 3 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/de.lproj/Taawwudh.txt: -------------------------------------------------------------------------------- 1 | Ich suche Zuflucht bei Gott vor Satan, dem Verfluchten. 2 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/de.lproj/Takbir.txt: -------------------------------------------------------------------------------- 1 | Gott ist größer 2 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/de.lproj/Tashahhud.txt: -------------------------------------------------------------------------------- 1 | Ehre sei Gott und Anbetung und Heiligkeit. 2 | Friede sei mit Dir, o Prophet, und die Barmherzigkeit Gottes und Seine Segnungen. 3 | Friede sei mit uns und den frommen Dienern Gottes. 4 | Ich bezeuge, dass es keinen Gott gibt außer Gott, 5 | und ich bezeuge, dass Muhammad Sein Diener und Gesandter ist. 6 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/en.lproj/Opening-Supplication.txt: -------------------------------------------------------------------------------- 1 | O God, how perfect You are and praise be to You. 2 | Blessed is Your name, and exalted is Your majesty. 3 | There is no god but You. 4 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/en.lproj/Rabbanagh.txt: -------------------------------------------------------------------------------- 1 | O our Sustainer! Grant us good in this world and good in the life to come, 2 | and keep us safe from suffering through the fire. 3 | Grant Thy forgiveness unto me, and my parents, and all the believers, 4 | on the Day on which the (last) reckoning will come to pass! 5 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/en.lproj/Ruku.txt: -------------------------------------------------------------------------------- 1 | How Perfect is my Lord, the Supreme. 2 | How Perfect is my Lord, the Supreme. 3 | How Perfect is my Lord, the Supreme. 4 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/en.lproj/Sajdah.txt: -------------------------------------------------------------------------------- 1 | How Perfect is my Lord, the Highest. 2 | How Perfect is my Lord, the Highest. 3 | How Perfect is my Lord, the Highest. 4 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/en.lproj/Salam.txt: -------------------------------------------------------------------------------- 1 | Peace be on you and the mercy of God. 2 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/en.lproj/Salatul-Ibrahimiyyah.txt: -------------------------------------------------------------------------------- 1 | Oh God, send grace and honour on Muhammad, his family and his true followers 2 | just as you sent Grace and Honour on Abraham, his family and his true followers 3 | Surely, you are praiseworthy, the Great. 4 | Oh God, send your blessing on Muhammad, his family and true followers 5 | just as you sent blessings on Abraham, his family and and his true followers 6 | Surely, you are praiseworthy, the Great. 7 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/en.lproj/Straightening-Up.txt: -------------------------------------------------------------------------------- 1 | God hears those who praise Him. 2 | Our Lord, praise be to You. 3 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/en.lproj/Taawwudh.txt: -------------------------------------------------------------------------------- 1 | I seek shelter in God from the rejected Satan. 2 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/en.lproj/Takbir.txt: -------------------------------------------------------------------------------- 1 | God is greater 2 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/en.lproj/Tashahhud.txt: -------------------------------------------------------------------------------- 1 | Greetings, prayers and goodness belong to God. 2 | Peace be on you, O Prophet and the mercy of God and His blessings. 3 | Peace be on us and on the righteous servants of God. 4 | I bear witness that there is no god but God, 5 | and bear witness that Muhammad is His servant and Messenger. 6 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/tr.lproj/Opening-Supplication.txt: -------------------------------------------------------------------------------- 1 | Allah'ım! Sen eksik sıfatlardan pak ve uzaksın. Seni daima böyle tenzih eder ve överim. 2 | Senin adın mübarektir. Varlığın her şeyden üstündür. 3 | Senden başka ilah yok. 4 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/tr.lproj/Rabbanagh.txt: -------------------------------------------------------------------------------- 1 | Ey Rabbimiz! Bize bu dünyada da iyilik ver, ahirette de ve bizi ateşin azabından koru! 2 | Rabbimiz! Hesabın görüleceği Gün, beni, anamı-babamı ve bütün müminleri bağışla! 3 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/tr.lproj/Ruku.txt: -------------------------------------------------------------------------------- 1 | Büyük olan rabbim her türlü kusurdan uzaktır. 2 | Büyük olan rabbim her türlü kusurdan uzaktır. 3 | Büyük olan rabbim her türlü kusurdan uzaktır. 4 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/tr.lproj/Sajdah.txt: -------------------------------------------------------------------------------- 1 | En yüce olan rabbim her türlü kusurdan uzaktır. 2 | En yüce olan rabbim her türlü kusurdan uzaktır. 3 | En yüce olan rabbim her türlü kusurdan uzaktır. 4 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/tr.lproj/Salam.txt: -------------------------------------------------------------------------------- 1 | Allah'ın selamı ve rahmeti üzerinize olsun. 2 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/tr.lproj/Salatul-Ibrahimiyyah.txt: -------------------------------------------------------------------------------- 1 | Allah’ım! Muhammed’e ve Muhammed’in ümmetine rahmet eyle; şerefini yücelt. 2 | İbrahim’e ve İbrahim’in ümmetine rahmet ettiğin gibi. 3 | Şüphesiz övülmeye layık yalnız sensin, şan ve şeref sahibi de sensin. 4 | Allah’ım! Muhammed’e ve Muhammed’in ümmetine hayır ve bereket ver. 5 | İbrahim’e ve İbrahim’in ümmetine verdiğin gibi. 6 | Şüphesiz övülmeye layık yalnız sensin, şan ve şeref sahibi de sensin. 7 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/tr.lproj/Straightening-Up.txt: -------------------------------------------------------------------------------- 1 | Allah kendine hamd edeni işitir. 2 | Rabbimiz, hamd sanadır. 3 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/tr.lproj/Taawwudh.txt: -------------------------------------------------------------------------------- 1 | Kovulmuş Şeytan’ın şerrinden Allah’a sığınırım. 2 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/tr.lproj/Takbir.txt: -------------------------------------------------------------------------------- 1 | Allah daha büyüktür 2 | -------------------------------------------------------------------------------- /App/Resources/SpokenTexts/tr.lproj/Tashahhud.txt: -------------------------------------------------------------------------------- 1 | Dil ile, beden ve mal ile yapılan bütün ibadetler Allah'a dır. 2 | Ey Peygamber! Allah'ın selâmı, rahmet ve bereketleri senin üzerine olsun. 3 | Selâm bizim üzerimize ve Allah'ın bütün iyi kulları üzerine olsun. 4 | Şahitlik ederim ki, Allah'tan başka ilah yoktur. 5 | Yine şahitlik ederim ki, Muhammed, O'nun kulu ve Peygamberidir. 6 | -------------------------------------------------------------------------------- /App/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 09.01.17. 3 | // Copyright © 2017 Flinesoft. All rights reserved. 4 | // 5 | 6 | import AVKit 7 | import Imperio 8 | import UIKit 9 | 10 | @UIApplicationMain 11 | class AppDelegate: UIResponder, UIApplicationDelegate { 12 | var window: UIWindow? 13 | var initialFlowCtrl: InitialFlowController? 14 | 15 | func application( 16 | _ application: UIApplication, 17 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil 18 | ) -> Bool { 19 | window = UIWindow(frame: UIScreen.main.bounds) 20 | window?.makeKeyAndVisible() 21 | 22 | // reset user defaults for UI Tests 23 | if ProcessInfo.processInfo.arguments.contains("UI_TESTS") { 24 | UserDefaults.standard.removePersistentDomain(forName: Bundle.main.bundleIdentifier!) 25 | } 26 | 27 | // setup global stuff 28 | Logger.shared.setup() 29 | ErrorHandler.shared.setup(window: window!) 30 | 31 | // start initial flow 32 | initialFlowCtrl = SettingsFlowController() 33 | initialFlowCtrl?.start(from: window!) 34 | 35 | return true 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /App/Sources/Globals/AudioPlayer.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 25.01.17. 3 | // Copyright © 2017 Flinesoft. All rights reserved. 4 | // 5 | 6 | import AVFoundation 7 | 8 | final class AudioPlayer { 9 | static let shared = AudioPlayer() 10 | 11 | private var audioPlayer: AVAudioPlayer? 12 | 13 | private init() { 14 | try? AVAudioSession.sharedInstance() 15 | .setCategory( 16 | .playback, 17 | mode: .voicePrompt, 18 | options: [.mixWithOthers, .allowAirPlay, .allowBluetooth, .allowBluetoothA2DP] 19 | ) 20 | } 21 | 22 | func movementSoundUrl(name: String, instrument: String) -> URL? { 23 | Bundle.main.url(forResource: instrument, withExtension: "caf", subdirectory: name) 24 | } 25 | 26 | func playSound(at url: URL) { 27 | audioPlayer = try! AVAudioPlayer(contentsOf: url) 28 | audioPlayer?.prepareToPlay() 29 | audioPlayer?.play() 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /App/Sources/Globals/Countdown.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 25.01.17. 3 | // Copyright © 2017 Flinesoft. All rights reserved. 4 | // 5 | 6 | import SwiftyTimer 7 | import UIKit 8 | 9 | class Countdown { 10 | private let automaticallyCountEvery: TimeInterval? 11 | private var currentValue: Int 12 | private var timer: Timer? 13 | 14 | private var countClosure: ((_ count: Int) -> Void)? 15 | private var finishClosure: (() -> Void)? 16 | 17 | /// Initializes a countdown. 18 | /// 19 | /// - Parameters: 20 | /// - startValue: The value to start counting down from. 21 | /// - automaticallyCountEvery: The `TimeInterval` of the step to wait between every count. Specify `nil` to turn off automatic counting, call `stepDown()` manually. 22 | init( 23 | startValue: Int, 24 | automaticallyCountEvery: TimeInterval? 25 | ) { 26 | self.automaticallyCountEvery = automaticallyCountEvery 27 | self.currentValue = startValue 28 | } 29 | 30 | /// Starts the automatic counting. 31 | func start() { 32 | countClosure?(currentValue) 33 | 34 | if let automaticallyCountEvery = automaticallyCountEvery { 35 | timer = Timer.after(automaticallyCountEvery) { 36 | self.currentValue -= 1 37 | 38 | if self.currentValue > 0 { 39 | self.countClosure?(self.currentValue) 40 | self.start() 41 | } else { 42 | self.finishClosure?() 43 | self.cleanup() 44 | } 45 | } 46 | } 47 | } 48 | 49 | /// Only call this if `automaticallyCountEvery` was set to `nil` to manually count down. 50 | func stepDown() { 51 | currentValue -= 1 52 | 53 | if currentValue > 0 { 54 | countClosure?(currentValue) 55 | } else { 56 | finishClosure?() 57 | cleanup() 58 | } 59 | } 60 | 61 | /// Cancels the automatic counting. 62 | func cancel() { cleanup() } 63 | 64 | func onCount(closure: @escaping (_ count: Int) -> Void) { 65 | countClosure = closure 66 | } 67 | 68 | /// Called on both the automatic or manual counting when count reaches 0. 69 | func onFinish(closure: @escaping () -> Void) { 70 | finishClosure = closure 71 | } 72 | 73 | private func cleanup() { 74 | timer?.invalidate() 75 | timer = nil 76 | countClosure = nil 77 | finishClosure = nil 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /App/Sources/Globals/ErrorHandler.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 24.02.19. 3 | // Copyright © 2019 Flinesoft. All rights reserved. 4 | // 5 | 6 | import MungoHealer 7 | import UIKit 8 | 9 | var mungo: MungoHealer! 10 | 11 | final class ErrorHandler { 12 | static let shared = ErrorHandler() 13 | 14 | func setup(window: UIWindow) { 15 | let errorHandler = AlertLogErrorHandler(window: window) { log.error($0) } 16 | mungo = MungoHealer(errorHandler: errorHandler) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /App/Sources/Globals/Extensions/DefaultsSerializableExt.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import SwiftyUserDefaults 3 | 4 | // NOTE: Workaround for a compiler bug, see here: https://github.com/sunshinejr/SwiftyUserDefaults/issues/285#issuecomment-1081226108 5 | extension DefaultsSerializable where Self: Codable { 6 | public typealias Bridge = DefaultsCodableBridge 7 | public typealias ArrayBridge = DefaultsCodableBridge<[Self]> 8 | } 9 | 10 | extension DefaultsSerializable where Self: RawRepresentable { 11 | typealias Bridge = DefaultsRawRepresentableBridge 12 | typealias ArrayBridge = DefaultsRawRepresentableArrayBridge<[Self]> 13 | } 14 | -------------------------------------------------------------------------------- /App/Sources/Globals/Extensions/UIViewControllerExt.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 16.10.21. 3 | // Copyright © 2021 Flinesoft. All rights reserved. 4 | // 5 | 6 | import NotificationToast 7 | import UIKit 8 | 9 | extension UIViewController { 10 | func showToast(message: String) { 11 | let toastView = ToastView( 12 | title: message, 13 | titleFont: UIFont.systemFont(ofSize: UIFont.labelFontSize, weight: .regular), 14 | position: .bottom 15 | ) 16 | toastView.displayTime = TimeInterval.seconds(3) 17 | toastView.hideOnTap = false 18 | toastView.show() 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /App/Sources/Globals/Logger.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 23.01.17. 3 | // Copyright © 2017 Flinesoft. All rights reserved. 4 | // 5 | 6 | import SwiftyBeaver 7 | import UIKit 8 | 9 | let log = SwiftyBeaver.self 10 | 11 | final class Logger { 12 | static let shared = Logger() 13 | 14 | func setup() { 15 | // log to console 16 | let consoleDestination = ConsoleDestination() 17 | #if DEBUG 18 | consoleDestination.minLevel = .debug 19 | #else 20 | consoleDestination.minLevel = .warning 21 | #endif 22 | log.addDestination(consoleDestination) 23 | 24 | // log to file 25 | let fileDestination = FileDestination() 26 | fileDestination.minLevel = .info 27 | log.addDestination(fileDestination) 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /App/Sources/Models/AudioMode.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 23.10.21. 3 | // Copyright © 2021 Flinesoft. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | enum AudioMode: String, CaseIterable, Equatable { 9 | case movementSound 10 | case speechSynthesizer 11 | case movementSoundAndSpeechSynthesizer 12 | case none 13 | 14 | var displayDescription: String { 15 | switch self { 16 | case .movementSound: 17 | return L10n.AudioMode.MovementSound.string 18 | 19 | case .speechSynthesizer: 20 | return L10n.AudioMode.SpeechSynthesizer.string 21 | 22 | case .movementSoundAndSpeechSynthesizer: 23 | return L10n.AudioMode.MovementSoundAndSpeechSynthesizer.string 24 | 25 | case .none: 26 | return L10n.AudioMode.None.string 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /App/Sources/Models/MovementSound.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 08.11.21. 3 | // Copyright © 2021 Flinesoft. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | enum MovementSound: String { 9 | case downwards = "C-Short" 10 | case upwards = "E-Short" 11 | case longSitting = "E-Long" 12 | case salam = "G-Short" 13 | } 14 | -------------------------------------------------------------------------------- /App/Sources/Models/Position.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 26.01.17. 3 | // Copyright © 2017 Flinesoft. All rights reserved. 4 | // 5 | 6 | import UIKit 7 | 8 | enum Position: Int { 9 | // NOTE: Values reflect the approximate head position in centimeters 10 | case standing = 180 11 | case bending = 120 12 | case sitting = 50 13 | case worship = 10 14 | case salamRight = 49 15 | case salamLeft = 51 16 | 17 | private static let baseMovementDuration = Duration.milliseconds(1_400) 18 | 19 | func arrow(forChangingTo newPosition: Position?) -> Arrow? { 20 | guard let newPosition = newPosition else { return nil } 21 | 22 | switch self { 23 | case .standing: 24 | if newPosition == .bending { return .diagonalRightDown } 25 | if newPosition == .worship { return .downwards } 26 | 27 | case .bending: 28 | if newPosition == .standing { return .diagonalLeftUp } 29 | 30 | case .sitting: 31 | if newPosition == .worship { return .diagonalRightDown } 32 | if newPosition == .salamRight { return .rightwards } 33 | if newPosition == .standing { return .upwards } 34 | 35 | case .worship: 36 | if newPosition == .sitting { return .diagonalLeftUp } 37 | if newPosition == .standing { return .upwards } 38 | 39 | case .salamRight: 40 | if newPosition == .salamLeft { return .leftwards } 41 | 42 | default: 43 | break 44 | } 45 | 46 | return nil 47 | } 48 | 49 | func movementDuration(forChangingTo newPosition: Position) -> TimeInterval { 50 | guard abs(self.rawValue - newPosition.rawValue) <= 100 else { 51 | return 2.5 * Position.baseMovementDuration.timeInterval 52 | } 53 | return Position.baseMovementDuration.timeInterval 54 | } 55 | } 56 | 57 | extension Position { 58 | enum Arrow: String { 59 | case upwards = "↑" 60 | case downwards = "↓" 61 | case leftwards = "←" 62 | case rightwards = "→" 63 | case diagonalLeftUp = "↖" 64 | case diagonalRightDown = "↘" 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /App/Sources/Models/RecitationPart.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 16.10.21. 3 | // Copyright © 2021 Flinesoft. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | import HandySwift 8 | import SwiftyUserDefaults 9 | 10 | struct RecitationPart: Codable, DefaultsSerializable { 11 | let partLength: Recitation.MaxArabicWordsPerStanding 12 | let part: Int 13 | let totalParts: Int 14 | 15 | // NOTE: Workaround for an issue with SwiftyUserDefaults where RawRepresentable enums can't be Codable, too. 16 | private let recitationRawValue: Recitation.RawValue 17 | var recitation: Recitation { 18 | Recitation(rawValue: recitationRawValue)! 19 | } 20 | 21 | init( 22 | recitation: Recitation, 23 | partLength: Recitation.MaxArabicWordsPerStanding, 24 | part: Int = 1, 25 | totalParts: Int = 1 26 | ) { 27 | self.recitationRawValue = recitation.rawValue 28 | self.partLength = partLength 29 | self.part = part 30 | self.totalParts = totalParts 31 | } 32 | 33 | func nextPart() -> RecitationPart? { 34 | guard part < totalParts else { return nil } 35 | 36 | return RecitationPart( 37 | recitation: recitation, 38 | partLength: partLength, 39 | part: part + 1, 40 | totalParts: totalParts 41 | ) 42 | } 43 | 44 | func recitationLines() -> [String] { 45 | var contentString = recitation.contentString() 46 | 47 | if totalParts > 1 { 48 | let shortLengthTotalParts = recitation.totalParts(maxWordsPerPart: .short) 49 | 50 | let separatorLowerBoundIndex = (part - 1) * partLength.factor 51 | let separatorUpperBoundIndex = min(separatorLowerBoundIndex + partLength.factor, shortLengthTotalParts) 52 | let partIndexRange = separatorLowerBoundIndex.. Int { 44 | viewModel.entries.count 45 | } 46 | 47 | func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 48 | let cell = 49 | collectionView.dequeueReusableCell(withReuseIdentifier: cellReuseIdentifier, for: indexPath) 50 | as! FAQCollectionViewCell 51 | 52 | cell.questionLabel.font = (collectionView.collectionViewLayout as! FAQCollectionViewLayout).questionLabelFont 53 | cell.answerLabel.font = (collectionView.collectionViewLayout as! FAQCollectionViewLayout).answerLabelFont 54 | 55 | cell.questionLabel.attributedText = viewModel.entries[indexPath.item].question.hyphenated() 56 | cell.answerLabel.attributedText = viewModel.entries[indexPath.item].answer.hyphenated() 57 | 58 | return cell 59 | } 60 | } 61 | 62 | extension FAQViewController: FAQCollectionViewLayoutDelegate { 63 | func question(at indexPath: IndexPath) -> String { 64 | viewModel.entries[indexPath.item].question 65 | } 66 | 67 | func answer(at indexPath: IndexPath) -> String { 68 | viewModel.entries[indexPath.item].answer 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /App/Sources/ScreenFlows/Settings/FAQViewModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 19.02.17. 3 | // Copyright © 2017 Flinesoft. All rights reserved. 4 | // 5 | 6 | import UIKit 7 | 8 | struct FAQViewModel { 9 | typealias FAQEntry = (question: String, answer: String) 10 | 11 | let entries: [FAQEntry] 12 | } 13 | -------------------------------------------------------------------------------- /App/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(MARKETING_VERSION) 19 | CFBundleVersion 20 | 6 21 | ITSAppUsesNonExemptEncryption 22 | 23 | LSRequiresIPhoneOS 24 | 25 | UIBackgroundModes 26 | 27 | audio 28 | 29 | UILaunchStoryboardName 30 | LaunchScreen 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UIRequiresFullScreen 36 | 37 | UISupportedInterfaceOrientations 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationLandscapeLeft 41 | UIInterfaceOrientationLandscapeRight 42 | 43 | UISupportedInterfaceOrientations~ipad 44 | 45 | UIInterfaceOrientationPortrait 46 | UIInterfaceOrientationPortraitUpsideDown 47 | UIInterfaceOrientationLandscapeLeft 48 | UIInterfaceOrientationLandscapeRight 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /App/SupportingFiles/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /App/SupportingFiles/en.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /App/SupportingFiles/tr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlineDev/Prayer/01d50af2645eb10869930fd976f3d91f61f51275/Logo.png -------------------------------------------------------------------------------- /Prayer.remafox: -------------------------------------------------------------------------------- 1 | { 2 | "androidStringsFilesSearch" : { 3 | "excludeSubPathsContaining" : [ 4 | ".build/", 5 | ".git/", 6 | ".idea/", 7 | "build/", 8 | "docs/", 9 | "gradle/" 10 | ], 11 | "pathsToSearch" : [ 12 | 13 | ] 14 | }, 15 | "appleStringsFilesConfig" : { 16 | "emptyLinesBetweenKeys" : 1 17 | }, 18 | "appleStringsFilesSearch" : { 19 | "excludeSubPathsContaining" : [ 20 | ".build/", 21 | ".git/", 22 | "build/", 23 | "Carthage/", 24 | "docs/", 25 | "Pods/" 26 | ], 27 | "pathsToSearch" : [ 28 | "App/" 29 | ] 30 | }, 31 | "configFilePath" : "Prayer.remafox", 32 | "id" : "561E6AD8-030F-4F6A-B13D-DB332C6E48CF", 33 | "interfaceBuilderFilesSearch" : { 34 | "excludeSubPathsContaining" : [ 35 | ".build/", 36 | ".git/", 37 | "build/", 38 | "Carthage/", 39 | "docs/", 40 | "Pods/" 41 | ], 42 | "pathsToSearch" : [ 43 | "App/" 44 | ] 45 | }, 46 | "interfaceBuilderIgnoreTags" : [ 47 | "#bartycrouch-ignore!", 48 | "#bc-ignore!", 49 | "#i!", 50 | "#non-translatable", 51 | "#remafox-ignore" 52 | ], 53 | "lintTasks" : [ 54 | "duplicateKeys", 55 | "emptyValues" 56 | ], 57 | "normalizeTasks" : [ 58 | "harmonizeWithSourceLanguage", 59 | "sortByKeys" 60 | ], 61 | "projectName" : "Prayer", 62 | "resourcesEnum" : { 63 | "accessLevel" : "internal", 64 | "bundleInstance" : "Bundle.main", 65 | "enumName" : "Res", 66 | "filePath" : "App/Generated/ReMafoX.swift", 67 | "indent" : " ", 68 | "objectiveCCompatible" : false, 69 | "stringsEnumName" : "Str", 70 | "stringsTopLevelAlias" : "L10n", 71 | "useSwiftPackagePreviewsWorkaround" : false, 72 | "useTopLevelAliases" : true 73 | }, 74 | "sourceLanguage" : "en", 75 | "version" : 1, 76 | "xcodeProjectPath" : "Prayer.xcodeproj" 77 | } -------------------------------------------------------------------------------- /Prayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Prayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Prayer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Latest 7 | 8 | 9 | -------------------------------------------------------------------------------- /Prayer.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FILEHEADER 6 | 7 | // Created by ___FULLUSERNAME___ on ___DATE___. 8 | // ___COPYRIGHT___ 9 | // 10 | 11 | 12 | -------------------------------------------------------------------------------- /Prayer.xcodeproj/xcuserdata/Privat.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | App.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | A164848A1E243834008EC78C 16 | 17 | primary 18 | 19 | 20 | A164849E1E243834008EC78C 21 | 22 | primary 23 | 24 | 25 | A16484A91E243834008EC78C 26 | 27 | primary 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Scripts/ci.swift: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env beak run --path 2 | 3 | // MARK: - Script Dependencies 4 | // beak: kareman/SwiftShell @ .upToNextMajor(from: "4.1.2") 5 | // beak: onevcat/Rainbow @ .upToNextMajor(from: "3.1.2") 6 | 7 | import Foundation 8 | import Rainbow 9 | import SwiftShell 10 | 11 | // MARK: - Runnable Tasks 12 | /// Lints the project with all configured linters like it would on the CI. 13 | public func lint() throws { 14 | for lintStep in Constants.lintSteps { 15 | print("\n⏳ Linting with \(lintStep.name.lightGreen) ...".bold) 16 | let output = run(bash: lintStep.command) 17 | 18 | if output.succeeded { 19 | print("✨ \(lintStep.name) linted successfully. No issues found.") 20 | } else { 21 | print(output.stdout) 22 | print(output.stderror) 23 | print("❗️ \(lintStep.name) linting failed. See above output for details.") 24 | 25 | print("⚠️ Skipping subsequent steps. Re-run lint command once the failing step is fixed.") 26 | break 27 | } 28 | } 29 | } 30 | 31 | // MARK: - Helpers 32 | private func lint(bash command: String) -> RunOutput { 33 | 34 | return run(bash: command) 35 | } 36 | 37 | private func findXcodeProject() -> String { 38 | let xcodeWorkspaces = run(bash: "find . -d 1 -regex '.*\\.xcworkspace' -type d").stdout.components(separatedBy: .newlines).filter { !$0.isEmpty } 39 | let xcodeProjects = run(bash: "find . -d 1 -regex '.*\\.xcodeproj' -type d").stdout.components(separatedBy: .newlines).filter { !$0.isEmpty } 40 | 41 | if let workspacePath = xcodeWorkspaces.first { 42 | return workspacePath 43 | } else if let projectPath = xcodeProjects.first { 44 | return projectPath 45 | } else { 46 | fatalError("Could not find an Xcode project in current directory.") 47 | } 48 | } 49 | 50 | struct LintStep { 51 | let name: String 52 | let command: String 53 | } 54 | 55 | enum Constants { 56 | static let lintSteps: [LintStep] = [ 57 | LintStep(name: "BartyCrouch", command: "bartycrouch lint --fail-on-warnings"), 58 | LintStep(name: "SwiftLint", command: "swiftlint lint --strict --quiet"), 59 | LintStep(name: "ProjLint", command: "projlint lint --strict"), 60 | LintStep(name: "Periphery", command: "periphery scan --strict") 61 | ] 62 | } 63 | -------------------------------------------------------------------------------- /Scripts/deps.swift: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env beak run --path 2 | 3 | // MARK: - Script Dependencies 4 | // beak: kareman/SwiftShell @ .upToNextMajor(from: "4.1.2") 5 | // beak: onevcat/Rainbow @ .upToNextMajor(from: "3.1.2") 6 | 7 | import Foundation 8 | import Rainbow 9 | import SwiftShell 10 | 11 | // MARK: - Runnable Tasks 12 | /// Updates all dependencies specified in the project according to their version requirements. 13 | public func update() throws { 14 | if FileManager.default.fileExists(atPath: "Cartfile") { 15 | try execute(bash: "carthage update --platform ios --cache-builds") 16 | } 17 | 18 | if FileManager.default.fileExists(atPath: "Podfile") { 19 | try execute(bash: "pod update") 20 | } 21 | } 22 | 23 | /// Installs all dependencies with the exact versions specified on last update. 24 | public func install() throws { 25 | if FileManager.default.fileExists(atPath: "Cartfile.resolved") { 26 | try execute(bash: "carthage bootstrap --platform ios --cache-builds") 27 | } 28 | 29 | if FileManager.default.fileExists(atPath: "Podfile.lock") { 30 | try execute(bash: "pod install") 31 | } 32 | } 33 | 34 | // MARK: - Helpers 35 | private func execute(bash command: String) throws { 36 | print("⏳ Executing '\(command.italic.lightYellow)'".bold) 37 | try runAndPrint(bash: command) 38 | } 39 | -------------------------------------------------------------------------------- /Tests/Sources/Models/RakahComponentTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 12.01.17. 3 | // Copyright © 2017 Flinesoft. All rights reserved. 4 | // 5 | 6 | import XCTest 7 | 8 | @testable import App 9 | 10 | class RakahComponentTests: XCTestCase { 11 | func testInitializeTakbir() { 12 | let takbir = RakahComponent(.takbir(.standing)) 13 | 14 | XCTAssertEqual(takbir.spokenTextLines.count, 1) 15 | XCTAssert(takbir.spokenTextLines.contains("God is greater")) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Tests/Sources/Models/RakahTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Cihat Gündüz on 12.01.17. 3 | // Copyright © 2017 Flinesoft. All rights reserved. 4 | // 5 | 6 | import XCTest 7 | 8 | @testable import App 9 | 10 | class RakahTests: XCTestCase { 11 | func testCorrectComponentsCountForBeginningRakah() { 12 | let rakah = Rakah( 13 | isBeginningOfPrayer: true, 14 | standingRecitationPart: .init(recitation: .destiny, partLength: .short), 15 | includesSittingRecitation: false, 16 | isEndOfPrayer: false 17 | ) 18 | 19 | let randomRecitation = "RR" 20 | let expectedComponentNames = [ 21 | "Takbīr", "Opening Supplication", "Ta'awwudh", "📖1: al-Fatiha (The Opening)", randomRecitation, "Takbīr", "Ruku", 22 | "Straightening Up", "Takbīr", 23 | "Sajdah", "Takbīr", "Takbīr", "Sajdah", "Takbīr", 24 | ] 25 | 26 | XCTAssertEqual(rakah.components().count, expectedComponentNames.count) 27 | for (index, component) in rakah.components().enumerated() { 28 | // skip comparison for random recitations 29 | if expectedComponentNames[index] == randomRecitation { continue } 30 | XCTAssertEqual(component.name, expectedComponentNames[index]) 31 | } 32 | } 33 | 34 | func testCorrectComponentsCountForEndingRakah() { 35 | let rakah = Rakah( 36 | isBeginningOfPrayer: false, 37 | standingRecitationPart: nil, 38 | includesSittingRecitation: true, 39 | isEndOfPrayer: true 40 | ) 41 | 42 | let randomRecitation = "RR" 43 | let expectedComponentNames = [ 44 | "📖1: al-Fatiha (The Opening)", "Takbīr", "Ruku", "Straightening Up", "Takbīr", 45 | "Sajdah", "Takbīr", "Takbīr", "Sajdah", "Takbīr", 46 | "Tashahhud", "Salatul-'Ibrahimiyyah", "Rabbanagh", "Salâm", "Salâm", 47 | ] 48 | 49 | XCTAssertEqual(rakah.components().count, expectedComponentNames.count) 50 | for (index, component) in rakah.components().enumerated() { 51 | // skip comparison for random recitations 52 | if expectedComponentNames[index] == randomRecitation { continue } 53 | XCTAssertEqual(component.name, expectedComponentNames[index]) 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Tests/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /UITests/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | app_identifier "com.flinesoft.prayer" 2 | apple_id ENV["APPLE_ID"] 3 | 4 | team_id ENV["DEV_PORTAL_TEAM_ID"] 5 | itc_team_id ENV["ITC_TEAM_ID"] 6 | -------------------------------------------------------------------------------- /fastlane/Deliverfile: -------------------------------------------------------------------------------- 1 | ###################### More Options ###################### 2 | # If you want to have even more control, check out the documentation 3 | # https://github.com/fastlane/fastlane/blob/master/deliver/Deliverfile.md 4 | 5 | keywords( 6 | "en-US" => "Prayer, Pray, English, Islam, Muslim", 7 | "de-DE" => "Gebet, Beten, Deutsch, Islam, Muslim", 8 | "tr" => "Namaz, Dua, Türkçe, Islam, Müslüman" 9 | ) 10 | 11 | copyright "2016-#{Time.now.year} Cihat Gündüz" 12 | 13 | name( 14 | "de-DE" => "Gebet auf Deutsch", 15 | "en-US" => "Prayer in English", 16 | "tr" => "Türkçe Namaz" 17 | ) 18 | 19 | support_url( 20 | "de-DE" => "https://github.com/FlineDev/Prayer/issues", 21 | "en-US" => "https://github.com/FlineDev/Prayer/issues", 22 | "tr" => "https://github.com/FlineDev/Prayer/issues" 23 | ) 24 | 25 | phased_release(true) 26 | 27 | automatic_release(true) 28 | -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- 1 | # Docs: https://docs.fastlane.tools/advanced/Fastfile/ 2 | fastlane_version "2.210.1" 3 | 4 | default_platform :ios 5 | 6 | 7 | desc "Deploy a new version to the App Store" 8 | lane :release do 9 | match(type: "appstore") 10 | increment_build_number(xcodeproj: "Prayer.xcodeproj") if UI.confirm("Increment build number?") 11 | 12 | if UI.confirm("Take new screenshots?") 13 | snapshot(localize_simulator: true, dark_mode: true, launch_arguments: "DARK_MODE", clear_previous_screenshots: true) 14 | snapshot(localize_simulator: true, dark_mode: false) 15 | end 16 | 17 | gym 18 | deliver(force: true, overwrite_screenshots: UI.confirm("Override screenshots?")) 19 | end 20 | -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- 1 | git_url ENV["MATCH_GIT_URL"] 2 | 3 | storage_mode "git" 4 | 5 | type "development" # The default type, can be: appstore, adhoc, enterprise or development 6 | 7 | app_identifier "com.flinesoft.prayer" 8 | 9 | username ENV["APPLE_ID"] 10 | 11 | # The docs are available on https://docs.fastlane.tools/actions/match 12 | -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- 1 | fastlane documentation 2 | ---- 3 | 4 | # Installation 5 | 6 | Make sure you have the latest version of the Xcode command line tools installed: 7 | 8 | ```sh 9 | xcode-select --install 10 | ``` 11 | 12 | For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) 13 | 14 | # Available Actions 15 | 16 | ### release 17 | 18 | ```sh 19 | [bundle exec] fastlane release 20 | ``` 21 | 22 | Deploy a new version to the App Store 23 | 24 | ---- 25 | 26 | This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. 27 | 28 | More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). 29 | 30 | The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools). 31 | -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- 1 | # A list of devices you want to take the screenshots from 2 | devices([ 3 | "iPhone 8 Plus", 4 | "iPhone 13 Pro Max", 5 | "iPad Pro (12.9-inch) (5th generation)", 6 | ]) 7 | 8 | languages([ 9 | "en-US", 10 | "de-DE", 11 | "tr", 12 | ]) 13 | 14 | # The name of the scheme which contains the UI Tests 15 | scheme("App") 16 | 17 | # Where should the resulting screenshots be stored? 18 | output_directory("fastlane/screenshots") 19 | 20 | # remove the '#' to clear all previously generated screenshots before creating new ones 21 | # clear_previous_screenshots(true) 22 | 23 | # Remove the '#' to set the status bar to 9:41 AM, and show full battery and reception. See also override_status_bar_arguments for custom options. 24 | override_status_bar(true) 25 | 26 | # Arguments to pass to the app on launch. See https://docs.fastlane.tools/actions/snapshot/#launch-arguments 27 | # launch_arguments(["-favColor red"]) 28 | 29 | # For more information about all available options run 30 | # fastlane action snapshot 31 | -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/description.txt: -------------------------------------------------------------------------------- 1 | Du betest regelmäßig deine Gebete auf Arabisch, verstehst aber nicht wirklich, was du dabei sagst? 2 | 3 | Diese App hilft dir, deine Gebete auf Deutsch (oder Türkisch bzw. Englisch) zu machen, damit sie für dich wieder an Bedeutung gewinnen. Hierzu lässt du dein Gerät während des Gebetes vor dir liegen und liest den Text einfach mit. Alternativ kannst du die Computer-Vorlese-Stimme einstellen und den Text während des Gebets über deine Kopfhörer hören, während sich dein Telefon in der Hosentasche befindet. Die App ist absichtlich schlicht gehalten und auf die Grundfunktionen reduziert, damit sie keine ablenkenden Elemente wie Animationen oder Werbung enthält. Werbung ist übrigens sowieso kein Thema, da der gesamte Code mit einer Open Source-Lizenz auf GitHub veröffentlicht ist (unter https://github.com/Flinesoft/Prayer). 4 | 5 | Diese App setzt voraus, dass du den Ablauf eines Gebets bereits kennst. Für Gebets-Neulinge ist diese App daher nicht geeignet. 6 | 7 | Wir hoffen, dass du diese App nützlich findest. Wenn sie dir gefällt, freuen wir uns über eine entsprechende Bewertung im App Store. Für Fragen und Anregungen haben wir ein Forum eingerichtet: github.com/FlineDev/Prayer/discussions 8 | Dort findest du auch unsere Pläne für die Zukunft und kannst dich an der Diskussion beteiligen. 9 | 10 | 11 | Rechtliche Hinweise: 12 | Die Urheberrechte der Übersetzungen gehören den jeweiligen Autoren. 13 | Die Koran-Übersetzungen sind entnommen aus „Die Botschaft des Koran“ von Muhammad Asad. 14 | -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/release_notes.txt: -------------------------------------------------------------------------------- 1 | GEÄNDERT: 2 | - Kleinere Textverbesserungen der englischen Benutzeroberfläche. 3 | 4 | BEHOBEN: 5 | - Dutzende von Tippfehlern behoben, hauptsächlich in deutschen Übersetzungen. 6 | -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/subtitle.txt: -------------------------------------------------------------------------------- 1 | Lies den Koran durch Gebete 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/description.txt: -------------------------------------------------------------------------------- 1 | You regularly pray your prayers in Arabic, but do not really understand what you're saying? 2 | 3 | This app will help you make your prayers in English (or German or Turkish) to make them more meaningful to you. To do this, leave your device lying in front of you during the prayer and simply read the text from there. Or alternatively, configure the computer voice audio mode and listen to the text with your headphones during the prayer, while keeping your phone in your pocket. The app is purposely kept simple and reduced to the basic functions so that it does not contain distracting elements such as animations or advertising. Advertising is not an issue anyway, since the whole code is published with an open source license on GitHub (at https://github.com/Flinesoft/Prayer). 4 | 5 | The app expects that you already know how a prayer is done. Therefore this app is not suitable for newcomers to prayers. 6 | 7 | We hope you find this app useful. If you like it, we would love to receive a rating in the App Store. For questions and suggestions, we have set up a forum: github.com/FlineDev/Prayer/discussions 8 | There, you will also find our plans for the future and you can even participate in the discussion. 9 | 10 | 11 | Legal Notice: 12 | The copyrights of the translations belong to their respective authors. 13 | The Quran translations are taken from "The Message of The Qur'an" by Muhammad Asad. 14 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- 1 | CHANGED: 2 | - Minor English UI text improvements. 3 | 4 | FIXED: 5 | - Fixed dozens of typos, mostly in German translations. 6 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | Read the Quran through Prayers 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | LIFESTYLE 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | EDUCATION 2 | -------------------------------------------------------------------------------- /fastlane/metadata/tr/description.txt: -------------------------------------------------------------------------------- 1 | Günde beş vakit namaz kılıyor da Arapça okuduğun için ne dediğini mi anlamıyorsun? 2 | 3 | Bu uygulama Türkçe (veya Almanca yada İngilizce) namaz kılmanıza yardımcı olacaktır ki namazlarınızın anlamı olsun. Bunu yapmak için, namazda önünüzde cihazınızı bırakın ve oradan metni okuyarak namazınızı kılın. Alternatif olarak, namaz esnasında telefonunuz cebinizdeyken bilgisayarın sesli okuma sesini ayarlayabilir ve metni kulaklıklarınızdan dinleyebilirsiniz. Uygulamanın kendisi bilerek basit tutulmuştur kı animasyon yada reklam gibi rahatsız edici seyler içermesin. Bu arada bütün kodu GitHub üzerinde bir açık kaynak lisansı ile yayınlanmış durumda (https://github.com/Flinesoft/Prayer) - böylece reklam sorunu hiç çıkmayacaktır. 4 | 5 | Uygulama, bir duanın nasıl yapıldığını zaten bilmenizi bekler. Bu nedenle bu uygulama namaza yeni başlayanlar için uygun değildir. 6 | 7 | Biz bu uygulamanın yararlı bulacağını umuyoruz. Eğer sevdiyseniz, bize App Store'da bir rating yaparsan seviniriz. links. Soru ve önerileriniz için, biz bir forum kurduk: github.com/FlineDev/Prayer/discussions 8 | Orada, bu uygulamanın geleceği için planımızı da bulacaksınız ve hatta tartışmaya katılabilirsiniz. 9 | 10 | 11 | Yasal Uyarı: 12 | Çevirilerin telif hakları yazarlarına aittir. 13 | Kuran çevirileri Muhammed Esedin "Kur'an Mesajı" kitabından alınmıştır. 14 | -------------------------------------------------------------------------------- /fastlane/metadata/tr/release_notes.txt: -------------------------------------------------------------------------------- 1 | DEĞİŞEN: 2 | - Küçük İngilizce UI metin iyileştirmeleri. 3 | 4 | DÜZELTİLEN: 5 | - Çoğu Almanca çevirilerde olmak üzere düzinelerce yazım hatası düzeltildi. 6 | -------------------------------------------------------------------------------- /fastlane/metadata/tr/subtitle.txt: -------------------------------------------------------------------------------- 1 | Namaz kılarak Kur'anı oku 2 | -------------------------------------------------------------------------------- /swiftgen.yml: -------------------------------------------------------------------------------- 1 | ib: 2 | inputs: App/Sources 3 | outputs: 4 | - templateName: scenes-swift4 5 | output: App/Generated/SwiftGen/Storyboards.swift 6 | xcassets: 7 | inputs: 8 | - App/Resources/Images.xcassets 9 | - App/Resources/Colors.xcassets 10 | outputs: 11 | - templatePath: SwiftGen-xcassets.stencil 12 | output: App/Generated/SwiftGen/Assets.swift 13 | --------------------------------------------------------------------------------