Showing preview only (1,039K chars total). Download the full file or copy to clipboard to get everything.
Repository: antonlorani/jottre
Branch: master
Commit: a4ac34d3b5e3
Files: 289
Total size: 946.0 KB
Directory structure:
gitextract_ecdvzt6x/
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.yml
│ │ └── feature_request.yml
│ └── workflows/
│ ├── pull_request.yml
│ └── push_on_master.yml
├── .gitignore
├── .license_header_template
├── .licenseignore
├── .rubocop.yml
├── .ruby-version
├── .swift-format
├── .xcode-version
├── AppKitPlugin/
│ ├── AppKitPlugin.swift
│ └── Info.plist
├── Brewfile
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── Gemfile
├── LICENSE
├── PRIVACY_POLICY.md
├── README.md
├── Resources/
│ ├── Assets.xcassets/
│ │ └── AppIcon.appiconset/
│ │ └── Contents.json
│ ├── Localizable.xcstrings
│ └── PrivacyInfo.xcprivacy
├── SECURITY_POLICY.md
├── Sources/
│ ├── AppDelegate.swift
│ ├── ApplicationService.swift
│ ├── BundleService.swift
│ ├── CloudMigrationPage/
│ │ ├── CloudImageCell/
│ │ │ ├── CloudImageCell.swift
│ │ │ ├── CloudImageCellViewModel.swift
│ │ │ └── PageCellItem+cloudImage.swift
│ │ ├── CloudMigrationCoordinator.swift
│ │ ├── CloudMigrationCoordinatorFactory.swift
│ │ ├── CloudMigrationJotBusinessModel.swift
│ │ ├── CloudMigrationJotCell/
│ │ │ ├── CloudMigrationJotCell.swift
│ │ │ ├── CloudMigrationJotCellViewModel.swift
│ │ │ └── PageCellItem+cloudMigrationJot.swift
│ │ ├── CloudMigrationRepository.swift
│ │ ├── CloudMigrationViewControllerFactory.swift
│ │ ├── CloudMigrationViewModel.swift
│ │ ├── DefaultsKey+hasDoneCloudMigration.swift
│ │ └── DefaultsKey+isICloudEnabled.swift
│ ├── Defaults/
│ │ ├── DefaultsContinuationStorage.swift
│ │ ├── DefaultsKey.swift
│ │ └── DefaultsService.swift
│ ├── DesignTokens.swift
│ ├── DeviceService.swift
│ ├── EditJotPage/
│ │ ├── EditJotCoordinator.swift
│ │ ├── EditJotCoordinatorFactory.swift
│ │ ├── EditJotRepository.swift
│ │ ├── EditJotURL.swift
│ │ ├── EditJotViewController.swift
│ │ ├── EditJotViewControllerFactory.swift
│ │ └── EditJotViewModel.swift
│ ├── EnableCloudPage/
│ │ ├── EnableCloudCoordinator.swift
│ │ ├── EnableCloudCoordinatorFactory.swift
│ │ ├── EnableCloudViewControllerFactory.swift
│ │ ├── EnableCloudViewModel.swift
│ │ └── FeatureRow/
│ │ ├── FeatureRowCell.swift
│ │ ├── FeatureRowCellViewModel.swift
│ │ └── PageCellItem+featureRow.swift
│ ├── FileConflictService.swift
│ ├── FileService/
│ │ ├── FileServiceProtocol.swift
│ │ ├── LocalFileService.swift
│ │ ├── UbiquitousFileService.swift
│ │ └── UbiquitousInfo.swift
│ ├── InfoAlertCoordinator.swift
│ ├── Jot/
│ │ ├── Jot.swift
│ │ ├── JotFile.swift
│ │ ├── JotFileService.swift
│ │ └── JotFileVersion.swift
│ ├── JotConflictPage/
│ │ ├── JotConflictCell/
│ │ │ ├── JotConflictBusinessModel.swift
│ │ │ ├── JotConflictCell.swift
│ │ │ ├── JotConflictCellViewModel.swift
│ │ │ └── PageCellItem+jotConflict.swift
│ │ ├── JotConflictCoordinator.swift
│ │ ├── JotConflictCoordinatorFactory.swift
│ │ ├── JotConflictRepository.swift
│ │ ├── JotConflictResult.swift
│ │ ├── JotConflictViewControllerFactory.swift
│ │ ├── JotConflictViewModel.swift
│ │ └── JotFileConflictService.swift
│ ├── JotFilePreview/
│ │ ├── CachedJotFilePreviewImageService.swift
│ │ ├── JotFilePreviewImageService.swift
│ │ └── JotFilePreviewImageServiceProtocol.swift
│ ├── JotsPage/
│ │ ├── CreateJot/
│ │ │ ├── CreateJotCoordinator.swift
│ │ │ ├── CreateJotCoordinatorFactory.swift
│ │ │ └── CreateJotRepository.swift
│ │ ├── DeleteJot/
│ │ │ ├── DeleteJotCoordinator.swift
│ │ │ ├── DeleteJotCoordinatorFactory.swift
│ │ │ └── DeleteJotRepository.swift
│ │ ├── EmptyStateCell/
│ │ │ ├── EmptyStateCell.swift
│ │ │ ├── EmptyStateViewModel.swift
│ │ │ └── PageCellItem+jotsEmptyState.swift
│ │ ├── JotCell/
│ │ │ ├── JotBusinessModel.swift
│ │ │ ├── JotCell.swift
│ │ │ ├── JotCellViewModel.swift
│ │ │ └── PageCellItem+jot.swift
│ │ ├── JotMenuConfiguration.swift
│ │ ├── JotMenuConfigurationFactory.swift
│ │ ├── JotsCoordinator.swift
│ │ ├── JotsCoordinatorFactory.swift
│ │ ├── JotsPageURL.swift
│ │ ├── JotsRepository.swift
│ │ ├── JotsViewControllerFactory.swift
│ │ ├── JotsViewModel.swift
│ │ ├── RenameJot/
│ │ │ ├── RenameJotCoordinator.swift
│ │ │ ├── RenameJotCoordinatorFactory.swift
│ │ │ └── RenameJotRepository.swift
│ │ ├── ShareJot/
│ │ │ ├── ShareJotCoordinator.swift
│ │ │ ├── ShareJotCoordinatorFactory.swift
│ │ │ └── ShareJotRepository.swift
│ │ └── UIMenu+makeJotMenuConfiguration.swift
│ ├── L10n.swift
│ ├── MacCatalystAppKitPluginService.swift
│ ├── Navigation/
│ │ ├── Coordinator.swift
│ │ ├── Navigation.swift
│ │ ├── NavigationCoordinator.swift
│ │ └── URLConvertible.swift
│ ├── PageViewController/
│ │ ├── Cell/
│ │ │ ├── PageCell.swift
│ │ │ ├── PageCellAction.swift
│ │ │ ├── PageCellItem.swift
│ │ │ ├── PageCellSizingStrategy.swift
│ │ │ └── PageCellViewModel.swift
│ │ ├── PageCallToActionView.swift
│ │ ├── PageHeader/
│ │ │ ├── PageCellItem+pageHeader.swift
│ │ │ ├── PageHeaderCell.swift
│ │ │ └── PageHeaderViewModel.swift
│ │ ├── PageNavigationItem.swift
│ │ ├── PageNavigationSymbolBarButtonItemFactory.swift
│ │ ├── PageNavigationTextBarButtonItemFactory.swift
│ │ ├── PageViewController.swift
│ │ └── PageViewModel.swift
│ ├── RevealFile/
│ │ ├── RevealFileCoordinator.swift
│ │ ├── RevealFileCoordinatorFactory.swift
│ │ └── RevealFileURL.swift
│ ├── RootCoordinator.swift
│ ├── RootCoordinatorFactory.swift
│ ├── SceneCoordinator.swift
│ ├── SceneDelegate.swift
│ ├── SettingsPage/
│ │ ├── DefaultsKey+userInterfaceStyle.swift
│ │ ├── DropDownCell/
│ │ │ ├── PageCellItem+settingsDropdown.swift
│ │ │ ├── SettingsDropdownBusinessModel.swift
│ │ │ ├── SettingsDropdownCell.swift
│ │ │ └── SettingsDropdownCellViewModel.swift
│ │ ├── EnableICloudSupportURL.swift
│ │ ├── ExternalLinkCell/
│ │ │ ├── PageCellItem+settingsExternalLink.swift
│ │ │ ├── SettingsExternalLinkBusinessModel.swift
│ │ │ ├── SettingsExternalLinkCell.swift
│ │ │ └── SettingsExternalLinkCellViewModel.swift
│ │ ├── InfoCell/
│ │ │ ├── PageCellItem+settingsInfo.swift
│ │ │ ├── SettingsInfoBusinessModel.swift
│ │ │ ├── SettingsInfoCell.swift
│ │ │ └── SettingsInfoCellViewModel.swift
│ │ ├── JottreGithubURL.swift
│ │ ├── SettingsCell/
│ │ │ └── SettingsCell.swift
│ │ ├── SettingsCoordinator.swift
│ │ ├── SettingsCoordinatorFactory.swift
│ │ ├── SettingsRepository.swift
│ │ ├── SettingsViewControllerFactory.swift
│ │ ├── SettingsViewModel.swift
│ │ └── ToggleCell/
│ │ ├── PageCellItem+settingsToggle.swift
│ │ ├── SettingsToggleBusinessModel.swift
│ │ ├── SettingsToggleCell.swift
│ │ └── SettingsToggleCellViewModel.swift
│ └── Utilities/
│ ├── Array+safeIndex.swift
│ ├── AsyncSequence+toAsyncThrowingStream.swift
│ ├── AsyncStream+debounce.swift
│ ├── LoggerProtocol.swift
│ ├── NSLayoutConstraint+withPriority.swift
│ ├── UIColor+adaptiveBlackWhite.swift
│ ├── UIFont+systemStyle.swift
│ └── UITraitCollection+hasRenderingChange.swift
├── Tests/
│ ├── CloudMigrationPage/
│ │ ├── CloudImageCellViewModelTests.swift
│ │ ├── CloudMigrationCoordinatorTests.swift
│ │ ├── CloudMigrationJotBusinessModelTests.swift
│ │ ├── CloudMigrationJotCellViewModelTests.swift
│ │ ├── CloudMigrationRepositoryTests.swift
│ │ └── CloudMigrationViewModelTests.swift
│ ├── Defaults/
│ │ ├── DefaultsContinuationStorageTests.swift
│ │ ├── DefaultsKeyTests.swift
│ │ └── DefaultsServiceTests.swift
│ ├── EditJotPage/
│ │ ├── EditJotCoordinatorTests.swift
│ │ ├── EditJotRepositoryTests.swift
│ │ └── EditJotViewModelTests.swift
│ ├── EnableCloudPage/
│ │ ├── EnableCloudCoordinatorTests.swift
│ │ ├── EnableCloudViewModelTests.swift
│ │ └── FeatureRowCellViewModelTests.swift
│ ├── FileService/
│ │ ├── LocalFileServiceTests.swift
│ │ └── UbiquitousInfoTests.swift
│ ├── Helpers/
│ │ ├── Navigation+test.swift
│ │ ├── UIAlertAction+invoke.swift
│ │ └── URL+staticString.swift
│ ├── Jot/
│ │ ├── JotFileServiceDocumentsDirectoryContentsTests.swift
│ │ ├── JotFileServiceTests.swift
│ │ └── JotFileTests.swift
│ ├── JotConflictPage/
│ │ ├── JotConflictBusinessModelTests.swift
│ │ ├── JotConflictCellViewModelTests.swift
│ │ ├── JotConflictCoordinatorTests.swift
│ │ ├── JotConflictRepositoryTests.swift
│ │ ├── JotConflictViewModelTests.swift
│ │ └── JotFileConflictServiceTests.swift
│ ├── JotFilePreview/
│ │ └── CachedJotFilePreviewImageServiceTests.swift
│ ├── JotsPage/
│ │ ├── CreateJotCoordinatorTests.swift
│ │ ├── CreateJotRepositoryTests.swift
│ │ ├── DeleteJotCoordinatorTests.swift
│ │ ├── DeleteJotRepositoryTests.swift
│ │ ├── EmptyStateCellViewModelTests.swift
│ │ ├── JotBusinessModelTests.swift
│ │ ├── JotCellViewModelTests.swift
│ │ ├── JotMenuConfigurationFactoryTests.swift
│ │ ├── JotsCoordinatorTests.swift
│ │ ├── JotsRepositoryTests.swift
│ │ ├── JotsViewModelTests.swift
│ │ ├── RenameJotCoordinatorTests.swift
│ │ ├── RenameJotRepositoryTests.swift
│ │ ├── ShareJotCoordinatorTests.swift
│ │ └── ShareJotRepositoryTests.swift
│ ├── Mocks/
│ │ ├── ApplicationServiceMock.swift
│ │ ├── BundleServiceMock.swift
│ │ ├── CloudMigrationCoordinatorMock.swift
│ │ ├── CloudMigrationRepositoryMock.swift
│ │ ├── CloudMigrationViewControllerFactoryMock.swift
│ │ ├── CoordinatorFactoryMocks.swift
│ │ ├── CoordinatorMock.swift
│ │ ├── CreateJotRepositoryMock.swift
│ │ ├── DefaultsServiceMock.swift
│ │ ├── DeleteJotRepositoryMock.swift
│ │ ├── DeviceServiceMock.swift
│ │ ├── EditJotCoordinatorMock.swift
│ │ ├── EditJotRepositoryMock.swift
│ │ ├── EditJotViewControllerFactoryMock.swift
│ │ ├── EnableCloudCoordinatorMock.swift
│ │ ├── EnableCloudViewControllerFactoryMock.swift
│ │ ├── FileConflictServiceMock.swift
│ │ ├── FileServiceMock.swift
│ │ ├── JotConflictCoordinatorMock.swift
│ │ ├── JotConflictRepositoryMock.swift
│ │ ├── JotConflictViewControllerFactoryMock.swift
│ │ ├── JotFileConflictServiceMock.swift
│ │ ├── JotFilePreviewImageServiceMock.swift
│ │ ├── JotFileServiceMock.swift
│ │ ├── JotsCoordinatorMock.swift
│ │ ├── JotsRepositoryMock.swift
│ │ ├── JotsViewControllerFactoryMock.swift
│ │ ├── LoggerMock.swift
│ │ ├── PageCoordinatorFactoryMocks.swift
│ │ ├── RenameJotRepositoryMock.swift
│ │ ├── SettingsCoordinatorMock.swift
│ │ ├── SettingsRepositoryMock.swift
│ │ ├── SettingsViewControllerFactoryMock.swift
│ │ └── ShareJotRepositoryMock.swift
│ ├── Navigation/
│ │ ├── EditJotURLTests.swift
│ │ ├── EnableICloudSupportURLTests.swift
│ │ ├── JotsPageURLTests.swift
│ │ ├── JottreGithubURLTests.swift
│ │ └── RevealFileURLTests.swift
│ ├── PageViewController/
│ │ ├── IOS18SymbolBarButtonItemFactoryTests.swift
│ │ ├── IOS18TextBarButtonItemFactoryTests.swift
│ │ ├── PageCellSizingStrategyTests.swift
│ │ └── PageHeaderCellViewModelTests.swift
│ ├── Resources/
│ │ └── Calculator Pro.jot
│ ├── RevealFile/
│ │ └── RevealFileCoordinatorTests.swift
│ ├── SettingsPage/
│ │ ├── SettingsCoordinatorTests.swift
│ │ ├── SettingsDropdownCellViewModelTests.swift
│ │ ├── SettingsExternalLinkCellViewModelTests.swift
│ │ ├── SettingsInfoCellViewModelTests.swift
│ │ ├── SettingsRepositoryTests.swift
│ │ ├── SettingsToggleCellViewModelTests.swift
│ │ └── SettingsViewModelTests.swift
│ └── Utilities/
│ ├── Array+safeIndexTests.swift
│ ├── AsyncSequenceDebounceTests.swift
│ ├── AsyncSequenceToAsyncThrowingStreamTests.swift
│ ├── NSLayoutConstraintWithPriorityTests.swift
│ ├── UIColorAdaptiveBlackWhiteTests.swift
│ ├── UIFontPreferredFontTests.swift
│ └── UITraitCollectionHasRenderingChangeTests.swift
├── fastlane/
│ ├── .gitignore
│ ├── Appfile
│ ├── Fastfile
│ ├── Matchfile
│ ├── README.md
│ ├── appstore_metadata.rb
│ ├── appstoreconnect/
│ │ ├── metadata.json
│ │ └── screenshots/
│ │ └── .gitignore
│ ├── export_screenshots.rb
│ └── versioning.rb
├── hooks/
│ ├── install_hooks.sh
│ └── pre-commit
└── project.yml
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.yml
================================================
name: Bug Report
description: Report a reproducible bug in Jottre.
labels:
- bug
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to file a bug report! Please fill out the sections below so we can reproduce and address the issue quickly.
- type: input
id: app_version
attributes:
label: App version
description: The version of Jottre where you observed the bug.
placeholder: e.g. 2.6.8
validations:
required: true
- type: dropdown
id: platform
attributes:
label: Platform
description: The platform where the bug occurred.
options:
- iOS
- iPadOS
- macOS
validations:
required: true
- type: input
id: platform_version
attributes:
label: Platform version
description: The version of the platform where the bug occurred.
placeholder: e.g. 17.4
validations:
required: true
- type: textarea
id: given
attributes:
label: Given
description: What is the precondition for this bug to occur? Include any additional context not covered by the fields above.
placeholder: Describe the state of the app and any relevant setup before the bug occurs.
validations:
required: true
- type: textarea
id: when
attributes:
label: When
description: What interactions take place for this bug to occur? List the steps as precisely as possible.
placeholder: |
1. Open ...
2. Tap ...
3. ...
validations:
required: true
- type: textarea
id: then
attributes:
label: Then
description: What is the outcome of the described precondition and interaction?
placeholder: Describe the actual behaviour, including any error messages, crashes, or visual glitches.
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected
description: What is the wanted behaviour of the precondition and interaction?
placeholder: Describe what you expected to happen instead.
validations:
required: true
- type: textarea
id: impact
attributes:
label: Impact
description: How does this negatively impact your work with Jottre?
placeholder: e.g. blocks note-taking entirely, causes data loss, minor inconvenience, ...
validations:
required: true
- type: textarea
id: media
attributes:
label: Logs, screenshots, or video
description: Attach any logs, screenshots, or screen recordings that help illustrate the bug.
placeholder: Drag and drop files here, or paste logs as text.
validations:
required: false
- type: checkboxes
id: acknowledgements
attributes:
label: Acknowledgements
options:
- label: I have read and accept the [code of conduct](../../CODE_OF_CONDUCT.md)
required: true
- label: I have read and accept the [contribution guidelines](../../CONTRIBUTING.md)
required: true
- label: I have already looked at existing issues related to this bug
required: true
================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.yml
================================================
name: Feature Request
description: Suggest a new feature or improvement for Jottre.
labels:
- feature
body:
- type: markdown
attributes:
value: |
Thanks for suggesting a new feature! Please describe the problem it solves, your proposed solution, and the value it brings to users.
- type: textarea
id: problem
attributes:
label: Problem
description: What is missing in the current app/project creating a problem for the user?
placeholder: Describe the gap or pain point you are experiencing today.
validations:
required: true
- type: textarea
id: solution
attributes:
label: Solution
description: What is the proposed change to solve the described problem?
placeholder: Describe the feature, behaviour, or change you would like to see.
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Alternatives considered
description: What other approaches did you consider, and why is the proposed solution preferred?
placeholder: Describe any workarounds or alternative designs you have thought about.
validations:
required: false
- type: textarea
id: value
attributes:
label: Value
description: What value does this bring to the user?
placeholder: Describe how users will benefit from this change.
validations:
required: true
- type: checkboxes
id: platforms
attributes:
label: Platforms
description: Which platforms should this feature target?
options:
- label: iOS
- label: iPadOS
- label: macOS
validations:
required: true
- type: checkboxes
id: acknowledgements
attributes:
label: Acknowledgements
options:
- label: I have read and accept the [code of conduct](../../CODE_OF_CONDUCT.md)
required: true
- label: I have read and accept the [contribution guidelines](../../CONTRIBUTING.md)
required: true
- label: I have already looked at existing issues related to this feature
required: true
================================================
FILE: .github/workflows/pull_request.yml
================================================
name: Pull Request
on:
pull_request:
branches:
- master
types: [opened, reopened, synchronize, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
soundness:
name: Soundness
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
with:
api_breakage_check_enabled: false
broken_symlink_check_enabled: false
docs_check_enabled: false
python_lint_check_enabled: false
shell_check_enabled: false
unacceptable_language_check_enabled: false
yamllint_check_enabled: false
lint-ruby:
name: Lint Ruby
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec rubocop
test:
name: Test
runs-on: macos-26
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install XcodeGen
run: brew install xcodegen
- run: bundle exec fastlane ios test
build-ios-debug:
name: Build iOS/iPadOS Debug
runs-on: macos-26
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install XcodeGen
run: brew install xcodegen
- run: bundle exec fastlane ios build_debug
build-ios-release:
name: Build iOS/iPadOS Release
runs-on: macos-26
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install XcodeGen
run: brew install xcodegen
- run: bundle exec fastlane ios build_release
build-macos-debug:
name: Build macOS Debug
runs-on: macos-26
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install XcodeGen
run: brew install xcodegen
- run: bundle exec fastlane mac build_debug
build-macos-release:
name: Build macOS Release
runs-on: macos-26
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install XcodeGen
run: brew install xcodegen
- run: bundle exec fastlane mac build_release
================================================
FILE: .github/workflows/push_on_master.yml
================================================
name: Push on master
on:
push:
branches:
- master
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
bump-version:
name: Bump version
runs-on: macos-26
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec fastlane bump_version
distribute-ios:
name: Distribute iOS/iPadOS
environment: release
needs: bump-version
runs-on: macos-26
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install XcodeGen
run: brew install xcodegen
- env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ID }}
APP_STORE_CONNECT_API_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_ISSUER_ID }}
APP_STORE_CONNECT_API_KEY_CONTENT: ${{ secrets.APP_STORE_CONNECT_API_KEY_CONTENT }}
run: bundle exec fastlane ios distribute
distribute-macos:
name: Distribute macOS
environment: release
needs: bump-version
runs-on: macos-26
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install XcodeGen
run: brew install xcodegen
- env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ID }}
APP_STORE_CONNECT_API_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_ISSUER_ID }}
APP_STORE_CONNECT_API_KEY_CONTENT: ${{ secrets.APP_STORE_CONNECT_API_KEY_CONTENT }}
run: bundle exec fastlane mac distribute
================================================
FILE: .gitignore
================================================
Jottre.xcodeproj
Jottre.entitlements
Resources/Info.plist
**/.DS_Store
================================================
FILE: .license_header_template
================================================
/*
Jottre: Minimalistic jotting for iPhone, iPad and Mac.
Copyright (C) YEARS Anton Lorani
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
================================================
FILE: .licenseignore
================================================
.github
README.md
.gitignore
*.md
*.json
*.yml
*.yaml
*.rb
*.jpg
Jottre.xcodeproj
Resources
Tests/Resources
hooks
fastlane
Gemfile
Gemfile.lock
Brewfile
LICENSE
.ruby-version
.xcode-version
================================================
FILE: .rubocop.yml
================================================
Layout/IndentationWidth:
Width: 4
plugins:
- rubocop-performance
AllCops:
NewCops: enable
TargetRubyVersion: 3.0
Exclude:
- 'vendor/**/*'
Metrics:
Enabled: false
Naming:
Enabled: false
Style:
Enabled: false
Lint:
Enabled: false
Security:
Enabled: true
Security/Open:
Enabled: false
Performance:
Enabled: false
================================================
FILE: .ruby-version
================================================
4.0.1
================================================
FILE: .swift-format
================================================
{
"version": 1,
"indentation": {
"spaces": 4
},
"tabWidth": 4,
"fileScopedDeclarationPrivacy": {
"accessLevel": "private"
},
"spacesAroundRangeFormationOperators": false,
"indentConditionalCompilationBlocks": false,
"indentSwitchCaseLabels": false,
"lineBreakAroundMultilineExpressionChainComponents": false,
"lineBreakBeforeControlFlowKeywords": false,
"lineBreakBeforeEachArgument": true,
"lineBreakBeforeEachGenericRequirement": true,
"lineLength": 120,
"maximumBlankLines": 1,
"respectsExistingLineBreaks": true,
"prioritizeKeepingFunctionOutputTogether": true,
"rules": {
"AllPublicDeclarationsHaveDocumentation": false,
"AlwaysUseLiteralForEmptyCollectionInit": false,
"AlwaysUseLowerCamelCase": false,
"AmbiguousTrailingClosureOverload": false,
"BeginDocumentationCommentWithOneLineSummary": false,
"DoNotUseSemicolons": true,
"DontRepeatTypeInStaticProperties": true,
"FileScopedDeclarationPrivacy": true,
"FullyIndirectEnum": true,
"GroupNumericLiterals": true,
"IdentifiersMustBeASCII": true,
"NeverForceUnwrap": true,
"NeverUseForceTry": true,
"NeverUseImplicitlyUnwrappedOptionals": false,
"NoAccessLevelOnExtensionDeclaration": true,
"NoAssignmentInExpressions": true,
"NoBlockComments": false,
"NoCasesWithOnlyFallthrough": true,
"NoEmptyTrailingClosureParentheses": true,
"NoLabelsInCasePatterns": true,
"NoLeadingUnderscores": false,
"NoParensAroundConditions": true,
"NoVoidReturnOnFunctionSignature": true,
"OmitExplicitReturns": true,
"OneCasePerLine": true,
"OneVariableDeclarationPerLine": true,
"OnlyOneTrailingClosureArgument": true,
"OrderedImports": true,
"ReplaceForEachWithForLoop": true,
"ReturnVoidInsteadOfEmptyTuple": true,
"UseEarlyExits": true,
"UseExplicitNilCheckInConditions": true,
"UseLetInEveryBoundCaseVariable": false,
"UseShorthandTypeNames": true,
"UseSingleLinePropertyGetter": true,
"UseSynthesizedInitializer": false,
"UseTripleSlashForDocumentationComments": true,
"UseWhereClausesInForLoops": true,
"ValidateDocumentationComments": false
}
}
================================================
FILE: .xcode-version
================================================
26.4.1
================================================
FILE: AppKitPlugin/AppKitPlugin.swift
================================================
/*
Jottre: Minimalistic jotting for iPhone, iPad and Mac.
Copyright (C) 2021-2026 Anton Lorani
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import AppKit
@objc(AppKitPlugin)
public final class AppKitPlugin: NSObject {
@MainActor
@objc
public static func terminate() {
NSApplication.shared.terminate(nil)
}
}
================================================
FILE: AppKitPlugin/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>AppKitPlugin</string>
<key>CFBundleIdentifier</key>
<string>com.antonlorani.jottre.AppKitPlugin</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>AppKitPlugin</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<real>1</real>
<key>CFBundleVersion</key>
<integer>1</integer>
</dict>
</plist>
================================================
FILE: Brewfile
================================================
# frozen_string_literal: true
brew 'rbenv'
brew 'xcodegen'
================================================
FILE: CODE_OF_CONDUCT.md
================================================
# Code of Conduct
## Pledge
Participation in this project should be welcoming, respectful, and harassment-free for everyone, regardless of age, body size, disability, ethnicity, gender identity, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
## Expected Behavior
Examples of behavior that contributes to a positive environment include:
- Being respectful and inclusive
- Accepting constructive feedback gracefully
- Showing empathy toward other community members
- Focusing on collaboration and learning
- Using welcoming and professional language
## Unacceptable Behavior
Examples of unacceptable behavior include:
- Harassment, discrimination, or hateful conduct
- Trolling, insulting, or derogatory comments
- Personal or political attacks
- Publishing private information without permission
- Any conduct that could reasonably be considered inappropriate in a professional setting
## Enforcement Responsibilities
Project maintainers are responsible for clarifying and enforcing standards of acceptable behavior. Maintainers may remove, edit, or reject comments, commits, issues, and other contributions that violate this Code of Conduct.
## Scope
This Code of Conduct applies within all project spaces, including:
- GitHub issues and pull requests
- Discussions and community forums
- Chat platforms and social media related to the project
- Public or private interactions representing the project
## Reporting
If unacceptable behavior is experienced or witnessed, report it to the project maintainers through the repository’s contact channels.
All reports will be reviewed and investigated promptly and fairly.
## Enforcement
Project maintainers may take any action deemed appropriate, including:
- Warning the offender
- Temporary suspension
- Permanent ban from the community
## Attribution
Inspired by the Contributor Covenant, version 2.1.
================================================
FILE: CONTRIBUTING.md
================================================
# Contributing Guidelines
Pull requests, bug reports, and all other forms of contributions to make Jottre even better are welcomed and highly encouraged!
## Installation
Contributions occur on the premise that getting the project working with little effort. Initially there are a few tools to install that make recurring contributions much simpler.
See [README.md](README.md#installation) for installation details.
## Creating an issue
Take a look at the [existing issues](https://github.com/antonlorani/jottre/issues), maybe your concern is already addressed. If not, use the provided issue templates for [feature requests](https://github.com/antonlorani/jottre/issues/new?template=feature_request.yml) or [bug reports](https://github.com/antonlorani/jottre/issues/new?template=bug_report.yml).
> [!IMPORTANT]
> For security related issues, see [Security Policy](SECURITY_POLICY.md) first!
## Working on an issue
Any form of active contribution requires an associated Github issue. See [Creating an issue](#creating-an-issue).
Issues that are in the *todo* status and have no assignee yet can be freely taken. If no contribution occurs for the issue, the issue assignee MAY be reset.
Do ONLY work on things that are part of the issue's scope.
Create your working branch by branching from `master`, ensure that the working branch is prefixed with the issue-key.
```
42-zoom-state-not-restored
```
Commit messages SHOULD be suffixed the issue keys as well.
```
Adds zoom scale to scene restoration (#42)
```
Other than making sure that the commit messages communicates the intent clearly, no specific guidelines exist onto how to write a commit message.
Before raising a pull request, run the [test verification](README.md#validation):
```
bundle exec fastlane test
```
## Finalizing your contribution
### Certificate of origin
BY OPENING A PULL REQUEST, YOU CERTIFY THAT:
1. THE CONTRIBUTION WAS WRITTEN IN WHOLE OR IN PART BY YOU, AND YOU HAVE THE RIGHT TO SUBMIT IT UNDER THE [PROJECT'S LICENSE](LICENSE).
2. THE CONTRIBUTION IS BASED ON PREVIOUS WORK THAT, TO THE BEST OF YOUR KNOWLEDGE, IS COVERED UNDER AN APPROPRIATE OPEN SOURCE LICENSE - AND YOU HAVE THE RIGHT TO SUBMIT IT WITH MODIFICATIONS UNDER THE SAME LICENSE.
3. THE CONTRIBUTION WAS PROVIDED DIRECTLY TO YOU BY SOME OTHER PERSON WHO CERTIFIED (1) OR (2), AND YOU HAVE NOT MODIFIED IT.
### Raise a pull request
Once your work is ready, raise a pull request. Every pull request undergoes a formal code review. Code reviews fall under the [Code of Conduct](CODE_OF_CONDUCT.md).
Once your pull request is approved, the owner of this project takes care of merging your contribution into upstream `master` and schedule the changes into the next app store release.
## Policy on coding agents
Contributions via coding agents are accepted and expected. Your coding agent SHOULD adopt the projects conventions and retain the projects code quality. It's the operators responsibility to align their coding agent with those.
================================================
FILE: Gemfile
================================================
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'fastlane'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
================================================
FILE: PRIVACY_POLICY.md
================================================
# Privacy Policy
_Last updated: 2026-05-01_
Jottre ("the app") is designed to keep your notes private. This policy explains what data the app handles and how.
## Data the app collects
**None.** Jottre does not collect, transmit, or share any personal data with the developer or any third party. There are no analytics, no tracking, no advertising SDKs, and no developer-operated servers.
## Data stored on your device
Jottre stores the notes and sketches you create as files on your device. These files never leave your device except through the mechanisms you choose (see below).
## iCloud sync
If you enable iCloud sync, your notes are stored in your personal iCloud account and synchronized across your Apple devices by Apple. The developer has no access to this data. iCloud's handling of your data is governed by [Apple's Privacy Policy](https://www.apple.com/legal/privacy/).
## Sharing and export
When you export a note as PDF, JPG, or PNG, or share it through the iOS share sheet, the resulting file is handled by the app or service you choose. Jottre itself does not transmit the file anywhere.
## Permissions
Jottre may request access to:
- **Files and folders** you select, so it can open and save notes.
- **iCloud Drive**, if you choose to sync notes across devices.
No other permissions are requested.
## Changes to this policy
If this policy changes, the updated version will be published in this repository with a new "Last updated" date.
## Contact
Questions or concerns: [open an issue](https://github.com/antonlorani/jottre/issues).
================================================
FILE: README.md
================================================
<p style="text-align: center; max-width: 500px; height: auto;">
<p align="center" >
<img src="Resources/Assets.xcassets/AppIcon.appiconset/icon_1024x1024.png" style="border-radius: 50px; overflow: hidden;" width=300 height=auto>
</p>
# Jottre
Simple and minimalistic handwriting app across Apple platforms.
**Available on the [App Store](https://apps.apple.com/us/app/jottre/id1550272319)**

## Contributing
Contributions are welcome. Before opening an issue or pull request, please review the following documents:
- [Contributing guidelines](CONTRIBUTING.md)
- [Code of conduct](CODE_OF_CONDUCT.md)
- [Security policy](SECURITY_POLICY.md)
## Development
### Installation
Configure the Ruby toolchain with [rbenv](https://github.com/rbenv/rbenv):
```sh
curl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash
rbenv install $(cat .ruby-version)
rbenv local $(cat .ruby-version)
```
Install Bundler and the project's Ruby dependencies:
```sh
gem install bundler
bundle install
```
Install Xcode at the pinned version using [xcodes](https://github.com/XcodesOrg/xcodes):
```sh
brew install xcodesorg/made/xcodes
brew install aria2
xcodes install $(cat .xcode-version) --experimental-unxip
xcodes select $(cat .xcode-version)
```
Generate the Xcode project:
```sh
bundle exec fastlane generate_project
```
### Validation
Verify the setup by running the test suite:
```sh
bundle exec fastlane test
```
## License
Copyright (C) 2021-2026 Anton Lorani
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
================================================
FILE: Resources/Assets.xcassets/AppIcon.appiconset/Contents.json
================================================
{
"images" : [
{
"filename" : "icon_20x20@2x.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "20x20"
},
{
"filename" : "icon_20x20@3x.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "20x20"
},
{
"filename" : "icon_29x29@2x.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "29x29"
},
{
"filename" : "icon_29x29@3x.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "29x29"
},
{
"filename" : "icon_40x40@2x.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "40x40"
},
{
"filename" : "icon_40x40@3x.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "40x40"
},
{
"filename" : "icon_60x60@2x.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "60x60"
},
{
"filename" : "icon_60x60@3x.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "60x60"
},
{
"filename" : "icon_20x20.png",
"idiom" : "ipad",
"scale" : "1x",
"size" : "20x20"
},
{
"filename" : "icon_20x20@2x-1.png",
"idiom" : "ipad",
"scale" : "2x",
"size" : "20x20"
},
{
"filename" : "icon_29x29.png",
"idiom" : "ipad",
"scale" : "1x",
"size" : "29x29"
},
{
"filename" : "icon_29x29@2x-1.png",
"idiom" : "ipad",
"scale" : "2x",
"size" : "29x29"
},
{
"filename" : "icon_40x40.png",
"idiom" : "ipad",
"scale" : "1x",
"size" : "40x40"
},
{
"filename" : "icon_40x40@2x-1.png",
"idiom" : "ipad",
"scale" : "2x",
"size" : "40x40"
},
{
"filename" : "icon_76x76.png",
"idiom" : "ipad",
"scale" : "1x",
"size" : "76x76"
},
{
"filename" : "icon_76x76@2x.png",
"idiom" : "ipad",
"scale" : "2x",
"size" : "76x76"
},
{
"filename" : "icon_83.5x83.5@2x.png",
"idiom" : "ipad",
"scale" : "2x",
"size" : "83.5x83.5"
},
{
"filename" : "icon_1024x1024.png",
"idiom" : "ios-marketing",
"scale" : "1x",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
================================================
FILE: Resources/Localizable.xcstrings
================================================
{
"sourceLanguage": "en",
"strings": {
"action.cancel": {
"comment": "Generic cancel action label",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Cancel" } },
"de": { "stringUnit": { "state": "translated", "value": "Abbrechen" } },
"af": { "stringUnit": { "state": "translated", "value": "Kanselleer" } },
"ar": { "stringUnit": { "state": "translated", "value": "إلغاء" } },
"es": { "stringUnit": { "state": "translated", "value": "Cancelar" } },
"fr": { "stringUnit": { "state": "translated", "value": "Annuler" } },
"hi": { "stringUnit": { "state": "translated", "value": "रद्द करें" } },
"id": { "stringUnit": { "state": "translated", "value": "Batal" } },
"it": { "stringUnit": { "state": "translated", "value": "Annulla" } },
"ja": { "stringUnit": { "state": "translated", "value": "キャンセル" } },
"ko": { "stringUnit": { "state": "translated", "value": "취소" } },
"ms": { "stringUnit": { "state": "translated", "value": "Batal" } },
"nl": { "stringUnit": { "state": "translated", "value": "Annuleren" } },
"pl": { "stringUnit": { "state": "translated", "value": "Anuluj" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Cancelar" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Cancelar" } },
"ru": { "stringUnit": { "state": "translated", "value": "Отмена" } },
"sv": { "stringUnit": { "state": "translated", "value": "Avbryt" } },
"th": { "stringUnit": { "state": "translated", "value": "ยกเลิก" } },
"tr": { "stringUnit": { "state": "translated", "value": "İptal" } },
"uk": { "stringUnit": { "state": "translated", "value": "Скасувати" } },
"vi": { "stringUnit": { "state": "translated", "value": "Hủy" } }
}
},
"action.create": {
"comment": "Generic create action label",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Create" } },
"de": { "stringUnit": { "state": "translated", "value": "Erstellen" } },
"af": { "stringUnit": { "state": "translated", "value": "Skep" } },
"ar": { "stringUnit": { "state": "translated", "value": "إنشاء" } },
"es": { "stringUnit": { "state": "translated", "value": "Crear" } },
"fr": { "stringUnit": { "state": "translated", "value": "Créer" } },
"hi": { "stringUnit": { "state": "translated", "value": "बनाएं" } },
"id": { "stringUnit": { "state": "translated", "value": "Buat" } },
"it": { "stringUnit": { "state": "translated", "value": "Crea" } },
"ja": { "stringUnit": { "state": "translated", "value": "作成" } },
"ko": { "stringUnit": { "state": "translated", "value": "만들기" } },
"ms": { "stringUnit": { "state": "translated", "value": "Cipta" } },
"nl": { "stringUnit": { "state": "translated", "value": "Aanmaken" } },
"pl": { "stringUnit": { "state": "translated", "value": "Utwórz" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Criar" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Criar" } },
"ru": { "stringUnit": { "state": "translated", "value": "Создать" } },
"sv": { "stringUnit": { "state": "translated", "value": "Skapa" } },
"th": { "stringUnit": { "state": "translated", "value": "สร้าง" } },
"tr": { "stringUnit": { "state": "translated", "value": "Oluştur" } },
"uk": { "stringUnit": { "state": "translated", "value": "Створити" } },
"vi": { "stringUnit": { "state": "translated", "value": "Tạo" } }
}
},
"action.delete": {
"comment": "Generic delete action label",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Delete" } },
"de": { "stringUnit": { "state": "translated", "value": "Löschen" } },
"af": { "stringUnit": { "state": "translated", "value": "Verwyder" } },
"ar": { "stringUnit": { "state": "translated", "value": "حذف" } },
"es": { "stringUnit": { "state": "translated", "value": "Eliminar" } },
"fr": { "stringUnit": { "state": "translated", "value": "Supprimer" } },
"hi": { "stringUnit": { "state": "translated", "value": "हटाएं" } },
"id": { "stringUnit": { "state": "translated", "value": "Hapus" } },
"it": { "stringUnit": { "state": "translated", "value": "Elimina" } },
"ja": { "stringUnit": { "state": "translated", "value": "削除" } },
"ko": { "stringUnit": { "state": "translated", "value": "삭제" } },
"ms": { "stringUnit": { "state": "translated", "value": "Padam" } },
"nl": { "stringUnit": { "state": "translated", "value": "Verwijderen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Usuń" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Excluir" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Eliminar" } },
"ru": { "stringUnit": { "state": "translated", "value": "Удалить" } },
"sv": { "stringUnit": { "state": "translated", "value": "Radera" } },
"th": { "stringUnit": { "state": "translated", "value": "ลบ" } },
"tr": { "stringUnit": { "state": "translated", "value": "Sil" } },
"uk": { "stringUnit": { "state": "translated", "value": "Видалити" } },
"vi": { "stringUnit": { "state": "translated", "value": "Xóa" } }
}
},
"action.done": {
"comment": "Generic done/confirm action label",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Done" } },
"de": { "stringUnit": { "state": "translated", "value": "Fertig" } },
"af": { "stringUnit": { "state": "translated", "value": "Klaar" } },
"ar": { "stringUnit": { "state": "translated", "value": "تم" } },
"es": { "stringUnit": { "state": "translated", "value": "Listo" } },
"fr": { "stringUnit": { "state": "translated", "value": "Terminé" } },
"hi": { "stringUnit": { "state": "translated", "value": "हो गया" } },
"id": { "stringUnit": { "state": "translated", "value": "Selesai" } },
"it": { "stringUnit": { "state": "translated", "value": "Fine" } },
"ja": { "stringUnit": { "state": "translated", "value": "完了" } },
"ko": { "stringUnit": { "state": "translated", "value": "완료" } },
"ms": { "stringUnit": { "state": "translated", "value": "Selesai" } },
"nl": { "stringUnit": { "state": "translated", "value": "Gereed" } },
"pl": { "stringUnit": { "state": "translated", "value": "Gotowe" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Concluído" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Concluído" } },
"ru": { "stringUnit": { "state": "translated", "value": "Готово" } },
"sv": { "stringUnit": { "state": "translated", "value": "Klar" } },
"th": { "stringUnit": { "state": "translated", "value": "เสร็จสิ้น" } },
"tr": { "stringUnit": { "state": "translated", "value": "Bitti" } },
"uk": { "stringUnit": { "state": "translated", "value": "Готово" } },
"vi": { "stringUnit": { "state": "translated", "value": "Xong" } }
}
},
"action.duplicate": {
"comment": "Generic duplicate action label",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Duplicate" } },
"de": { "stringUnit": { "state": "translated", "value": "Duplizieren" } },
"af": { "stringUnit": { "state": "translated", "value": "Dupliseer" } },
"ar": { "stringUnit": { "state": "translated", "value": "تكرار" } },
"es": { "stringUnit": { "state": "translated", "value": "Duplicar" } },
"fr": { "stringUnit": { "state": "translated", "value": "Dupliquer" } },
"hi": { "stringUnit": { "state": "translated", "value": "डुप्लीकेट करें" } },
"id": { "stringUnit": { "state": "translated", "value": "Duplikat" } },
"it": { "stringUnit": { "state": "translated", "value": "Duplica" } },
"ja": { "stringUnit": { "state": "translated", "value": "複製" } },
"ko": { "stringUnit": { "state": "translated", "value": "복제" } },
"ms": { "stringUnit": { "state": "translated", "value": "Duplikasi" } },
"nl": { "stringUnit": { "state": "translated", "value": "Dupliceren" } },
"pl": { "stringUnit": { "state": "translated", "value": "Duplikuj" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Duplicar" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Duplicar" } },
"ru": { "stringUnit": { "state": "translated", "value": "Дублировать" } },
"sv": { "stringUnit": { "state": "translated", "value": "Duplicera" } },
"th": { "stringUnit": { "state": "translated", "value": "ทำซ้ำ" } },
"tr": { "stringUnit": { "state": "translated", "value": "Çoğalt" } },
"uk": { "stringUnit": { "state": "translated", "value": "Дублювати" } },
"vi": { "stringUnit": { "state": "translated", "value": "Nhân đôi" } }
}
},
"action.ok": {
"comment": "Generic ok/acknowledge action label",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "OK" } },
"de": { "stringUnit": { "state": "translated", "value": "OK" } },
"af": { "stringUnit": { "state": "translated", "value": "OK" } },
"ar": { "stringUnit": { "state": "translated", "value": "حسنًا" } },
"es": { "stringUnit": { "state": "translated", "value": "OK" } },
"fr": { "stringUnit": { "state": "translated", "value": "OK" } },
"hi": { "stringUnit": { "state": "translated", "value": "ठीक है" } },
"id": { "stringUnit": { "state": "translated", "value": "OK" } },
"it": { "stringUnit": { "state": "translated", "value": "OK" } },
"ja": { "stringUnit": { "state": "translated", "value": "OK" } },
"ko": { "stringUnit": { "state": "translated", "value": "확인" } },
"ms": { "stringUnit": { "state": "translated", "value": "OK" } },
"nl": { "stringUnit": { "state": "translated", "value": "OK" } },
"pl": { "stringUnit": { "state": "translated", "value": "OK" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "OK" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "OK" } },
"ru": { "stringUnit": { "state": "translated", "value": "ОК" } },
"sv": { "stringUnit": { "state": "translated", "value": "OK" } },
"th": { "stringUnit": { "state": "translated", "value": "ตกลง" } },
"tr": { "stringUnit": { "state": "translated", "value": "Tamam" } },
"uk": { "stringUnit": { "state": "translated", "value": "OK" } },
"vi": { "stringUnit": { "state": "translated", "value": "OK" } }
}
},
"action.rename": {
"comment": "Generic rename action label",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Rename" } },
"de": { "stringUnit": { "state": "translated", "value": "Umbenennen" } },
"af": { "stringUnit": { "state": "translated", "value": "Hernoem" } },
"ar": { "stringUnit": { "state": "translated", "value": "إعادة تسمية" } },
"es": { "stringUnit": { "state": "translated", "value": "Renombrar" } },
"fr": { "stringUnit": { "state": "translated", "value": "Renommer" } },
"hi": { "stringUnit": { "state": "translated", "value": "नाम बदलें" } },
"id": { "stringUnit": { "state": "translated", "value": "Ganti Nama" } },
"it": { "stringUnit": { "state": "translated", "value": "Rinomina" } },
"ja": { "stringUnit": { "state": "translated", "value": "名前を変更" } },
"ko": { "stringUnit": { "state": "translated", "value": "이름 변경" } },
"ms": { "stringUnit": { "state": "translated", "value": "Namakan Semula" } },
"nl": { "stringUnit": { "state": "translated", "value": "Hernoemen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Zmień nazwę" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Renomear" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Renomear" } },
"ru": { "stringUnit": { "state": "translated", "value": "Переименовать" } },
"sv": { "stringUnit": { "state": "translated", "value": "Byt namn" } },
"th": { "stringUnit": { "state": "translated", "value": "เปลี่ยนชื่อ" } },
"tr": { "stringUnit": { "state": "translated", "value": "Yeniden Adlandır" } },
"uk": { "stringUnit": { "state": "translated", "value": "Перейменувати" } },
"vi": { "stringUnit": { "state": "translated", "value": "Đổi tên" } }
}
},
"action.share": {
"comment": "Generic share action label",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Share" } },
"de": { "stringUnit": { "state": "translated", "value": "Teilen" } },
"af": { "stringUnit": { "state": "translated", "value": "Deel" } },
"ar": { "stringUnit": { "state": "translated", "value": "مشاركة" } },
"es": { "stringUnit": { "state": "translated", "value": "Compartir" } },
"fr": { "stringUnit": { "state": "translated", "value": "Partager" } },
"hi": { "stringUnit": { "state": "translated", "value": "साझा करें" } },
"id": { "stringUnit": { "state": "translated", "value": "Bagikan" } },
"it": { "stringUnit": { "state": "translated", "value": "Condividi" } },
"ja": { "stringUnit": { "state": "translated", "value": "共有" } },
"ko": { "stringUnit": { "state": "translated", "value": "공유" } },
"ms": { "stringUnit": { "state": "translated", "value": "Kongsi" } },
"nl": { "stringUnit": { "state": "translated", "value": "Delen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Udostępnij" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Compartilhar" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Partilhar" } },
"ru": { "stringUnit": { "state": "translated", "value": "Поделиться" } },
"sv": { "stringUnit": { "state": "translated", "value": "Dela" } },
"th": { "stringUnit": { "state": "translated", "value": "แชร์" } },
"tr": { "stringUnit": { "state": "translated", "value": "Paylaş" } },
"uk": { "stringUnit": { "state": "translated", "value": "Поділитися" } },
"vi": { "stringUnit": { "state": "translated", "value": "Chia sẻ" } }
}
},
"app.title": {
"comment": "Application name displayed in the navigation bar on iOS",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"de": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"af": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"ar": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"es": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"fr": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"hi": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"id": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"it": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"ja": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"ko": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"ms": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"nl": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"pl": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"ru": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"sv": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"th": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"tr": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"uk": { "stringUnit": { "state": "translated", "value": "Jottre" } },
"vi": { "stringUnit": { "state": "translated", "value": "Jottre" } }
}
},
"cloudMigration.errorAlert.title": {
"comment": "The title of the error alert when migrating a Jot between the local file-system and iCloud failed.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Unable to migrate \"%@\"" } },
"de": { "stringUnit": { "state": "translated", "value": "Migration von \"%@\" nicht möglich" } },
"af": { "stringUnit": { "state": "translated", "value": "Kan \"%@\" nie migreer nie" } },
"ar": { "stringUnit": { "state": "translated", "value": "تعذّر ترحيل \"%@\"" } },
"es": { "stringUnit": { "state": "translated", "value": "No se puede migrar \"%@\"" } },
"fr": { "stringUnit": { "state": "translated", "value": "Impossible de migrer \"%@\"" } },
"hi": { "stringUnit": { "state": "translated", "value": "\"%@\" को माइग्रेट नहीं किया जा सका" } },
"id": { "stringUnit": { "state": "translated", "value": "Tidak dapat memigrasikan \"%@\"" } },
"it": { "stringUnit": { "state": "translated", "value": "Impossibile migrare \"%@\"" } },
"ja": { "stringUnit": { "state": "translated", "value": "「%@」を移行できません" } },
"ko": { "stringUnit": { "state": "translated", "value": "\"%@\"을(를) 마이그레이션할 수 없음" } },
"ms": { "stringUnit": { "state": "translated", "value": "Tidak dapat memigrasikan \"%@\"" } },
"nl": { "stringUnit": { "state": "translated", "value": "Kan \"%@\" niet migreren" } },
"pl": { "stringUnit": { "state": "translated", "value": "Nie można zmigrować \"%@\"" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Não foi possível migrar \"%@\"" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Não foi possível migrar \"%@\"" } },
"ru": { "stringUnit": { "state": "translated", "value": "Не удалось перенести «%@»" } },
"sv": { "stringUnit": { "state": "translated", "value": "Kan inte migrera \"%@\"" } },
"th": { "stringUnit": { "state": "translated", "value": "ไม่สามารถย้าย \"%@\" ได้" } },
"tr": { "stringUnit": { "state": "translated", "value": "\"%@\" taşınamıyor" } },
"uk": { "stringUnit": { "state": "translated", "value": "Не вдалося перенести «%@»" } },
"vi": { "stringUnit": { "state": "translated", "value": "Không thể di chuyển \"%@\"" } }
}
},
"cloudMigration.nothingToMigrate.subtitle": {
"comment": "Subtitle on the iCloud migration screen when there are no Jots to migrate",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Newly created Jots are now automatically synchronized with iCloud and accessible across all your iCloud-compatible devices." } },
"de": { "stringUnit": { "state": "translated", "value": "Neu erstellte Jots werden jetzt automatisch mit iCloud synchronisiert und sind auf all deinen iCloud-kompatiblen Geräten verfügbar." } },
"af": { "stringUnit": { "state": "translated", "value": "Nuutgeskepte Jots word nou outomaties met iCloud gesinkroniseer en is op al jou iCloud-versoenbare toestelle beskikbaar." } },
"ar": { "stringUnit": { "state": "translated", "value": "يتم الآن مزامنة Jots المنشأة حديثًا تلقائيًا مع iCloud ويمكن الوصول إليها عبر جميع أجهزتك المتوافقة مع iCloud." } },
"es": { "stringUnit": { "state": "translated", "value": "Los Jots recién creados ahora se sincronizan automáticamente con iCloud y son accesibles en todos tus dispositivos compatibles con iCloud." } },
"fr": { "stringUnit": { "state": "translated", "value": "Les Jots nouvellement créés sont désormais automatiquement synchronisés avec iCloud et accessibles sur tous vos appareils compatibles iCloud." } },
"hi": { "stringUnit": { "state": "translated", "value": "नए बनाए गए Jots अब स्वचालित रूप से iCloud के साथ सिंक्रनाइज़ होते हैं और आपके सभी iCloud-संगत डिवाइसों पर उपलब्ध हैं।" } },
"id": { "stringUnit": { "state": "translated", "value": "Jots yang baru dibuat kini disinkronkan secara otomatis dengan iCloud dan dapat diakses di semua perangkat yang kompatibel dengan iCloud." } },
"it": { "stringUnit": { "state": "translated", "value": "I Jots appena creati vengono ora sincronizzati automaticamente con iCloud e sono accessibili su tutti i tuoi dispositivi compatibili con iCloud." } },
"ja": { "stringUnit": { "state": "translated", "value": "新しく作成されたJotは自動的にiCloudと同期され、すべてのiCloud対応デバイスからアクセスできます。" } },
"ko": { "stringUnit": { "state": "translated", "value": "새로 만든 Jot은 이제 iCloud와 자동으로 동기화되며 모든 iCloud 호환 기기에서 접근할 수 있습니다." } },
"ms": { "stringUnit": { "state": "translated", "value": "Jots yang baru dibuat kini disegerakkan secara automatik dengan iCloud dan boleh diakses pada semua peranti serasi iCloud anda." } },
"nl": { "stringUnit": { "state": "translated", "value": "Nieuw aangemaakte Jots worden nu automatisch gesynchroniseerd met iCloud en zijn toegankelijk op al je iCloud-compatibele apparaten." } },
"pl": { "stringUnit": { "state": "translated", "value": "Nowo utworzone Jots są teraz automatycznie synchronizowane z iCloud i dostępne na wszystkich urządzeniach kompatybilnych z iCloud." } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Os Jots recém-criados agora são sincronizados automaticamente com o iCloud e acessíveis em todos os seus dispositivos compatíveis com o iCloud." } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Os Jots recém-criados são agora automaticamente sincronizados com o iCloud e acessíveis em todos os seus dispositivos compatíveis com o iCloud." } },
"ru": { "stringUnit": { "state": "translated", "value": "Новые Jots теперь автоматически синхронизируются с iCloud и доступны на всех ваших устройствах, совместимых с iCloud." } },
"sv": { "stringUnit": { "state": "translated", "value": "Nyskapade Jots synkroniseras nu automatiskt med iCloud och är tillgängliga på alla dina iCloud-kompatibla enheter." } },
"th": { "stringUnit": { "state": "translated", "value": "Jots ที่สร้างใหม่จะซิงค์กับ iCloud โดยอัตโนมัติและเข้าถึงได้จากอุปกรณ์ที่รองรับ iCloud ทั้งหมดของคุณ" } },
"tr": { "stringUnit": { "state": "translated", "value": "Yeni oluşturulan Jots artık iCloud ile otomatik olarak senkronize ediliyor ve tüm iCloud uyumlu cihazlarınızdan erişilebilir." } },
"uk": { "stringUnit": { "state": "translated", "value": "Щойно створені Jots тепер автоматично синхронізуються з iCloud і доступні на всіх ваших пристроях, сумісних з iCloud." } },
"vi": { "stringUnit": { "state": "translated", "value": "Các Jots mới tạo giờ đây được tự động đồng bộ với iCloud và có thể truy cập trên tất cả các thiết bị tương thích iCloud của bạn." } }
}
},
"cloudMigration.subtitle": {
"comment": "Subtitle on the iCloud migration screen",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Your Jots can now sync across all your devices. Choose which ones to bring along." } },
"de": { "stringUnit": { "state": "translated", "value": "Deine Jots können jetzt auf all deinen Geräten synchronisiert werden. Wähle aus, welche du mitnehmen möchtest." } },
"af": { "stringUnit": { "state": "translated", "value": "Jou Jots kan nou oor al jou toestelle sinkroniseer. Kies watter jy wil saamneem." } },
"ar": { "stringUnit": { "state": "translated", "value": "يمكن الآن مزامنة Jots عبر جميع أجهزتك. اختر أيّها تريد نقله." } },
"es": { "stringUnit": { "state": "translated", "value": "Tus Jots ya pueden sincronizarse en todos tus dispositivos. Elige cuáles quieres llevar contigo." } },
"fr": { "stringUnit": { "state": "translated", "value": "Vos Jots peuvent désormais se synchroniser sur tous vos appareils. Choisissez lesquels emporter." } },
"hi": { "stringUnit": { "state": "translated", "value": "आपके Jots अब आपके सभी डिवाइस पर सिंक हो सकते हैं। चुनें कि कौन से लाने हैं।" } },
"id": { "stringUnit": { "state": "translated", "value": "Jots Anda kini dapat disinkronkan di semua perangkat. Pilih mana yang ingin dibawa." } },
"it": { "stringUnit": { "state": "translated", "value": "I tuoi Jots ora si sincronizzano su tutti i tuoi dispositivi. Scegli quali portare con te." } },
"ja": { "stringUnit": { "state": "translated", "value": "Jotがすべてのデバイスで同期できるようになりました。持ち込むものを選んでください。" } },
"ko": { "stringUnit": { "state": "translated", "value": "이제 모든 기기에서 Jot을 동기화할 수 있습니다. 가져올 항목을 선택하세요." } },
"ms": { "stringUnit": { "state": "translated", "value": "Jots anda kini boleh disegerakkan di semua peranti. Pilih yang mana hendak dibawa." } },
"nl": { "stringUnit": { "state": "translated", "value": "Je Jots kunnen nu synchroniseren op al je apparaten. Kies welke je wilt meenemen." } },
"pl": { "stringUnit": { "state": "translated", "value": "Twoje Jots mogą teraz synchronizować się na wszystkich urządzeniach. Wybierz, które chcesz przenieść." } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Seus Jots agora podem sincronizar em todos os seus dispositivos. Escolha quais deseja trazer." } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Os seus Jots podem agora sincronizar em todos os seus dispositivos. Escolha quais pretende trazer." } },
"ru": { "stringUnit": { "state": "translated", "value": "Теперь ваши Jots можно синхронизировать на всех устройствах. Выберите, какие перенести." } },
"sv": { "stringUnit": { "state": "translated", "value": "Dina Jots kan nu synkroniseras på alla dina enheter. Välj vilka du vill ta med." } },
"th": { "stringUnit": { "state": "translated", "value": "Jots ของคุณสามารถซิงค์ข้ามอุปกรณ์ทั้งหมดได้แล้ว เลือกรายการที่ต้องการนำมาด้วย" } },
"tr": { "stringUnit": { "state": "translated", "value": "Jots'larınız artık tüm cihazlarınızda eşitlenebilir. Hangilerini getireceğinizi seçin." } },
"uk": { "stringUnit": { "state": "translated", "value": "Тепер ваші Jots можна синхронізувати на всіх пристроях. Виберіть, які перенести." } },
"vi": { "stringUnit": { "state": "translated", "value": "Jots của bạn giờ có thể đồng bộ trên tất cả thiết bị. Hãy chọn những mục muốn mang theo." } }
}
},
"cloudMigration.title": {
"comment": "Headline on the iCloud migration screen",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "iCloud is ready" } },
"de": { "stringUnit": { "state": "translated", "value": "iCloud ist bereit" } },
"af": { "stringUnit": { "state": "translated", "value": "iCloud is gereed" } },
"ar": { "stringUnit": { "state": "translated", "value": "iCloud جاهز" } },
"es": { "stringUnit": { "state": "translated", "value": "iCloud está listo" } },
"fr": { "stringUnit": { "state": "translated", "value": "iCloud est prêt" } },
"hi": { "stringUnit": { "state": "translated", "value": "iCloud तैयार है" } },
"id": { "stringUnit": { "state": "translated", "value": "iCloud siap" } },
"it": { "stringUnit": { "state": "translated", "value": "iCloud è pronto" } },
"ja": { "stringUnit": { "state": "translated", "value": "iCloudの準備ができました" } },
"ko": { "stringUnit": { "state": "translated", "value": "iCloud 준비 완료" } },
"ms": { "stringUnit": { "state": "translated", "value": "iCloud sedia" } },
"nl": { "stringUnit": { "state": "translated", "value": "iCloud is klaar" } },
"pl": { "stringUnit": { "state": "translated", "value": "iCloud jest gotowy" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "iCloud está pronto" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "iCloud está pronto" } },
"ru": { "stringUnit": { "state": "translated", "value": "iCloud готов" } },
"sv": { "stringUnit": { "state": "translated", "value": "iCloud är redo" } },
"th": { "stringUnit": { "state": "translated", "value": "iCloud พร้อมแล้ว" } },
"tr": { "stringUnit": { "state": "translated", "value": "iCloud hazır" } },
"uk": { "stringUnit": { "state": "translated", "value": "iCloud готовий" } },
"vi": { "stringUnit": { "state": "translated", "value": "iCloud đã sẵn sàng" } }
}
},
"enableCloud.action.learnHowToEnable": {
"comment": "Call-to-action button on the Enable iCloud screen",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Learn How To Enable" } },
"de": { "stringUnit": { "state": "translated", "value": "So aktivierst du iCloud" } },
"af": { "stringUnit": { "state": "translated", "value": "Leer hoe om te aktiveer" } },
"ar": { "stringUnit": { "state": "translated", "value": "تعرّف على كيفية التفعيل" } },
"es": { "stringUnit": { "state": "translated", "value": "Aprende cómo activarlo" } },
"fr": { "stringUnit": { "state": "translated", "value": "Apprendre comment activer" } },
"hi": { "stringUnit": { "state": "translated", "value": "सक्षम करना सीखें" } },
"id": { "stringUnit": { "state": "translated", "value": "Pelajari Cara Mengaktifkan" } },
"it": { "stringUnit": { "state": "translated", "value": "Scopri come abilitarlo" } },
"ja": { "stringUnit": { "state": "translated", "value": "有効にする方法を見る" } },
"ko": { "stringUnit": { "state": "translated", "value": "활성화 방법 알아보기" } },
"ms": { "stringUnit": { "state": "translated", "value": "Ketahui Cara Mengaktifkan" } },
"nl": { "stringUnit": { "state": "translated", "value": "Leer hoe je het inschakelt" } },
"pl": { "stringUnit": { "state": "translated", "value": "Dowiedz się, jak włączyć" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Saiba como ativar" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Saiba como ativar" } },
"ru": { "stringUnit": { "state": "translated", "value": "Как включить" } },
"sv": { "stringUnit": { "state": "translated", "value": "Lär dig hur du aktiverar" } },
"th": { "stringUnit": { "state": "translated", "value": "เรียนรู้วิธีเปิดใช้งาน" } },
"tr": { "stringUnit": { "state": "translated", "value": "Nasıl Etkinleştirileceğini Öğren" } },
"uk": { "stringUnit": { "state": "translated", "value": "Дізнатися, як увімкнути" } },
"vi": { "stringUnit": { "state": "translated", "value": "Tìm hiểu cách bật" } }
}
},
"enableCloud.feature.share": {
"comment": "Feature row describing the sharing capability on the Enable iCloud screen",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Share Jots with others" } },
"de": { "stringUnit": { "state": "translated", "value": "Jots mit anderen teilen" } },
"af": { "stringUnit": { "state": "translated", "value": "Deel Jots met ander mense" } },
"ar": { "stringUnit": { "state": "translated", "value": "مشاركة Jots مع الآخرين" } },
"es": { "stringUnit": { "state": "translated", "value": "Comparte Jots con otros" } },
"fr": { "stringUnit": { "state": "translated", "value": "Partagez des Jots avec d'autres" } },
"hi": { "stringUnit": { "state": "translated", "value": "Jots दूसरों के साथ साझा करें" } },
"id": { "stringUnit": { "state": "translated", "value": "Bagikan Jots dengan orang lain" } },
"it": { "stringUnit": { "state": "translated", "value": "Condividi Jots con altri" } },
"ja": { "stringUnit": { "state": "translated", "value": "Jotを他の人と共有" } },
"ko": { "stringUnit": { "state": "translated", "value": "다른 사람과 Jot 공유" } },
"ms": { "stringUnit": { "state": "translated", "value": "Kongsi Jots dengan orang lain" } },
"nl": { "stringUnit": { "state": "translated", "value": "Deel Jots met anderen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Udostępniaj Jots innym" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Compartilhe Jots com outras pessoas" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Partilhe Jots com outras pessoas" } },
"ru": { "stringUnit": { "state": "translated", "value": "Делитесь Jots с другими" } },
"sv": { "stringUnit": { "state": "translated", "value": "Dela Jots med andra" } },
"th": { "stringUnit": { "state": "translated", "value": "แชร์ Jots กับผู้อื่น" } },
"tr": { "stringUnit": { "state": "translated", "value": "Jots'ları başkalarıyla paylaş" } },
"uk": { "stringUnit": { "state": "translated", "value": "Діліться Jots з іншими" } },
"vi": { "stringUnit": { "state": "translated", "value": "Chia sẻ Jots với người khác" } }
}
},
"enableCloud.feature.sync": {
"comment": "Feature row describing cross-device sync on the Enable iCloud screen",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Synchronize Jots across all your Apple devices" } },
"de": { "stringUnit": { "state": "translated", "value": "Jots auf all deinen Apple-Geräten synchronisieren" } },
"af": { "stringUnit": { "state": "translated", "value": "Sinkroniseer Jots oor al jou Apple-toestelle" } },
"ar": { "stringUnit": { "state": "translated", "value": "مزامنة Jots عبر جميع أجهزة Apple الخاصة بك" } },
"es": { "stringUnit": { "state": "translated", "value": "Sincroniza Jots en todos tus dispositivos Apple" } },
"fr": { "stringUnit": { "state": "translated", "value": "Synchronisez les Jots sur tous vos appareils Apple" } },
"hi": { "stringUnit": { "state": "translated", "value": "अपने सभी Apple डिवाइस पर Jots सिंक करें" } },
"id": { "stringUnit": { "state": "translated", "value": "Sinkronkan Jots di semua perangkat Apple Anda" } },
"it": { "stringUnit": { "state": "translated", "value": "Sincronizza i Jots su tutti i tuoi dispositivi Apple" } },
"ja": { "stringUnit": { "state": "translated", "value": "すべてのAppleデバイスでJotを同期" } },
"ko": { "stringUnit": { "state": "translated", "value": "모든 Apple 기기에서 Jot 동기화" } },
"ms": { "stringUnit": { "state": "translated", "value": "Segerakkan Jots di semua peranti Apple anda" } },
"nl": { "stringUnit": { "state": "translated", "value": "Synchroniseer Jots op al je Apple-apparaten" } },
"pl": { "stringUnit": { "state": "translated", "value": "Synchronizuj Jots na wszystkich urządzeniach Apple" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Sincronize Jots em todos os seus dispositivos Apple" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Sincronize Jots em todos os seus dispositivos Apple" } },
"ru": { "stringUnit": { "state": "translated", "value": "Синхронизируйте Jots на всех устройствах Apple" } },
"sv": { "stringUnit": { "state": "translated", "value": "Synkronisera Jots på alla dina Apple-enheter" } },
"th": { "stringUnit": { "state": "translated", "value": "ซิงค์ Jots ข้ามอุปกรณ์ Apple ทั้งหมดของคุณ" } },
"tr": { "stringUnit": { "state": "translated", "value": "Jots'ları tüm Apple cihazlarında eşitle" } },
"uk": { "stringUnit": { "state": "translated", "value": "Синхронізуйте Jots на всіх пристроях Apple" } },
"vi": { "stringUnit": { "state": "translated", "value": "Đồng bộ Jots trên tất cả thiết bị Apple của bạn" } }
}
},
"enableCloud.subtitle": {
"comment": "Subtitle explaining why iCloud should be enabled",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "It looks like iCloud is disabled on this device. Turn on iCloud to get the most out of Jottre." } },
"de": { "stringUnit": { "state": "translated", "value": "iCloud scheint auf diesem Gerät deaktiviert zu sein. Aktiviere iCloud, um Jottre optimal zu nutzen." } },
"af": { "stringUnit": { "state": "translated", "value": "Dit lyk asof iCloud op hierdie toestel gedeaktiveer is. Skakel iCloud aan om die meeste uit Jottre te kry." } },
"ar": { "stringUnit": { "state": "translated", "value": "يبدو أن iCloud معطّل على هذا الجهاز. شغّل iCloud للاستفادة الكاملة من Jottre." } },
"es": { "stringUnit": { "state": "translated", "value": "Parece que iCloud está desactivado en este dispositivo. Activa iCloud para sacar el máximo partido a Jottre." } },
"fr": { "stringUnit": { "state": "translated", "value": "Il semble qu'iCloud soit désactivé sur cet appareil. Activez iCloud pour profiter pleinement de Jottre." } },
"hi": { "stringUnit": { "state": "translated", "value": "लगता है इस डिवाइस पर iCloud बंद है। Jottre का पूरा लाभ उठाने के लिए iCloud चालू करें।" } },
"id": { "stringUnit": { "state": "translated", "value": "Sepertinya iCloud dinonaktifkan di perangkat ini. Aktifkan iCloud untuk memaksimalkan Jottre." } },
"it": { "stringUnit": { "state": "translated", "value": "Sembra che iCloud sia disattivato su questo dispositivo. Attiva iCloud per sfruttare al meglio Jottre." } },
"ja": { "stringUnit": { "state": "translated", "value": "このデバイスではiCloudが無効になっているようです。Jottreを最大限に活用するにはiCloudをオンにしてください。" } },
"ko": { "stringUnit": { "state": "translated", "value": "이 기기에서 iCloud가 비활성화된 것 같습니다. Jottre를 최대한 활용하려면 iCloud를 켜세요." } },
"ms": { "stringUnit": { "state": "translated", "value": "Nampaknya iCloud dilumpuhkan pada peranti ini. Hidupkan iCloud untuk mendapatkan manfaat penuh daripada Jottre." } },
"nl": { "stringUnit": { "state": "translated", "value": "Het lijkt erop dat iCloud op dit apparaat is uitgeschakeld. Schakel iCloud in om het meeste uit Jottre te halen." } },
"pl": { "stringUnit": { "state": "translated", "value": "Wygląda na to, że iCloud jest wyłączony na tym urządzeniu. Włącz iCloud, aby w pełni korzystać z Jottre." } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Parece que o iCloud está desativado neste dispositivo. Ative o iCloud para aproveitar ao máximo o Jottre." } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Parece que o iCloud está desativado neste dispositivo. Ative o iCloud para tirar o máximo partido do Jottre." } },
"ru": { "stringUnit": { "state": "translated", "value": "Похоже, iCloud отключён на этом устройстве. Включите iCloud, чтобы использовать все возможности Jottre." } },
"sv": { "stringUnit": { "state": "translated", "value": "Det verkar som att iCloud är inaktiverat på den här enheten. Slå på iCloud för att få ut det mesta av Jottre." } },
"th": { "stringUnit": { "state": "translated", "value": "ดูเหมือนว่า iCloud จะถูกปิดใช้งานบนอุปกรณ์นี้ เปิด iCloud เพื่อใช้ Jottre ได้อย่างเต็มที่" } },
"tr": { "stringUnit": { "state": "translated", "value": "Bu cihazda iCloud'un devre dışı bırakıldığı görünüyor. Jottre'den en iyi şekilde yararlanmak için iCloud'u açın." } },
"uk": { "stringUnit": { "state": "translated", "value": "Схоже, iCloud вимкнено на цьому пристрої. Увімкніть iCloud, щоб отримати максимум від Jottre." } },
"vi": { "stringUnit": { "state": "translated", "value": "Có vẻ iCloud đang bị tắt trên thiết bị này. Hãy bật iCloud để tận dụng tối đa Jottre." } }
}
},
"enableCloud.title": {
"comment": "Headline on the Enable iCloud screen",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Enable iCloud" } },
"de": { "stringUnit": { "state": "translated", "value": "iCloud aktivieren" } },
"af": { "stringUnit": { "state": "translated", "value": "Aktiveer iCloud" } },
"ar": { "stringUnit": { "state": "translated", "value": "تفعيل iCloud" } },
"es": { "stringUnit": { "state": "translated", "value": "Activar iCloud" } },
"fr": { "stringUnit": { "state": "translated", "value": "Activer iCloud" } },
"hi": { "stringUnit": { "state": "translated", "value": "iCloud सक्षम करें" } },
"id": { "stringUnit": { "state": "translated", "value": "Aktifkan iCloud" } },
"it": { "stringUnit": { "state": "translated", "value": "Abilita iCloud" } },
"ja": { "stringUnit": { "state": "translated", "value": "iCloudを有効にする" } },
"ko": { "stringUnit": { "state": "translated", "value": "iCloud 활성화" } },
"ms": { "stringUnit": { "state": "translated", "value": "Aktifkan iCloud" } },
"nl": { "stringUnit": { "state": "translated", "value": "iCloud inschakelen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Włącz iCloud" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Ativar iCloud" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Ativar iCloud" } },
"ru": { "stringUnit": { "state": "translated", "value": "Включить iCloud" } },
"sv": { "stringUnit": { "state": "translated", "value": "Aktivera iCloud" } },
"th": { "stringUnit": { "state": "translated", "value": "เปิดใช้งาน iCloud" } },
"tr": { "stringUnit": { "state": "translated", "value": "iCloud'u Etkinleştir" } },
"uk": { "stringUnit": { "state": "translated", "value": "Увімкнути iCloud" } },
"vi": { "stringUnit": { "state": "translated", "value": "Bật iCloud" } }
}
},
"filesystem.duplicate.filename.multi": {
"comment": "The suffix added to a duplicated file name.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "%@ copy %d" } },
"de": { "stringUnit": { "state": "translated", "value": "%@ Kopie %d" } },
"af": { "stringUnit": { "state": "translated", "value": "%@ kopie %d" } },
"ar": { "stringUnit": { "state": "translated", "value": "%@ نسخة %d" } },
"es": { "stringUnit": { "state": "translated", "value": "%@ copia %d" } },
"fr": { "stringUnit": { "state": "translated", "value": "%@ copie %d" } },
"hi": { "stringUnit": { "state": "translated", "value": "%@ प्रति %d" } },
"id": { "stringUnit": { "state": "translated", "value": "%@ salinan %d" } },
"it": { "stringUnit": { "state": "translated", "value": "%@ copia %d" } },
"ja": { "stringUnit": { "state": "translated", "value": "%@ のコピー %d" } },
"ko": { "stringUnit": { "state": "translated", "value": "%@ 사본 %d" } },
"ms": { "stringUnit": { "state": "translated", "value": "%@ salinan %d" } },
"nl": { "stringUnit": { "state": "translated", "value": "%@ kopie %d" } },
"pl": { "stringUnit": { "state": "translated", "value": "%@ kopia %d" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "%@ cópia %d" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "%@ cópia %d" } },
"ru": { "stringUnit": { "state": "translated", "value": "%@ копия %d" } },
"sv": { "stringUnit": { "state": "translated", "value": "%@ kopia %d" } },
"th": { "stringUnit": { "state": "translated", "value": "%@ สำเนา %d" } },
"tr": { "stringUnit": { "state": "translated", "value": "%@ kopya %d" } },
"uk": { "stringUnit": { "state": "translated", "value": "%@ копія %d" } },
"vi": { "stringUnit": { "state": "translated", "value": "%@ bản sao %d" } }
}
},
"filesystem.duplicate.filename.plain": {
"comment": "A suffix added to a duplicated file name with a number in case of name conflicts.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "%@ copy" } },
"de": { "stringUnit": { "state": "translated", "value": "%@ Kopie" } },
"af": { "stringUnit": { "state": "translated", "value": "%@ kopie" } },
"ar": { "stringUnit": { "state": "translated", "value": "%@ نسخة" } },
"es": { "stringUnit": { "state": "translated", "value": "%@ copia" } },
"fr": { "stringUnit": { "state": "translated", "value": "%@ copie" } },
"hi": { "stringUnit": { "state": "translated", "value": "%@ प्रति" } },
"id": { "stringUnit": { "state": "translated", "value": "%@ salinan" } },
"it": { "stringUnit": { "state": "translated", "value": "%@ copia" } },
"ja": { "stringUnit": { "state": "translated", "value": "%@ のコピー" } },
"ko": { "stringUnit": { "state": "translated", "value": "%@ 사본" } },
"ms": { "stringUnit": { "state": "translated", "value": "%@ salinan" } },
"nl": { "stringUnit": { "state": "translated", "value": "%@ kopie" } },
"pl": { "stringUnit": { "state": "translated", "value": "%@ kopia" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "%@ cópia" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "%@ cópia" } },
"ru": { "stringUnit": { "state": "translated", "value": "%@ копия" } },
"sv": { "stringUnit": { "state": "translated", "value": "%@ kopia" } },
"th": { "stringUnit": { "state": "translated", "value": "%@ สำเนา" } },
"tr": { "stringUnit": { "state": "translated", "value": "%@ kopya" } },
"uk": { "stringUnit": { "state": "translated", "value": "%@ копія" } },
"vi": { "stringUnit": { "state": "translated", "value": "%@ bản sao" } }
}
},
"jotConflict.action.keepAll": {
"comment": "Action to keep all conflicting versions of a Jot",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Keep All" } },
"de": { "stringUnit": { "state": "translated", "value": "Alle behalten" } },
"af": { "stringUnit": { "state": "translated", "value": "Hou almal" } },
"ar": { "stringUnit": { "state": "translated", "value": "احتفظ بالكل" } },
"es": { "stringUnit": { "state": "translated", "value": "Conservar todos" } },
"fr": { "stringUnit": { "state": "translated", "value": "Tout conserver" } },
"hi": { "stringUnit": { "state": "translated", "value": "सभी रखें" } },
"id": { "stringUnit": { "state": "translated", "value": "Simpan Semua" } },
"it": { "stringUnit": { "state": "translated", "value": "Tieni tutto" } },
"ja": { "stringUnit": { "state": "translated", "value": "すべて保持" } },
"ko": { "stringUnit": { "state": "translated", "value": "모두 유지" } },
"ms": { "stringUnit": { "state": "translated", "value": "Simpan Semua" } },
"nl": { "stringUnit": { "state": "translated", "value": "Alles bewaren" } },
"pl": { "stringUnit": { "state": "translated", "value": "Zachowaj wszystko" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Manter todos" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Manter todos" } },
"ru": { "stringUnit": { "state": "translated", "value": "Оставить все" } },
"sv": { "stringUnit": { "state": "translated", "value": "Behåll alla" } },
"th": { "stringUnit": { "state": "translated", "value": "เก็บทั้งหมด" } },
"tr": { "stringUnit": { "state": "translated", "value": "Tümünü Tut" } },
"uk": { "stringUnit": { "state": "translated", "value": "Зберегти всі" } },
"vi": { "stringUnit": { "state": "translated", "value": "Giữ tất cả" } }
}
},
"jotConflict.action.keepVersion": {
"comment": "Action to keep version A of a conflicting jot",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Keep Version %@" } },
"de": { "stringUnit": { "state": "translated", "value": "Version %@ behalten" } },
"af": { "stringUnit": { "state": "translated", "value": "Hou weergawe %@" } },
"ar": { "stringUnit": { "state": "translated", "value": "احتفظ بالإصدار %@" } },
"es": { "stringUnit": { "state": "translated", "value": "Conservar versión %@" } },
"fr": { "stringUnit": { "state": "translated", "value": "Conserver la version %@" } },
"hi": { "stringUnit": { "state": "translated", "value": "संस्करण %@ रखें" } },
"id": { "stringUnit": { "state": "translated", "value": "Simpan Versi %@" } },
"it": { "stringUnit": { "state": "translated", "value": "Tieni la versione %@" } },
"ja": { "stringUnit": { "state": "translated", "value": "バージョン %@ を保持" } },
"ko": { "stringUnit": { "state": "translated", "value": "버전 %@ 유지" } },
"ms": { "stringUnit": { "state": "translated", "value": "Simpan Versi %@" } },
"nl": { "stringUnit": { "state": "translated", "value": "Versie %@ bewaren" } },
"pl": { "stringUnit": { "state": "translated", "value": "Zachowaj wersję %@" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Manter versão %@" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Manter versão %@" } },
"ru": { "stringUnit": { "state": "translated", "value": "Оставить версию %@" } },
"sv": { "stringUnit": { "state": "translated", "value": "Behåll version %@" } },
"th": { "stringUnit": { "state": "translated", "value": "เก็บเวอร์ชัน %@" } },
"tr": { "stringUnit": { "state": "translated", "value": "%@ sürümünü tut" } },
"uk": { "stringUnit": { "state": "translated", "value": "Зберегти версію %@" } },
"vi": { "stringUnit": { "state": "translated", "value": "Giữ phiên bản %@" } }
}
},
"jotConflict.deviceLabel": {
"comment": "Label for the current device in conflict resolution",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "This Device" } },
"de": { "stringUnit": { "state": "translated", "value": "Dieses Gerät" } },
"af": { "stringUnit": { "state": "translated", "value": "Hierdie toestel" } },
"ar": { "stringUnit": { "state": "translated", "value": "هذا الجهاز" } },
"es": { "stringUnit": { "state": "translated", "value": "Este dispositivo" } },
"fr": { "stringUnit": { "state": "translated", "value": "Cet appareil" } },
"hi": { "stringUnit": { "state": "translated", "value": "यह डिवाइस" } },
"id": { "stringUnit": { "state": "translated", "value": "Perangkat Ini" } },
"it": { "stringUnit": { "state": "translated", "value": "Questo dispositivo" } },
"ja": { "stringUnit": { "state": "translated", "value": "このデバイス" } },
"ko": { "stringUnit": { "state": "translated", "value": "이 기기" } },
"ms": { "stringUnit": { "state": "translated", "value": "Peranti Ini" } },
"nl": { "stringUnit": { "state": "translated", "value": "Dit apparaat" } },
"pl": { "stringUnit": { "state": "translated", "value": "To urządzenie" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Este dispositivo" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Este dispositivo" } },
"ru": { "stringUnit": { "state": "translated", "value": "Это устройство" } },
"sv": { "stringUnit": { "state": "translated", "value": "Den här enheten" } },
"th": { "stringUnit": { "state": "translated", "value": "อุปกรณ์นี้" } },
"tr": { "stringUnit": { "state": "translated", "value": "Bu Cihaz" } },
"uk": { "stringUnit": { "state": "translated", "value": "Цей пристрій" } },
"vi": { "stringUnit": { "state": "translated", "value": "Thiết bị này" } }
}
},
"jotConflict.error.generic": {
"comment": "The error title displayed in the alert shown when a version resolution failed.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Could not resolve conflicts" } },
"de": { "stringUnit": { "state": "translated", "value": "Konflikte konnten nicht gelöst werden" } },
"af": { "stringUnit": { "state": "translated", "value": "Kon nie konflikte oplos nie" } },
"ar": { "stringUnit": { "state": "translated", "value": "تعذّر حل التعارضات" } },
"es": { "stringUnit": { "state": "translated", "value": "No se pudieron resolver los conflictos" } },
"fr": { "stringUnit": { "state": "translated", "value": "Impossible de résoudre les conflits" } },
"hi": { "stringUnit": { "state": "translated", "value": "विरोधों को हल नहीं किया जा सका" } },
"id": { "stringUnit": { "state": "translated", "value": "Tidak dapat menyelesaikan konflik" } },
"it": { "stringUnit": { "state": "translated", "value": "Impossibile risolvere i conflitti" } },
"ja": { "stringUnit": { "state": "translated", "value": "競合を解決できませんでした" } },
"ko": { "stringUnit": { "state": "translated", "value": "충돌을 해결할 수 없음" } },
"ms": { "stringUnit": { "state": "translated", "value": "Tidak dapat menyelesaikan konflik" } },
"nl": { "stringUnit": { "state": "translated", "value": "Kon conflicten niet oplossen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Nie można rozwiązać konfliktów" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Não foi possível resolver os conflitos" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Não foi possível resolver os conflitos" } },
"ru": { "stringUnit": { "state": "translated", "value": "Не удалось разрешить конфликты" } },
"sv": { "stringUnit": { "state": "translated", "value": "Kunde inte lösa konflikter" } },
"th": { "stringUnit": { "state": "translated", "value": "ไม่สามารถแก้ไขข้อขัดแย้งได้" } },
"tr": { "stringUnit": { "state": "translated", "value": "Çakışmalar çözülemedi" } },
"uk": { "stringUnit": { "state": "translated", "value": "Не вдалося вирішити конфлікти" } },
"vi": { "stringUnit": { "state": "translated", "value": "Không thể giải quyết xung đột" } }
}
},
"jotConflict.subtitle": {
"comment": "Subtitle explaining the conflict; %@ is the name of the jot",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "\"%@\" was edited on two devices at the same time. Choose a version to keep." } },
"de": { "stringUnit": { "state": "translated", "value": "\"%@\" wurde gleichzeitig auf zwei Geräten bearbeitet. Wähle eine Version aus, die du behalten möchtest." } },
"af": { "stringUnit": { "state": "translated", "value": "\"%@\" is gelyktydig op twee toestelle gewysig. Kies 'n weergawe om te behou." } },
"ar": { "stringUnit": { "state": "translated", "value": "تم تعديل \"%@\" على جهازين في الوقت نفسه. اختر إصدارًا للاحتفاظ به." } },
"es": { "stringUnit": { "state": "translated", "value": "\"%@\" fue editado en dos dispositivos al mismo tiempo. Elige una versión para conservar." } },
"fr": { "stringUnit": { "state": "translated", "value": "« %@ » a été modifié sur deux appareils en même temps. Choisissez une version à conserver." } },
"hi": { "stringUnit": { "state": "translated", "value": "\"%@\" को एक साथ दो डिवाइस पर संपादित किया गया। रखने के लिए एक संस्करण चुनें।" } },
"id": { "stringUnit": { "state": "translated", "value": "\"%@\" diedit di dua perangkat secara bersamaan. Pilih versi yang ingin disimpan." } },
"it": { "stringUnit": { "state": "translated", "value": "«%@» è stato modificato su due dispositivi contemporaneamente. Scegli la versione da conservare." } },
"ja": { "stringUnit": { "state": "translated", "value": "「%@」が2つのデバイスで同時に編集されました。保持するバージョンを選んでください。" } },
"ko": { "stringUnit": { "state": "translated", "value": "\"%@\"이(가) 두 기기에서 동시에 편집되었습니다. 유지할 버전을 선택하세요." } },
"ms": { "stringUnit": { "state": "translated", "value": "\"%@\" telah diedit pada dua peranti pada masa yang sama. Pilih versi yang hendak disimpan." } },
"nl": { "stringUnit": { "state": "translated", "value": "\"%@\" is tegelijkertijd op twee apparaten bewerkt. Kies een versie om te bewaren." } },
"pl": { "stringUnit": { "state": "translated", "value": "\"%@\" zostało edytowane na dwóch urządzeniach jednocześnie. Wybierz wersję do zachowania." } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "\"%@\" foi editado em dois dispositivos ao mesmo tempo. Escolha uma versão para manter." } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "\"%@\" foi editado em dois dispositivos ao mesmo tempo. Escolha uma versão para manter." } },
"ru": { "stringUnit": { "state": "translated", "value": "«%@» было отредактировано на двух устройствах одновременно. Выберите версию для сохранения." } },
"sv": { "stringUnit": { "state": "translated", "value": "\"%@\" redigerades på två enheter samtidigt. Välj en version att behålla." } },
"th": { "stringUnit": { "state": "translated", "value": "\"%@\" ถูกแก้ไขบนสองอุปกรณ์พร้อมกัน เลือกเวอร์ชันที่ต้องการเก็บไว้" } },
"tr": { "stringUnit": { "state": "translated", "value": "\"%@\" aynı anda iki cihazda düzenlendi. Saklamak istediğiniz sürümü seçin." } },
"uk": { "stringUnit": { "state": "translated", "value": "«%@» було відредаговано на двох пристроях одночасно. Виберіть версію для збереження." } },
"vi": { "stringUnit": { "state": "translated", "value": "\"%@\" đã được chỉnh sửa trên hai thiết bị cùng lúc. Hãy chọn phiên bản muốn giữ lại." } }
}
},
"jotConflict.title": {
"comment": "Headline on the jot conflict resolution screen",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Version Conflict" } },
"de": { "stringUnit": { "state": "translated", "value": "Versionskonflikt" } },
"af": { "stringUnit": { "state": "translated", "value": "Weergawekonflikt" } },
"ar": { "stringUnit": { "state": "translated", "value": "تعارض الإصدارات" } },
"es": { "stringUnit": { "state": "translated", "value": "Conflicto de versiones" } },
"fr": { "stringUnit": { "state": "translated", "value": "Conflit de versions" } },
"hi": { "stringUnit": { "state": "translated", "value": "संस्करण विरोध" } },
"id": { "stringUnit": { "state": "translated", "value": "Konflik Versi" } },
"it": { "stringUnit": { "state": "translated", "value": "Conflitto di versioni" } },
"ja": { "stringUnit": { "state": "translated", "value": "バージョンの競合" } },
"ko": { "stringUnit": { "state": "translated", "value": "버전 충돌" } },
"ms": { "stringUnit": { "state": "translated", "value": "Konflik Versi" } },
"nl": { "stringUnit": { "state": "translated", "value": "Versieconflict" } },
"pl": { "stringUnit": { "state": "translated", "value": "Konflikt wersji" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Conflito de versões" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Conflito de versões" } },
"ru": { "stringUnit": { "state": "translated", "value": "Конфликт версий" } },
"sv": { "stringUnit": { "state": "translated", "value": "Versionskonflikt" } },
"th": { "stringUnit": { "state": "translated", "value": "ความขัดแย้งของเวอร์ชัน" } },
"tr": { "stringUnit": { "state": "translated", "value": "Sürüm Çakışması" } },
"uk": { "stringUnit": { "state": "translated", "value": "Конфлікт версій" } },
"vi": { "stringUnit": { "state": "translated", "value": "Xung đột phiên bản" } }
}
},
"jotConflict.versionName": {
"comment": "Label for conflict version (displays as 'Version A', 'Version B', etc.)",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Version %@" } },
"de": { "stringUnit": { "state": "translated", "value": "Version %@" } },
"af": { "stringUnit": { "state": "translated", "value": "Weergawe %@" } },
"ar": { "stringUnit": { "state": "translated", "value": "الإصدار %@" } },
"es": { "stringUnit": { "state": "translated", "value": "Versión %@" } },
"fr": { "stringUnit": { "state": "translated", "value": "Version %@" } },
"hi": { "stringUnit": { "state": "translated", "value": "संस्करण %@" } },
"id": { "stringUnit": { "state": "translated", "value": "Versi %@" } },
"it": { "stringUnit": { "state": "translated", "value": "Versione %@" } },
"ja": { "stringUnit": { "state": "translated", "value": "バージョン %@" } },
"ko": { "stringUnit": { "state": "translated", "value": "버전 %@" } },
"ms": { "stringUnit": { "state": "translated", "value": "Versi %@" } },
"nl": { "stringUnit": { "state": "translated", "value": "Versie %@" } },
"pl": { "stringUnit": { "state": "translated", "value": "Wersja %@" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Versão %@" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Versão %@" } },
"ru": { "stringUnit": { "state": "translated", "value": "Версия %@" } },
"sv": { "stringUnit": { "state": "translated", "value": "Version %@" } },
"th": { "stringUnit": { "state": "translated", "value": "เวอร์ชัน %@" } },
"tr": { "stringUnit": { "state": "translated", "value": "Sürüm %@" } },
"uk": { "stringUnit": { "state": "translated", "value": "Версія %@" } },
"vi": { "stringUnit": { "state": "translated", "value": "Phiên bản %@" } }
}
},
"jots.create.error.fileExists": {
"comment": "The error message when a Jot already exists.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "\"%@\" already exists" } },
"de": { "stringUnit": { "state": "translated", "value": "\"%@\" ist bereits vorhanden" } },
"af": { "stringUnit": { "state": "translated", "value": "\"%@\" bestaan reeds" } },
"ar": { "stringUnit": { "state": "translated", "value": "\"%@\" موجود بالفعل" } },
"es": { "stringUnit": { "state": "translated", "value": "\"%@\" ya existe" } },
"fr": { "stringUnit": { "state": "translated", "value": "« %@ » existe déjà" } },
"hi": { "stringUnit": { "state": "translated", "value": "\"%@\" पहले से मौजूद है" } },
"id": { "stringUnit": { "state": "translated", "value": "\"%@\" sudah ada" } },
"it": { "stringUnit": { "state": "translated", "value": "«%@» esiste già" } },
"ja": { "stringUnit": { "state": "translated", "value": "「%@」はすでに存在します" } },
"ko": { "stringUnit": { "state": "translated", "value": "\"%@\"이(가) 이미 존재합니다" } },
"ms": { "stringUnit": { "state": "translated", "value": "\"%@\" sudah wujud" } },
"nl": { "stringUnit": { "state": "translated", "value": "\"%@\" bestaat al" } },
"pl": { "stringUnit": { "state": "translated", "value": "\"%@\" już istnieje" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "\"%@\" já existe" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "\"%@\" já existe" } },
"ru": { "stringUnit": { "state": "translated", "value": "«%@» уже существует" } },
"sv": { "stringUnit": { "state": "translated", "value": "\"%@\" finns redan" } },
"th": { "stringUnit": { "state": "translated", "value": "\"%@\" มีอยู่แล้ว" } },
"tr": { "stringUnit": { "state": "translated", "value": "\"%@\" zaten mevcut" } },
"uk": { "stringUnit": { "state": "translated", "value": "«%@» вже існує" } },
"vi": { "stringUnit": { "state": "translated", "value": "\"%@\" đã tồn tại" } }
}
},
"jots.create.error.generic": {
"comment": "A generic error message during Jot creation.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Something went wrong" } },
"de": { "stringUnit": { "state": "translated", "value": "Etwas ist schiefgelaufen" } },
"af": { "stringUnit": { "state": "translated", "value": "Iets het verkeerd geloop" } },
"ar": { "stringUnit": { "state": "translated", "value": "حدث خطأ ما" } },
"es": { "stringUnit": { "state": "translated", "value": "Algo salió mal" } },
"fr": { "stringUnit": { "state": "translated", "value": "Une erreur s'est produite" } },
"hi": { "stringUnit": { "state": "translated", "value": "कुछ गलत हो गया" } },
"id": { "stringUnit": { "state": "translated", "value": "Terjadi kesalahan" } },
"it": { "stringUnit": { "state": "translated", "value": "Qualcosa è andato storto" } },
"ja": { "stringUnit": { "state": "translated", "value": "問題が発生しました" } },
"ko": { "stringUnit": { "state": "translated", "value": "문제가 발생했습니다" } },
"ms": { "stringUnit": { "state": "translated", "value": "Sesuatu telah berlaku" } },
"nl": { "stringUnit": { "state": "translated", "value": "Er is iets misgegaan" } },
"pl": { "stringUnit": { "state": "translated", "value": "Coś poszło nie tak" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Algo deu errado" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Algo correu mal" } },
"ru": { "stringUnit": { "state": "translated", "value": "Что-то пошло не так" } },
"sv": { "stringUnit": { "state": "translated", "value": "Något gick fel" } },
"th": { "stringUnit": { "state": "translated", "value": "เกิดข้อผิดพลาดบางอย่าง" } },
"tr": { "stringUnit": { "state": "translated", "value": "Bir şeyler ters gitti" } },
"uk": { "stringUnit": { "state": "translated", "value": "Щось пішло не так" } },
"vi": { "stringUnit": { "state": "translated", "value": "Đã xảy ra lỗi" } }
}
},
"jots.create.namePlaceholder": {
"comment": "Placeholder text in the name text field of the Create Jot alert",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Name" } },
"de": { "stringUnit": { "state": "translated", "value": "Name" } },
"af": { "stringUnit": { "state": "translated", "value": "Naam" } },
"ar": { "stringUnit": { "state": "translated", "value": "الاسم" } },
"es": { "stringUnit": { "state": "translated", "value": "Nombre" } },
"fr": { "stringUnit": { "state": "translated", "value": "Nom" } },
"hi": { "stringUnit": { "state": "translated", "value": "नाम" } },
"id": { "stringUnit": { "state": "translated", "value": "Nama" } },
"it": { "stringUnit": { "state": "translated", "value": "Nome" } },
"ja": { "stringUnit": { "state": "translated", "value": "名前" } },
"ko": { "stringUnit": { "state": "translated", "value": "이름" } },
"ms": { "stringUnit": { "state": "translated", "value": "Nama" } },
"nl": { "stringUnit": { "state": "translated", "value": "Naam" } },
"pl": { "stringUnit": { "state": "translated", "value": "Nazwa" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Nome" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Nome" } },
"ru": { "stringUnit": { "state": "translated", "value": "Название" } },
"sv": { "stringUnit": { "state": "translated", "value": "Namn" } },
"th": { "stringUnit": { "state": "translated", "value": "ชื่อ" } },
"tr": { "stringUnit": { "state": "translated", "value": "Ad" } },
"uk": { "stringUnit": { "state": "translated", "value": "Назва" } },
"vi": { "stringUnit": { "state": "translated", "value": "Tên" } }
}
},
"jots.create.title": {
"comment": "Title of the Create Jot alert",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "New Jot" } },
"de": { "stringUnit": { "state": "translated", "value": "Neues Jot" } },
"af": { "stringUnit": { "state": "translated", "value": "Nuwe Jot" } },
"ar": { "stringUnit": { "state": "translated", "value": "Jot جديد" } },
"es": { "stringUnit": { "state": "translated", "value": "Nuevo Jot" } },
"fr": { "stringUnit": { "state": "translated", "value": "Nouveau Jot" } },
"hi": { "stringUnit": { "state": "translated", "value": "नया Jot" } },
"id": { "stringUnit": { "state": "translated", "value": "Jot Baru" } },
"it": { "stringUnit": { "state": "translated", "value": "Nuovo Jot" } },
"ja": { "stringUnit": { "state": "translated", "value": "新しいJot" } },
"ko": { "stringUnit": { "state": "translated", "value": "새 Jot" } },
"ms": { "stringUnit": { "state": "translated", "value": "Jot Baharu" } },
"nl": { "stringUnit": { "state": "translated", "value": "Nieuwe Jot" } },
"pl": { "stringUnit": { "state": "translated", "value": "Nowy Jot" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Novo Jot" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Novo Jot" } },
"ru": { "stringUnit": { "state": "translated", "value": "Новый Jot" } },
"sv": { "stringUnit": { "state": "translated", "value": "Ny Jot" } },
"th": { "stringUnit": { "state": "translated", "value": "Jot ใหม่" } },
"tr": { "stringUnit": { "state": "translated", "value": "Yeni Jot" } },
"uk": { "stringUnit": { "state": "translated", "value": "Новий Jot" } },
"vi": { "stringUnit": { "state": "translated", "value": "Jot mới" } }
}
},
"jots.delete.error.generic": {
"comment": "The error message when a Jot couldn't be deleted.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Could not delete \"%@\"" } },
"de": { "stringUnit": { "state": "translated", "value": "\"%@\" konnte nicht gelöscht werden" } },
"af": { "stringUnit": { "state": "translated", "value": "Kon \"%@\" nie verwyder nie" } },
"ar": { "stringUnit": { "state": "translated", "value": "تعذّر حذف \"%@\"" } },
"es": { "stringUnit": { "state": "translated", "value": "No se pudo eliminar \"%@\"" } },
"fr": { "stringUnit": { "state": "translated", "value": "Impossible de supprimer « %@ »" } },
"hi": { "stringUnit": { "state": "translated", "value": "\"%@\" को हटाया नहीं जा सका" } },
"id": { "stringUnit": { "state": "translated", "value": "Tidak dapat menghapus \"%@\"" } },
"it": { "stringUnit": { "state": "translated", "value": "Impossibile eliminare «%@»" } },
"ja": { "stringUnit": { "state": "translated", "value": "「%@」を削除できませんでした" } },
"ko": { "stringUnit": { "state": "translated", "value": "\"%@\"을(를) 삭제할 수 없음" } },
"ms": { "stringUnit": { "state": "translated", "value": "Tidak dapat memadam \"%@\"" } },
"nl": { "stringUnit": { "state": "translated", "value": "Kan \"%@\" niet verwijderen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Nie można usunąć \"%@\"" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Não foi possível excluir \"%@\"" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Não foi possível eliminar \"%@\"" } },
"ru": { "stringUnit": { "state": "translated", "value": "Не удалось удалить «%@»" } },
"sv": { "stringUnit": { "state": "translated", "value": "Kunde inte radera \"%@\"" } },
"th": { "stringUnit": { "state": "translated", "value": "ไม่สามารถลบ \"%@\" ได้" } },
"tr": { "stringUnit": { "state": "translated", "value": "\"%@\" silinemedi" } },
"uk": { "stringUnit": { "state": "translated", "value": "Не вдалося видалити «%@»" } },
"vi": { "stringUnit": { "state": "translated", "value": "Không thể xóa \"%@\"" } }
}
},
"jots.delete.message": {
"comment": "Confirmation message in the Delete Jot alert",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Are you sure you want to delete this Jot? This action cannot be undone." } },
"de": { "stringUnit": { "state": "translated", "value": "Möchtest du dieses Jot wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden." } },
"af": { "stringUnit": { "state": "translated", "value": "Is jy seker jy wil hierdie Jot verwyder? Hierdie aksie kan nie ongedaan gemaak word nie." } },
"ar": { "stringUnit": { "state": "translated", "value": "هل أنت متأكد أنك تريد حذف هذا Jot؟ لا يمكن التراجع عن هذا الإجراء." } },
"es": { "stringUnit": { "state": "translated", "value": "¿Seguro que quieres eliminar este Jot? Esta acción no se puede deshacer." } },
"fr": { "stringUnit": { "state": "translated", "value": "Voulez-vous vraiment supprimer ce Jot ? Cette action est irréversible." } },
"hi": { "stringUnit": { "state": "translated", "value": "क्या आप वाकई इस Jot को हटाना चाहते हैं? यह क्रिया पूर्ववत नहीं की जा सकती।" } },
"id": { "stringUnit": { "state": "translated", "value": "Yakin ingin menghapus Jot ini? Tindakan ini tidak dapat dibatalkan." } },
"it": { "stringUnit": { "state": "translated", "value": "Sei sicuro di voler eliminare questo Jot? L'operazione non può essere annullata." } },
"ja": { "stringUnit": { "state": "translated", "value": "このJotを削除してもよいですか?この操作は元に戻せません。" } },
"ko": { "stringUnit": { "state": "translated", "value": "이 Jot을 삭제하시겠습니까? 이 작업은 취소할 수 없습니다." } },
"ms": { "stringUnit": { "state": "translated", "value": "Adakah anda pasti ingin memadam Jot ini? Tindakan ini tidak boleh dibuat asal." } },
"nl": { "stringUnit": { "state": "translated", "value": "Weet je zeker dat je deze Jot wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt." } },
"pl": { "stringUnit": { "state": "translated", "value": "Czy na pewno chcesz usunąć ten Jot? Tej operacji nie można cofnąć." } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Tem certeza de que deseja excluir este Jot? Esta ação não pode ser desfeita." } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Tem a certeza de que pretende eliminar este Jot? Esta ação não pode ser anulada." } },
"ru": { "stringUnit": { "state": "translated", "value": "Вы уверены, что хотите удалить этот Jot? Это действие нельзя отменить." } },
"sv": { "stringUnit": { "state": "translated", "value": "Är du säker på att du vill radera den här Jot? Den här åtgärden kan inte ångras." } },
"th": { "stringUnit": { "state": "translated", "value": "คุณแน่ใจว่าต้องการลบ Jot นี้ใช่ไหม? การดำเนินการนี้ไม่สามารถย้อนกลับได้" } },
"tr": { "stringUnit": { "state": "translated", "value": "Bu Jot'u silmek istediğinizden emin misiniz? Bu işlem geri alınamaz." } },
"uk": { "stringUnit": { "state": "translated", "value": "Ви впевнені, що хочете видалити цей Jot? Цю дію неможливо скасувати." } },
"vi": { "stringUnit": { "state": "translated", "value": "Bạn có chắc muốn xóa Jot này không? Hành động này không thể hoàn tác." } }
}
},
"jots.delete.title": {
"comment": "Title of the Delete Jot confirmation alert",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Delete Jot" } },
"de": { "stringUnit": { "state": "translated", "value": "Jot löschen" } },
"af": { "stringUnit": { "state": "translated", "value": "Verwyder Jot" } },
"ar": { "stringUnit": { "state": "translated", "value": "حذف Jot" } },
"es": { "stringUnit": { "state": "translated", "value": "Eliminar Jot" } },
"fr": { "stringUnit": { "state": "translated", "value": "Supprimer le Jot" } },
"hi": { "stringUnit": { "state": "translated", "value": "Jot हटाएं" } },
"id": { "stringUnit": { "state": "translated", "value": "Hapus Jot" } },
"it": { "stringUnit": { "state": "translated", "value": "Elimina Jot" } },
"ja": { "stringUnit": { "state": "translated", "value": "Jotを削除" } },
"ko": { "stringUnit": { "state": "translated", "value": "Jot 삭제" } },
"ms": { "stringUnit": { "state": "translated", "value": "Padam Jot" } },
"nl": { "stringUnit": { "state": "translated", "value": "Jot verwijderen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Usuń Jot" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Excluir Jot" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Eliminar Jot" } },
"ru": { "stringUnit": { "state": "translated", "value": "Удалить Jot" } },
"sv": { "stringUnit": { "state": "translated", "value": "Radera Jot" } },
"th": { "stringUnit": { "state": "translated", "value": "ลบ Jot" } },
"tr": { "stringUnit": { "state": "translated", "value": "Jot'u Sil" } },
"uk": { "stringUnit": { "state": "translated", "value": "Видалити Jot" } },
"vi": { "stringUnit": { "state": "translated", "value": "Xóa Jot" } }
}
},
"jots.download.error.generic": {
"comment": "The error message displayed when a Jot couldn't be downloaded.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Could not download \"%@\"" } },
"de": { "stringUnit": { "state": "translated", "value": "\"%@\" konnte nicht heruntergeladen werden" } },
"af": { "stringUnit": { "state": "translated", "value": "Kon \"%@\" nie aflaai nie" } },
"ar": { "stringUnit": { "state": "translated", "value": "تعذّر تنزيل \"%@\"" } },
"es": { "stringUnit": { "state": "translated", "value": "No se pudo descargar \"%@\"" } },
"fr": { "stringUnit": { "state": "translated", "value": "Impossible de télécharger « %@ »" } },
"hi": { "stringUnit": { "state": "translated", "value": "\"%@\" डाउनलोड नहीं हो सका" } },
"id": { "stringUnit": { "state": "translated", "value": "Tidak dapat mengunduh \"%@\"" } },
"it": { "stringUnit": { "state": "translated", "value": "Impossibile scaricare «%@»" } },
"ja": { "stringUnit": { "state": "translated", "value": "「%@」をダウンロードできませんでした" } },
"ko": { "stringUnit": { "state": "translated", "value": "\"%@\"을(를) 다운로드할 수 없음" } },
"ms": { "stringUnit": { "state": "translated", "value": "Tidak dapat memuat turun \"%@\"" } },
"nl": { "stringUnit": { "state": "translated", "value": "Kan \"%@\" niet downloaden" } },
"pl": { "stringUnit": { "state": "translated", "value": "Nie można pobrać \"%@\"" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Não foi possível baixar \"%@\"" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Não foi possível transferir \"%@\"" } },
"ru": { "stringUnit": { "state": "translated", "value": "Не удалось загрузить «%@»" } },
"sv": { "stringUnit": { "state": "translated", "value": "Kunde inte ladda ned \"%@\"" } },
"th": { "stringUnit": { "state": "translated", "value": "ไม่สามารถดาวน์โหลด \"%@\" ได้" } },
"tr": { "stringUnit": { "state": "translated", "value": "\"%@\" indirilemedi" } },
"uk": { "stringUnit": { "state": "translated", "value": "Не вдалося завантажити «%@»" } },
"vi": { "stringUnit": { "state": "translated", "value": "Không thể tải xuống \"%@\"" } }
}
},
"jots.duplicate.error.generic": {
"comment": "The error message displayed when a Jot couldn't be duplicated.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Could not duplicate \"%@\"" } },
"de": { "stringUnit": { "state": "translated", "value": "\"%@\" konnte nicht dupliziert werden" } },
"af": { "stringUnit": { "state": "translated", "value": "Kon \"%@\" nie dupliseer nie" } },
"ar": { "stringUnit": { "state": "translated", "value": "تعذّر تكرار \"%@\"" } },
"es": { "stringUnit": { "state": "translated", "value": "No se pudo duplicar \"%@\"" } },
"fr": { "stringUnit": { "state": "translated", "value": "Impossible de dupliquer « %@ »" } },
"hi": { "stringUnit": { "state": "translated", "value": "\"%@\" को डुप्लीकेट नहीं किया जा सका" } },
"id": { "stringUnit": { "state": "translated", "value": "Tidak dapat menduplikasi \"%@\"" } },
"it": { "stringUnit": { "state": "translated", "value": "Impossibile duplicare «%@»" } },
"ja": { "stringUnit": { "state": "translated", "value": "「%@」を複製できませんでした" } },
"ko": { "stringUnit": { "state": "translated", "value": "\"%@\"을(를) 복제할 수 없음" } },
"ms": { "stringUnit": { "state": "translated", "value": "Tidak dapat menduplikasi \"%@\"" } },
"nl": { "stringUnit": { "state": "translated", "value": "Kan \"%@\" niet dupliceren" } },
"pl": { "stringUnit": { "state": "translated", "value": "Nie można zduplikować \"%@\"" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Não foi possível duplicar \"%@\"" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Não foi possível duplicar \"%@\"" } },
"ru": { "stringUnit": { "state": "translated", "value": "Не удалось дублировать «%@»" } },
"sv": { "stringUnit": { "state": "translated", "value": "Kunde inte duplicera \"%@\"" } },
"th": { "stringUnit": { "state": "translated", "value": "ไม่สามารถทำซ้ำ \"%@\" ได้" } },
"tr": { "stringUnit": { "state": "translated", "value": "\"%@\" çoğaltılamadı" } },
"uk": { "stringUnit": { "state": "translated", "value": "Не вдалося дублювати «%@»" } },
"vi": { "stringUnit": { "state": "translated", "value": "Không thể nhân đôi \"%@\"" } }
}
},
"jots.empty.title": {
"comment": "Empty state message when there are no jots",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "A blank page full of possibilities. Go ahead, jot something insanely great!" } },
"de": { "stringUnit": { "state": "translated", "value": "Eine leere Seite voller Möglichkeiten. Los geht's, schreib etwas Großartiges!" } },
"af": { "stringUnit": { "state": "translated", "value": "'n Leë bladsy vol moontlikhede. Gaan voort, skryf iets ongelooflik wonderlik neer!" } },
"ar": { "stringUnit": { "state": "translated", "value": "صفحة بيضاء مليئة بالإمكانيات. هيّا، دوّن شيئًا رائعًا!" } },
"es": { "stringUnit": { "state": "translated", "value": "Una página en blanco llena de posibilidades. ¡Adelante, escribe algo increíble!" } },
"fr": { "stringUnit": { "state": "translated", "value": "Une page blanche pleine de possibilités. Allez, notez quelque chose d'extraordinaire !" } },
"hi": { "stringUnit": { "state": "translated", "value": "संभावनाओं से भरा एक खाली पन्ना। आगे बढ़ें, कुछ शानदार लिखें!" } },
"id": { "stringUnit": { "state": "translated", "value": "Halaman kosong penuh kemungkinan. Ayo, tuliskan sesuatu yang luar biasa!" } },
"it": { "stringUnit": { "state": "translated", "value": "Una pagina bianca piena di possibilità. Dai, annota qualcosa di straordinario!" } },
"ja": { "stringUnit": { "state": "translated", "value": "可能性に満ちた白紙のページ。さあ、素晴らしいことを書き留めましょう!" } },
"ko": { "stringUnit": { "state": "translated", "value": "가능성으로 가득 찬 빈 페이지. 지금 바로 멋진 것을 적어 보세요!" } },
"ms": { "stringUnit": { "state": "translated", "value": "Halaman kosong penuh kemungkinan. Ayuh, catat sesuatu yang luar biasa!" } },
"nl": { "stringUnit": { "state": "translated", "value": "Een blanco pagina vol mogelijkheden. Ga je gang en schrijf iets geweldigs!" } },
"pl": { "stringUnit": { "state": "translated", "value": "Pusta strona pełna możliwości. No dalej, zapisz coś niesamowitego!" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Uma página em branco cheia de possibilidades. Vá em frente, anote algo incrível!" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Uma página em branco cheia de possibilidades. Avance, escreva algo incrivelmente fantástico!" } },
"ru": { "stringUnit": { "state": "translated", "value": "Чистая страница, полная возможностей. Вперёд — запишите что-нибудь грандиозное!" } },
"sv": { "stringUnit": { "state": "translated", "value": "En tom sida full av möjligheter. Sätt igång och anteckna något fantastiskt!" } },
"th": { "stringUnit": { "state": "translated", "value": "หน้ากระดาษเปล่าเต็มไปด้วยความเป็นไปได้ ลองจดบางอย่างที่ยอดเยี่ยมดูสิ!" } },
"tr": { "stringUnit": { "state": "translated", "value": "Olasılıklarla dolu boş bir sayfa. Haydi, harika bir şeyler jot edin!" } },
"uk": { "stringUnit": { "state": "translated", "value": "Чиста сторінка, сповнена можливостей. Сміливо — занотуйте щось неймовірне!" } },
"vi": { "stringUnit": { "state": "translated", "value": "Một trang trắng đầy khả năng. Hãy mạnh dạn ghi lại điều gì đó thật tuyệt vời!" } }
}
},
"jots.menu.openInNewWindow": {
"comment": "Context menu item to open a jot in a new window",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Open In New Window" } },
"de": { "stringUnit": { "state": "translated", "value": "In neuem Fenster öffnen" } },
"af": { "stringUnit": { "state": "translated", "value": "Maak oop in nuwe venster" } },
"ar": { "stringUnit": { "state": "translated", "value": "فتح في نافذة جديدة" } },
"es": { "stringUnit": { "state": "translated", "value": "Abrir en nueva ventana" } },
"fr": { "stringUnit": { "state": "translated", "value": "Ouvrir dans une nouvelle fenêtre" } },
"hi": { "stringUnit": { "state": "translated", "value": "नई विंडो में खोलें" } },
"id": { "stringUnit": { "state": "translated", "value": "Buka di Jendela Baru" } },
"it": { "stringUnit": { "state": "translated", "value": "Apri in una nuova finestra" } },
"ja": { "stringUnit": { "state": "translated", "value": "新しいウインドウで開く" } },
"ko": { "stringUnit": { "state": "translated", "value": "새 윈도우에서 열기" } },
"ms": { "stringUnit": { "state": "translated", "value": "Buka dalam Tetingkap Baharu" } },
"nl": { "stringUnit": { "state": "translated", "value": "Open in nieuw venster" } },
"pl": { "stringUnit": { "state": "translated", "value": "Otwórz w nowym oknie" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Abrir em nova janela" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Abrir em nova janela" } },
"ru": { "stringUnit": { "state": "translated", "value": "Открыть в новом окне" } },
"sv": { "stringUnit": { "state": "translated", "value": "Öppna i nytt fönster" } },
"th": { "stringUnit": { "state": "translated", "value": "เปิดในหน้าต่างใหม่" } },
"tr": { "stringUnit": { "state": "translated", "value": "Yeni Pencerede Aç" } },
"uk": { "stringUnit": { "state": "translated", "value": "Відкрити в новому вікні" } },
"vi": { "stringUnit": { "state": "translated", "value": "Mở trong cửa sổ mới" } }
}
},
"jots.menu.revealInFiles": {
"comment": "Context menu item to reveal the jot in the Files app (iOS only)",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Reveal in Files" } },
"de": { "stringUnit": { "state": "translated", "value": "In Dateien anzeigen" } },
"af": { "stringUnit": { "state": "translated", "value": "Wys in Lêers" } },
"ar": { "stringUnit": { "state": "translated", "value": "الكشف في الملفات" } },
"es": { "stringUnit": { "state": "translated", "value": "Mostrar en Archivos" } },
"fr": { "stringUnit": { "state": "translated", "value": "Afficher dans Fichiers" } },
"hi": { "stringUnit": { "state": "translated", "value": "Files में दिखाएं" } },
"id": { "stringUnit": { "state": "translated", "value": "Tampilkan di Files" } },
"it": { "stringUnit": { "state": "translated", "value": "Mostra in File" } },
"ja": { "stringUnit": { "state": "translated", "value": "ファイルで表示" } },
"ko": { "stringUnit": { "state": "translated", "value": "파일에서 보기" } },
"ms": { "stringUnit": { "state": "translated", "value": "Tunjukkan dalam Fail" } },
"nl": { "stringUnit": { "state": "translated", "value": "Tonen in Bestanden" } },
"pl": { "stringUnit": { "state": "translated", "value": "Pokaż w Plikach" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Mostrar em Arquivos" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Mostrar em Ficheiros" } },
"ru": { "stringUnit": { "state": "translated", "value": "Показать в Файлах" } },
"sv": { "stringUnit": { "state": "translated", "value": "Visa i Filer" } },
"th": { "stringUnit": { "state": "translated", "value": "แสดงใน Files" } },
"tr": { "stringUnit": { "state": "translated", "value": "Dosyalar'da Göster" } },
"uk": { "stringUnit": { "state": "translated", "value": "Показати у Файлах" } },
"vi": { "stringUnit": { "state": "translated", "value": "Hiện trong Files" } }
}
},
"jots.menu.revealInFinder": {
"comment": "Context menu item to reveal the jot in Finder (macOS Catalyst only)",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Reveal in Finder" } },
"de": { "stringUnit": { "state": "translated", "value": "Im Finder anzeigen" } },
"af": { "stringUnit": { "state": "translated", "value": "Wys in Finder" } },
"ar": { "stringUnit": { "state": "translated", "value": "الكشف في Finder" } },
"es": { "stringUnit": { "state": "translated", "value": "Mostrar en el Finder" } },
"fr": { "stringUnit": { "state": "translated", "value": "Afficher dans le Finder" } },
"hi": { "stringUnit": { "state": "translated", "value": "Finder में दिखाएं" } },
"id": { "stringUnit": { "state": "translated", "value": "Tampilkan di Finder" } },
"it": { "stringUnit": { "state": "translated", "value": "Mostra nel Finder" } },
"ja": { "stringUnit": { "state": "translated", "value": "Finderで表示" } },
"ko": { "stringUnit": { "state": "translated", "value": "Finder에서 보기" } },
"ms": { "stringUnit": { "state": "translated", "value": "Tunjukkan dalam Finder" } },
"nl": { "stringUnit": { "state": "translated", "value": "Tonen in Finder" } },
"pl": { "stringUnit": { "state": "translated", "value": "Pokaż w Finderze" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Mostrar no Finder" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Mostrar no Finder" } },
"ru": { "stringUnit": { "state": "translated", "value": "Показать в Finder" } },
"sv": { "stringUnit": { "state": "translated", "value": "Visa i Finder" } },
"th": { "stringUnit": { "state": "translated", "value": "แสดงใน Finder" } },
"tr": { "stringUnit": { "state": "translated", "value": "Finder'da Göster" } },
"uk": { "stringUnit": { "state": "translated", "value": "Показати у Finder" } },
"vi": { "stringUnit": { "state": "translated", "value": "Hiện trong Finder" } }
}
},
"jots.rename.error.generic": {
"comment": "The error message displayed when a Jot couldn't be renamed.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Could not rename \"%@\"" } },
"de": { "stringUnit": { "state": "translated", "value": "\"%@\" konnte nicht umbenannt werden" } },
"af": { "stringUnit": { "state": "translated", "value": "Kon \"%@\" nie hernoem nie" } },
"ar": { "stringUnit": { "state": "translated", "value": "تعذّر إعادة تسمية \"%@\"" } },
"es": { "stringUnit": { "state": "translated", "value": "No se pudo renombrar \"%@\"" } },
"fr": { "stringUnit": { "state": "translated", "value": "Impossible de renommer « %@ »" } },
"hi": { "stringUnit": { "state": "translated", "value": "\"%@\" का नाम नहीं बदला जा सका" } },
"id": { "stringUnit": { "state": "translated", "value": "Tidak dapat mengganti nama \"%@\"" } },
"it": { "stringUnit": { "state": "translated", "value": "Impossibile rinominare «%@»" } },
"ja": { "stringUnit": { "state": "translated", "value": "「%@」の名前を変更できませんでした" } },
"ko": { "stringUnit": { "state": "translated", "value": "\"%@\"의 이름을 변경할 수 없음" } },
"ms": { "stringUnit": { "state": "translated", "value": "Tidak dapat menamakan semula \"%@\"" } },
"nl": { "stringUnit": { "state": "translated", "value": "Kan \"%@\" niet hernoemen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Nie można zmienić nazwy \"%@\"" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Não foi possível renomear \"%@\"" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Não foi possível renomear \"%@\"" } },
"ru": { "stringUnit": { "state": "translated", "value": "Не удалось переименовать «%@»" } },
"sv": { "stringUnit": { "state": "translated", "value": "Kunde inte byta namn på \"%@\"" } },
"th": { "stringUnit": { "state": "translated", "value": "ไม่สามารถเปลี่ยนชื่อ \"%@\" ได้" } },
"tr": { "stringUnit": { "state": "translated", "value": "\"%@\" yeniden adlandırılamadı" } },
"uk": { "stringUnit": { "state": "translated", "value": "Не вдалося перейменувати «%@»" } },
"vi": { "stringUnit": { "state": "translated", "value": "Không thể đổi tên \"%@\"" } }
}
},
"jots.share.error.generic": {
"comment": "The error message displayed when a Jot couldn't be shared.",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Could not share \"%@\"" } },
"de": { "stringUnit": { "state": "translated", "value": "\"%@\" konnte nicht geteilt werden" } },
"af": { "stringUnit": { "state": "translated", "value": "Kon \"%@\" nie deel nie" } },
"ar": { "stringUnit": { "state": "translated", "value": "تعذّر مشاركة \"%@\"" } },
"es": { "stringUnit": { "state": "translated", "value": "No se pudo compartir \"%@\"" } },
"fr": { "stringUnit": { "state": "translated", "value": "Impossible de partager « %@ »" } },
"hi": { "stringUnit": { "state": "translated", "value": "\"%@\" को साझा नहीं किया जा सका" } },
"id": { "stringUnit": { "state": "translated", "value": "Tidak dapat membagikan \"%@\"" } },
"it": { "stringUnit": { "state": "translated", "value": "Impossibile condividere «%@»" } },
"ja": { "stringUnit": { "state": "translated", "value": "「%@」を共有できませんでした" } },
"ko": { "stringUnit": { "state": "translated", "value": "\"%@\"을(를) 공유할 수 없음" } },
"ms": { "stringUnit": { "state": "translated", "value": "Tidak dapat berkongsi \"%@\"" } },
"nl": { "stringUnit": { "state": "translated", "value": "Kan \"%@\" niet delen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Nie można udostępnić \"%@\"" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Não foi possível compartilhar \"%@\"" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Não foi possível partilhar \"%@\"" } },
"ru": { "stringUnit": { "state": "translated", "value": "Не удалось поделиться «%@»" } },
"sv": { "stringUnit": { "state": "translated", "value": "Kunde inte dela \"%@\"" } },
"th": { "stringUnit": { "state": "translated", "value": "ไม่สามารถแชร์ \"%@\" ได้" } },
"tr": { "stringUnit": { "state": "translated", "value": "\"%@\" paylaşılamadı" } },
"uk": { "stringUnit": { "state": "translated", "value": "Не вдалося поділитися «%@»" } },
"vi": { "stringUnit": { "state": "translated", "value": "Không thể chia sẻ \"%@\"" } }
}
},
"jots.rename.title": {
"comment": "Title of the Rename Jot alert",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Rename Jot" } },
"de": { "stringUnit": { "state": "translated", "value": "Jot umbenennen" } },
"af": { "stringUnit": { "state": "translated", "value": "Hernoem Jot" } },
"ar": { "stringUnit": { "state": "translated", "value": "إعادة تسمية Jot" } },
"es": { "stringUnit": { "state": "translated", "value": "Renombrar Jot" } },
"fr": { "stringUnit": { "state": "translated", "value": "Renommer le Jot" } },
"hi": { "stringUnit": { "state": "translated", "value": "Jot का नाम बदलें" } },
"id": { "stringUnit": { "state": "translated", "value": "Ganti Nama Jot" } },
"it": { "stringUnit": { "state": "translated", "value": "Rinomina Jot" } },
"ja": { "stringUnit": { "state": "translated", "value": "Jotの名前を変更" } },
"ko": { "stringUnit": { "state": "translated", "value": "Jot 이름 변경" } },
"ms": { "stringUnit": { "state": "translated", "value": "Namakan Semula Jot" } },
"nl": { "stringUnit": { "state": "translated", "value": "Jot hernoemen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Zmień nazwę Jot" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Renomear Jot" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Renomear Jot" } },
"ru": { "stringUnit": { "state": "translated", "value": "Переименовать Jot" } },
"sv": { "stringUnit": { "state": "translated", "value": "Byt namn på Jot" } },
"th": { "stringUnit": { "state": "translated", "value": "เปลี่ยนชื่อ Jot" } },
"tr": { "stringUnit": { "state": "translated", "value": "Jot'u Yeniden Adlandır" } },
"uk": { "stringUnit": { "state": "translated", "value": "Перейменувати Jot" } },
"vi": { "stringUnit": { "state": "translated", "value": "Đổi tên Jot" } }
}
},
"settings.appearance.dark": {
"comment": "Appearance option label for dark mode",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Dark" } },
"de": { "stringUnit": { "state": "translated", "value": "Dunkel" } },
"af": { "stringUnit": { "state": "translated", "value": "Donker" } },
"ar": { "stringUnit": { "state": "translated", "value": "داكن" } },
"es": { "stringUnit": { "state": "translated", "value": "Oscuro" } },
"fr": { "stringUnit": { "state": "translated", "value": "Sombre" } },
"hi": { "stringUnit": { "state": "translated", "value": "डार्क" } },
"id": { "stringUnit": { "state": "translated", "value": "Gelap" } },
"it": { "stringUnit": { "state": "translated", "value": "Scuro" } },
"ja": { "stringUnit": { "state": "translated", "value": "ダーク" } },
"ko": { "stringUnit": { "state": "translated", "value": "어둡게" } },
"ms": { "stringUnit": { "state": "translated", "value": "Gelap" } },
"nl": { "stringUnit": { "state": "translated", "value": "Donker" } },
"pl": { "stringUnit": { "state": "translated", "value": "Ciemny" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Escuro" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Escuro" } },
"ru": { "stringUnit": { "state": "translated", "value": "Тёмная" } },
"sv": { "stringUnit": { "state": "translated", "value": "Mörkt" } },
"th": { "stringUnit": { "state": "translated", "value": "มืด" } },
"tr": { "stringUnit": { "state": "translated", "value": "Koyu" } },
"uk": { "stringUnit": { "state": "translated", "value": "Темна" } },
"vi": { "stringUnit": { "state": "translated", "value": "Tối" } }
}
},
"settings.appearance.light": {
"comment": "Appearance option label for light mode",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Light" } },
"de": { "stringUnit": { "state": "translated", "value": "Hell" } },
"af": { "stringUnit": { "state": "translated", "value": "Lig" } },
"ar": { "stringUnit": { "state": "translated", "value": "فاتح" } },
"es": { "stringUnit": { "state": "translated", "value": "Claro" } },
"fr": { "stringUnit": { "state": "translated", "value": "Clair" } },
"hi": { "stringUnit": { "state": "translated", "value": "लाइट" } },
"id": { "stringUnit": { "state": "translated", "value": "Terang" } },
"it": { "stringUnit": { "state": "translated", "value": "Chiaro" } },
"ja": { "stringUnit": { "state": "translated", "value": "ライト" } },
"ko": { "stringUnit": { "state": "translated", "value": "밝게" } },
"ms": { "stringUnit": { "state": "translated", "value": "Cerah" } },
"nl": { "stringUnit": { "state": "translated", "value": "Licht" } },
"pl": { "stringUnit": { "state": "translated", "value": "Jasny" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Claro" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Claro" } },
"ru": { "stringUnit": { "state": "translated", "value": "Светлая" } },
"sv": { "stringUnit": { "state": "translated", "value": "Ljust" } },
"th": { "stringUnit": { "state": "translated", "value": "สว่าง" } },
"tr": { "stringUnit": { "state": "translated", "value": "Açık" } },
"uk": { "stringUnit": { "state": "translated", "value": "Світла" } },
"vi": { "stringUnit": { "state": "translated", "value": "Sáng" } }
}
},
"settings.appearance.system": {
"comment": "Appearance option label for following the system setting",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "System" } },
"de": { "stringUnit": { "state": "translated", "value": "System" } },
"af": { "stringUnit": { "state": "translated", "value": "Stelsel" } },
"ar": { "stringUnit": { "state": "translated", "value": "النظام" } },
"es": { "stringUnit": { "state": "translated", "value": "Sistema" } },
"fr": { "stringUnit": { "state": "translated", "value": "Système" } },
"hi": { "stringUnit": { "state": "translated", "value": "सिस्टम" } },
"id": { "stringUnit": { "state": "translated", "value": "Sistem" } },
"it": { "stringUnit": { "state": "translated", "value": "Sistema" } },
"ja": { "stringUnit": { "state": "translated", "value": "システム" } },
"ko": { "stringUnit": { "state": "translated", "value": "시스템" } },
"ms": { "stringUnit": { "state": "translated", "value": "Sistem" } },
"nl": { "stringUnit": { "state": "translated", "value": "Systeem" } },
"pl": { "stringUnit": { "state": "translated", "value": "Systemowy" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Sistema" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Sistema" } },
"ru": { "stringUnit": { "state": "translated", "value": "Системная" } },
"sv": { "stringUnit": { "state": "translated", "value": "System" } },
"th": { "stringUnit": { "state": "translated", "value": "ระบบ" } },
"tr": { "stringUnit": { "state": "translated", "value": "Sistem" } },
"uk": { "stringUnit": { "state": "translated", "value": "Системна" } },
"vi": { "stringUnit": { "state": "translated", "value": "Hệ thống" } }
}
},
"settings.appearance.title": {
"comment": "Label for the appearance dropdown in Settings",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Appearance" } },
"de": { "stringUnit": { "state": "translated", "value": "Erscheinungsbild" } },
"af": { "stringUnit": { "state": "translated", "value": "Voorkoms" } },
"ar": { "stringUnit": { "state": "translated", "value": "المظهر" } },
"es": { "stringUnit": { "state": "translated", "value": "Apariencia" } },
"fr": { "stringUnit": { "state": "translated", "value": "Apparence" } },
"hi": { "stringUnit": { "state": "translated", "value": "रूप-रंग" } },
"id": { "stringUnit": { "state": "translated", "value": "Tampilan" } },
"it": { "stringUnit": { "state": "translated", "value": "Aspetto" } },
"ja": { "stringUnit": { "state": "translated", "value": "外観" } },
"ko": { "stringUnit": { "state": "translated", "value": "모양" } },
"ms": { "stringUnit": { "state": "translated", "value": "Penampilan" } },
"nl": { "stringUnit": { "state": "translated", "value": "Weergave" } },
"pl": { "stringUnit": { "state": "translated", "value": "Wygląd" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Aparência" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Aparência" } },
"ru": { "stringUnit": { "state": "translated", "value": "Внешний вид" } },
"sv": { "stringUnit": { "state": "translated", "value": "Utseende" } },
"th": { "stringUnit": { "state": "translated", "value": "ลักษณะที่ปรากฏ" } },
"tr": { "stringUnit": { "state": "translated", "value": "Görünüm" } },
"uk": { "stringUnit": { "state": "translated", "value": "Зовнішній вигляд" } },
"vi": { "stringUnit": { "state": "translated", "value": "Giao diện" } }
}
},
"settings.github.title": {
"comment": "Label for the GitHub external link row in Settings",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Stargaze on GitHub" } },
"de": { "stringUnit": { "state": "translated", "value": "Auf GitHub mit einem Stern markieren" } },
"af": { "stringUnit": { "state": "translated", "value": "Stergaze op GitHub" } },
"ar": { "stringUnit": { "state": "translated", "value": "أضف نجمة على GitHub" } },
"es": { "stringUnit": { "state": "translated", "value": "Dar una estrella en GitHub" } },
"fr": { "stringUnit": { "state": "translated", "value": "Mettre une étoile sur GitHub" } },
"hi": { "stringUnit": { "state": "translated", "value": "GitHub पर स्टार करें" } },
"id": { "stringUnit": { "state": "translated", "value": "Beri bintang di GitHub" } },
"it": { "stringUnit": { "state": "translated", "value": "Metti una stella su GitHub" } },
"ja": { "stringUnit": { "state": "translated", "value": "GitHubでスターをつける" } },
"ko": { "stringUnit": { "state": "translated", "value": "GitHub에서 별표 추가" } },
"ms": { "stringUnit": { "state": "translated", "value": "Beri bintang di GitHub" } },
"nl": { "stringUnit": { "state": "translated", "value": "Ster geven op GitHub" } },
"pl": { "stringUnit": { "state": "translated", "value": "Dodaj gwiazdkę na GitHub" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Dar uma estrela no GitHub" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Dar uma estrela no GitHub" } },
"ru": { "stringUnit": { "state": "translated", "value": "Поставить звезду на GitHub" } },
"sv": { "stringUnit": { "state": "translated", "value": "Stjärnmärk på GitHub" } },
"th": { "stringUnit": { "state": "translated", "value": "กดดาวบน GitHub" } },
"tr": { "stringUnit": { "state": "translated", "value": "GitHub'da yıldız ver" } },
"uk": { "stringUnit": { "state": "translated", "value": "Поставити зірку на GitHub" } },
"vi": { "stringUnit": { "state": "translated", "value": "Gắn sao trên GitHub" } }
}
},
"settings.icloud.info": {
"comment": "Caption text below the iCloud Synchronization row in Settings",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Learn how to enable iCloud on this device." } },
"de": { "stringUnit": { "state": "translated", "value": "Erfahre, wie du iCloud auf diesem Gerät aktivierst." } },
"af": { "stringUnit": { "state": "translated", "value": "Leer hoe om iCloud op hierdie toestel te aktiveer." } },
"ar": { "stringUnit": { "state": "translated", "value": "تعرّف على كيفية تفعيل iCloud على هذا الجهاز." } },
"es": { "stringUnit": { "state": "translated", "value": "Aprende cómo activar iCloud en este dispositivo." } },
"fr": { "stringUnit": { "state": "translated", "value": "Découvrez comment activer iCloud sur cet appareil." } },
"hi": { "stringUnit": { "state": "translated", "value": "इस डिवाइस पर iCloud कैसे सक्षम करें, यह जानें।" } },
"id": { "stringUnit": { "state": "translated", "value": "Pelajari cara mengaktifkan iCloud di perangkat ini." } },
"it": { "stringUnit": { "state": "translated", "value": "Scopri come abilitare iCloud su questo dispositivo." } },
"ja": { "stringUnit": { "state": "translated", "value": "このデバイスでiCloudを有効にする方法を確認する。" } },
"ko": { "stringUnit": { "state": "translated", "value": "이 기기에서 iCloud를 활성화하는 방법을 알아보세요." } },
"ms": { "stringUnit": { "state": "translated", "value": "Ketahui cara mengaktifkan iCloud pada peranti ini." } },
"nl": { "stringUnit": { "state": "translated", "value": "Lees hoe je iCloud inschakelt op dit apparaat." } },
"pl": { "stringUnit": { "state": "translated", "value": "Dowiedz się, jak włączyć iCloud na tym urządzeniu." } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Saiba como ativar o iCloud neste dispositivo." } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Saiba como ativar o iCloud neste dispositivo." } },
"ru": { "stringUnit": { "state": "translated", "value": "Узнайте, как включить iCloud на этом устройстве." } },
"sv": { "stringUnit": { "state": "translated", "value": "Lär dig hur du aktiverar iCloud på den här enheten." } },
"th": { "stringUnit": { "state": "translated", "value": "เรียนรู้วิธีเปิดใช้งาน iCloud บนอุปกรณ์นี้" } },
"tr": { "stringUnit": { "state": "translated", "value": "Bu cihazda iCloud'u nasıl etkinleştireceğinizi öğrenin." } },
"uk": { "stringUnit": { "state": "translated", "value": "Дізнайтеся, як увімкнути iCloud на цьому пристрої." } },
"vi": { "stringUnit": { "state": "translated", "value": "Tìm hiểu cách bật iCloud trên thiết bị này." } }
}
},
"settings.icloud.title": {
"comment": "Label for the iCloud synchronization row in Settings",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "iCloud Synchronization" } },
"de": { "stringUnit": { "state": "translated", "value": "iCloud-Synchronisierung" } },
"af": { "stringUnit": { "state": "translated", "value": "iCloud-sinkronisasie" } },
"ar": { "stringUnit": { "state": "translated", "value": "مزامنة iCloud" } },
"es": { "stringUnit": { "state": "translated", "value": "Sincronización con iCloud" } },
"fr": { "stringUnit": { "state": "translated", "value": "Synchronisation iCloud" } },
"hi": { "stringUnit": { "state": "translated", "value": "iCloud सिंक्रनाइज़ेशन" } },
"id": { "stringUnit": { "state": "translated", "value": "Sinkronisasi iCloud" } },
"it": { "stringUnit": { "state": "translated", "value": "Sincronizzazione iCloud" } },
"ja": { "stringUnit": { "state": "translated", "value": "iCloud同期" } },
"ko": { "stringUnit": { "state": "translated", "value": "iCloud 동기화" } },
"ms": { "stringUnit": { "state": "translated", "value": "Penyegerakan iCloud" } },
"nl": { "stringUnit": { "state": "translated", "value": "iCloud-synchronisatie" } },
"pl": { "stringUnit": { "state": "translated", "value": "Synchronizacja iCloud" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Sincronização com iCloud" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Sincronização com iCloud" } },
"ru": { "stringUnit": { "state": "translated", "value": "Синхронизация iCloud" } },
"sv": { "stringUnit": { "state": "translated", "value": "iCloud-synkronisering" } },
"th": { "stringUnit": { "state": "translated", "value": "การซิงค์ iCloud" } },
"tr": { "stringUnit": { "state": "translated", "value": "iCloud Eşzamanlaması" } },
"uk": { "stringUnit": { "state": "translated", "value": "Синхронізація iCloud" } },
"vi": { "stringUnit": { "state": "translated", "value": "Đồng bộ iCloud" } }
}
},
"settings.title": {
"comment": "Navigation bar title of the Settings screen",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Settings" } },
"de": { "stringUnit": { "state": "translated", "value": "Einstellungen" } },
"af": { "stringUnit": { "state": "translated", "value": "Instellings" } },
"ar": { "stringUnit": { "state": "translated", "value": "الإعدادات" } },
"es": { "stringUnit": { "state": "translated", "value": "Ajustes" } },
"fr": { "stringUnit": { "state": "translated", "value": "Réglages" } },
"hi": { "stringUnit": { "state": "translated", "value": "सेटिंग्स" } },
"id": { "stringUnit": { "state": "translated", "value": "Pengaturan" } },
"it": { "stringUnit": { "state": "translated", "value": "Impostazioni" } },
"ja": { "stringUnit": { "state": "translated", "value": "設定" } },
"ko": { "stringUnit": { "state": "translated", "value": "설정" } },
"ms": { "stringUnit": { "state": "translated", "value": "Tetapan" } },
"nl": { "stringUnit": { "state": "translated", "value": "Instellingen" } },
"pl": { "stringUnit": { "state": "translated", "value": "Ustawienia" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Configurações" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Definições" } },
"ru": { "stringUnit": { "state": "translated", "value": "Настройки" } },
"sv": { "stringUnit": { "state": "translated", "value": "Inställningar" } },
"th": { "stringUnit": { "state": "translated", "value": "การตั้งค่า" } },
"tr": { "stringUnit": { "state": "translated", "value": "Ayarlar" } },
"uk": { "stringUnit": { "state": "translated", "value": "Налаштування" } },
"vi": { "stringUnit": { "state": "translated", "value": "Cài đặt" } }
}
},
"settings.version.title": {
"comment": "Label for the app version row in Settings",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "Version" } },
"de": { "stringUnit": { "state": "translated", "value": "Version" } },
"af": { "stringUnit": { "state": "translated", "value": "Weergawe" } },
"ar": { "stringUnit": { "state": "translated", "value": "الإصدار" } },
"es": { "stringUnit": { "state": "translated", "value": "Versión" } },
"fr": { "stringUnit": { "state": "translated", "value": "Version" } },
"hi": { "stringUnit": { "state": "translated", "value": "संस्करण" } },
"id": { "stringUnit": { "state": "translated", "value": "Versi" } },
"it": { "stringUnit": { "state": "translated", "value": "Versione" } },
"ja": { "stringUnit": { "state": "translated", "value": "バージョン" } },
"ko": { "stringUnit": { "state": "translated", "value": "버전" } },
"ms": { "stringUnit": { "state": "translated", "value": "Versi" } },
"nl": { "stringUnit": { "state": "translated", "value": "Versie" } },
"pl": { "stringUnit": { "state": "translated", "value": "Wersja" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "Versão" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "Versão" } },
"ru": { "stringUnit": { "state": "translated", "value": "Версия" } },
"sv": { "stringUnit": { "state": "translated", "value": "Version" } },
"th": { "stringUnit": { "state": "translated", "value": "เวอร์ชัน" } },
"tr": { "stringUnit": { "state": "translated", "value": "Sürüm" } },
"uk": { "stringUnit": { "state": "translated", "value": "Версія" } },
"vi": { "stringUnit": { "state": "translated", "value": "Phiên bản" } }
}
},
"share.format.jpg": {
"comment": "Share format option label for JPEG",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "JPG" } },
"de": { "stringUnit": { "state": "translated", "value": "JPG" } },
"af": { "stringUnit": { "state": "translated", "value": "JPG" } },
"ar": { "stringUnit": { "state": "translated", "value": "JPG" } },
"es": { "stringUnit": { "state": "translated", "value": "JPG" } },
"fr": { "stringUnit": { "state": "translated", "value": "JPG" } },
"hi": { "stringUnit": { "state": "translated", "value": "JPG" } },
"id": { "stringUnit": { "state": "translated", "value": "JPG" } },
"it": { "stringUnit": { "state": "translated", "value": "JPG" } },
"ja": { "stringUnit": { "state": "translated", "value": "JPG" } },
"ko": { "stringUnit": { "state": "translated", "value": "JPG" } },
"ms": { "stringUnit": { "state": "translated", "value": "JPG" } },
"nl": { "stringUnit": { "state": "translated", "value": "JPG" } },
"pl": { "stringUnit": { "state": "translated", "value": "JPG" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "JPG" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "JPG" } },
"ru": { "stringUnit": { "state": "translated", "value": "JPG" } },
"sv": { "stringUnit": { "state": "translated", "value": "JPG" } },
"th": { "stringUnit": { "state": "translated", "value": "JPG" } },
"tr": { "stringUnit": { "state": "translated", "value": "JPG" } },
"uk": { "stringUnit": { "state": "translated", "value": "JPG" } },
"vi": { "stringUnit": { "state": "translated", "value": "JPG" } }
}
},
"share.format.pdf": {
"comment": "Share format option label for PDF",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "PDF" } },
"de": { "stringUnit": { "state": "translated", "value": "PDF" } },
"af": { "stringUnit": { "state": "translated", "value": "PDF" } },
"ar": { "stringUnit": { "state": "translated", "value": "PDF" } },
"es": { "stringUnit": { "state": "translated", "value": "PDF" } },
"fr": { "stringUnit": { "state": "translated", "value": "PDF" } },
"hi": { "stringUnit": { "state": "translated", "value": "PDF" } },
"id": { "stringUnit": { "state": "translated", "value": "PDF" } },
"it": { "stringUnit": { "state": "translated", "value": "PDF" } },
"ja": { "stringUnit": { "state": "translated", "value": "PDF" } },
"ko": { "stringUnit": { "state": "translated", "value": "PDF" } },
"ms": { "stringUnit": { "state": "translated", "value": "PDF" } },
"nl": { "stringUnit": { "state": "translated", "value": "PDF" } },
"pl": { "stringUnit": { "state": "translated", "value": "PDF" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "PDF" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "PDF" } },
"ru": { "stringUnit": { "state": "translated", "value": "PDF" } },
"sv": { "stringUnit": { "state": "translated", "value": "PDF" } },
"th": { "stringUnit": { "state": "translated", "value": "PDF" } },
"tr": { "stringUnit": { "state": "translated", "value": "PDF" } },
"uk": { "stringUnit": { "state": "translated", "value": "PDF" } },
"vi": { "stringUnit": { "state": "translated", "value": "PDF" } }
}
},
"share.format.png": {
"comment": "Share format option label for PNG",
"extractionState": "manual",
"localizations": {
"en": { "stringUnit": { "state": "translated", "value": "PNG" } },
"de": { "stringUnit": { "state": "translated", "value": "PNG" } },
"af": { "stringUnit": { "state": "translated", "value": "PNG" } },
"ar": { "stringUnit": { "state": "translated", "value": "PNG" } },
"es": { "stringUnit": { "state": "translated", "value": "PNG" } },
"fr": { "stringUnit": { "state": "translated", "value": "PNG" } },
"hi": { "stringUnit": { "state": "translated", "value": "PNG" } },
"id": { "stringUnit": { "state": "translated", "value": "PNG" } },
"it": { "stringUnit": { "state": "translated", "value": "PNG" } },
"ja": { "stringUnit": { "state": "translated", "value": "PNG" } },
"ko": { "stringUnit": { "state": "translated", "value": "PNG" } },
"ms": { "stringUnit": { "state": "translated", "value": "PNG" } },
"nl": { "stringUnit": { "state": "translated", "value": "PNG" } },
"pl": { "stringUnit": { "state": "translated", "value": "PNG" } },
"pt-BR": { "stringUnit": { "state": "translated", "value": "PNG" } },
"pt-PT": { "stringUnit": { "state": "translated", "value": "PNG" } },
"ru": { "stringUnit": { "state": "translated", "value": "PNG" } },
"sv": { "stringUnit": { "state": "translated", "value": "PNG" } },
"th": { "stringUnit": { "state": "translated", "value": "PNG" } },
"tr": { "stringUnit": { "state": "translated", "value": "PNG" } },
"uk": { "stringUnit": { "state": "translated", "value": "PNG" } },
"vi": { "stringUnit": { "state": "translated", "value": "PNG" } }
}
}
},
"version": "1.0"
}
================================================
FILE: Resources/PrivacyInfo.xcprivacy
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>CA92.1</string>
</array>
</dict>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>C617.1</string>
</array>
</dict>
</array>
</dict>
</plist>
================================================
FILE: SECURITY_POLICY.md
================================================
# Security Policy
## Reporting a Vulnerability
If you believe you have found a security vulnerability in Jottre, please report it privately. **Do not open a public GitHub issue.**
Use [GitHub's private vulnerability reporting](https://github.com/antonlorani/jottre/security/advisories/new) to submit your report. This keeps the details confidential between you and the maintainer until a fix is available.
When reporting, please include:
- A description of the vulnerability and its potential impact.
- Steps to reproduce the issue, including any proof-of-concept code if applicable.
- The affected app version, platform (iOS, iPadOS, macOS), and platform version.
- Any suggested mitigations or fixes, if you have them.
## What to expect
- You will receive an acknowledgement of your report as soon as possible.
- The maintainer will investigate and keep you informed of the progress.
- Once a fix is ready, it will be released and you will be credited in the advisory unless you prefer to remain anonymous.
## Scope
This policy covers the Jottre application and any code in this repository. Vulnerabilities in third-party dependencies should be reported to their respective maintainers, but you are welcome to also notify us so we can update or mitigate.
## Out of scope
- Issues that require physical access to an unlocked device.
- Social engineering of users or maintainers.
- Vulnerabilities in outdated app versions that have already been fixed in a newer release.
Thank you for helping keep Jottre and its users safe.
================================================
FILE: Sources/AppDelegate.swift
================================================
/*
Jottre: Minimalistic jotting for iPhone, iPad and Mac.
Copyright (C) 2021-2026 Anton Lorani
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import UIKit
@main
final class AppDelegate: UIResponder, UIApplicationDelegate {
func application(
_ application: UIApplication,
configurationForConnecting connectingSceneSession: UISceneSession,
options: UIScene.ConnectionOptions
) -> UISceneConfiguration {
UISceneConfiguration(
name: "Default Configuration",
sessionRole: connectingSceneSession.role
)
}
}
================================================
FILE: Sources/ApplicationService.swift
================================================
/*
Jottre: Minimalistic jotting for iPhone, iPad and Mac.
Copyright (C) 2021-2026 Anton Lorani
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import UIKit
@MainActor
protocol ApplicationServiceProtocol: Sendable {
func supportsMultipleScenes() -> Bool
func open(url: URL)
func canOpen(url: URL) -> Bool
}
struct ApplicationService: ApplicationServiceProtocol {
private let application: UIApplication
init(application: UIApplication) {
self.application = application
}
func supportsMultipleScenes() -> Bool {
application.supportsMultipleScenes
}
func open(url: URL) {
application.open(url)
}
func canOpen(url: URL) -> Bool {
application.canOpenURL(url)
}
}
================================================
FILE: Sources/BundleService.swift
================================================
/*
Jottre: Minimalistic jotting for iPhone, iPad and Mac.
Copyright (C) 2021-2026 Anton Lorani
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import Foundation
protocol BundleServiceProtocol: Sendable {
func shortVersionString() -> String?
}
struct BundleService: BundleServiceProtocol {
private let bundle: Bundle
init(bundle: Bundle) {
self.bundle = bundle
}
func shortVersionString() -> String? {
bundle.infoDictionary?["CFBundleShortVersionString"] as? String
}
}
================================================
FILE: Sources/CloudMigrationPage/CloudImageCell/CloudImageCell.swift
================================================
/*
Jottre: Minimalistic jotting for iPhone, iPad and Mac.
Copyright (C) 2021-2026 Anton Lorani
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import UIKit
final class CloudImageCell: UICollectionViewCell, PageCell {
static let reuseIdentifier = "CloudImageCell"
private enum Constants {
static let height = CGFloat(80)
}
private let cloudImageView: UIImageView = {
let imageView = UIImageView(image: UIImage(systemName: "checkmark.icloud.fill"))
imageView.translatesAutoresizingMaskIntoConstraints = false
imageView.contentMode = .scaleAspectFit
imageView.clipsToBounds = true
imageView.tintColor = .label
return imageView
}()
override init(frame: CGRect) {
super.init(frame: frame)
setUpViews()
}
@available(*, unavailable)
required init?(coder: NSCoder) {
assertionFailure("\(#function) has not been implemented")
return nil
}
private func setUpViews() {
contentView.addSubview(cloudImageView)
NSLayoutConstraint.activate([
contentView.heightAnchor.constraint(equalToConstant: Constants.height),
cloudImageView.topAnchor.constraint(equalTo: contentView.layoutMarginsGuide.topAnchor),
cloudImageView.leadingAnchor.constraint(equalTo: contentView.layoutMarginsGuide.leadingAnchor),
cloudImageView.bottomAnchor.constraint(equalTo: contentView.layoutMarginsGuide.bottomAnchor),
cloudImageView.trailingAnchor.constraint(equalTo: contentView.layoutMarginsGuide.trailingAnchor),
])
}
func configure(
viewModel: CloudImageCellViewModel
) {
/* no-op */
}
}
================================================
FILE: Sources/CloudMigrationPage/CloudImageCell/CloudImageCellViewModel.swift
================================================
/*
Jottre: Minimalistic jotting for iPhone, iPad and Mac.
Copyright (C) 2021-2026 Anton Lorani
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
final class CloudImageCellViewModel: PageCellViewModel {
func handle(action: PageCellAction) {
/* no-op */
}
}
================================================
FILE: Sources/CloudMigrationPage/CloudImageCell/PageCellItem+cloudImage.swift
================================================
/*
Jottre: Minimalistic jotting for iPhone, iPad and Mac.
Copyright (C) 2021-2026 Anton Lorani
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for mor
gitextract_ecdvzt6x/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── feature_request.yml │ └── workflows/ │ ├── pull_request.yml │ └── push_on_master.yml ├── .gitignore ├── .license_header_template ├── .licenseignore ├── .rubocop.yml ├── .ruby-version ├── .swift-format ├── .xcode-version ├── AppKitPlugin/ │ ├── AppKitPlugin.swift │ └── Info.plist ├── Brewfile ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── PRIVACY_POLICY.md ├── README.md ├── Resources/ │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Localizable.xcstrings │ └── PrivacyInfo.xcprivacy ├── SECURITY_POLICY.md ├── Sources/ │ ├── AppDelegate.swift │ ├── ApplicationService.swift │ ├── BundleService.swift │ ├── CloudMigrationPage/ │ │ ├── CloudImageCell/ │ │ │ ├── CloudImageCell.swift │ │ │ ├── CloudImageCellViewModel.swift │ │ │ └── PageCellItem+cloudImage.swift │ │ ├── CloudMigrationCoordinator.swift │ │ ├── CloudMigrationCoordinatorFactory.swift │ │ ├── CloudMigrationJotBusinessModel.swift │ │ ├── CloudMigrationJotCell/ │ │ │ ├── CloudMigrationJotCell.swift │ │ │ ├── CloudMigrationJotCellViewModel.swift │ │ │ └── PageCellItem+cloudMigrationJot.swift │ │ ├── CloudMigrationRepository.swift │ │ ├── CloudMigrationViewControllerFactory.swift │ │ ├── CloudMigrationViewModel.swift │ │ ├── DefaultsKey+hasDoneCloudMigration.swift │ │ └── DefaultsKey+isICloudEnabled.swift │ ├── Defaults/ │ │ ├── DefaultsContinuationStorage.swift │ │ ├── DefaultsKey.swift │ │ └── DefaultsService.swift │ ├── DesignTokens.swift │ ├── DeviceService.swift │ ├── EditJotPage/ │ │ ├── EditJotCoordinator.swift │ │ ├── EditJotCoordinatorFactory.swift │ │ ├── EditJotRepository.swift │ │ ├── EditJotURL.swift │ │ ├── EditJotViewController.swift │ │ ├── EditJotViewControllerFactory.swift │ │ └── EditJotViewModel.swift │ ├── EnableCloudPage/ │ │ ├── EnableCloudCoordinator.swift │ │ ├── EnableCloudCoordinatorFactory.swift │ │ ├── EnableCloudViewControllerFactory.swift │ │ ├── EnableCloudViewModel.swift │ │ └── FeatureRow/ │ │ ├── FeatureRowCell.swift │ │ ├── FeatureRowCellViewModel.swift │ │ └── PageCellItem+featureRow.swift │ ├── FileConflictService.swift │ ├── FileService/ │ │ ├── FileServiceProtocol.swift │ │ ├── LocalFileService.swift │ │ ├── UbiquitousFileService.swift │ │ └── UbiquitousInfo.swift │ ├── InfoAlertCoordinator.swift │ ├── Jot/ │ │ ├── Jot.swift │ │ ├── JotFile.swift │ │ ├── JotFileService.swift │ │ └── JotFileVersion.swift │ ├── JotConflictPage/ │ │ ├── JotConflictCell/ │ │ │ ├── JotConflictBusinessModel.swift │ │ │ ├── JotConflictCell.swift │ │ │ ├── JotConflictCellViewModel.swift │ │ │ └── PageCellItem+jotConflict.swift │ │ ├── JotConflictCoordinator.swift │ │ ├── JotConflictCoordinatorFactory.swift │ │ ├── JotConflictRepository.swift │ │ ├── JotConflictResult.swift │ │ ├── JotConflictViewControllerFactory.swift │ │ ├── JotConflictViewModel.swift │ │ └── JotFileConflictService.swift │ ├── JotFilePreview/ │ │ ├── CachedJotFilePreviewImageService.swift │ │ ├── JotFilePreviewImageService.swift │ │ └── JotFilePreviewImageServiceProtocol.swift │ ├── JotsPage/ │ │ ├── CreateJot/ │ │ │ ├── CreateJotCoordinator.swift │ │ │ ├── CreateJotCoordinatorFactory.swift │ │ │ └── CreateJotRepository.swift │ │ ├── DeleteJot/ │ │ │ ├── DeleteJotCoordinator.swift │ │ │ ├── DeleteJotCoordinatorFactory.swift │ │ │ └── DeleteJotRepository.swift │ │ ├── EmptyStateCell/ │ │ │ ├── EmptyStateCell.swift │ │ │ ├── EmptyStateViewModel.swift │ │ │ └── PageCellItem+jotsEmptyState.swift │ │ ├── JotCell/ │ │ │ ├── JotBusinessModel.swift │ │ │ ├── JotCell.swift │ │ │ ├── JotCellViewModel.swift │ │ │ └── PageCellItem+jot.swift │ │ ├── JotMenuConfiguration.swift │ │ ├── JotMenuConfigurationFactory.swift │ │ ├── JotsCoordinator.swift │ │ ├── JotsCoordinatorFactory.swift │ │ ├── JotsPageURL.swift │ │ ├── JotsRepository.swift │ │ ├── JotsViewControllerFactory.swift │ │ ├── JotsViewModel.swift │ │ ├── RenameJot/ │ │ │ ├── RenameJotCoordinator.swift │ │ │ ├── RenameJotCoordinatorFactory.swift │ │ │ └── RenameJotRepository.swift │ │ ├── ShareJot/ │ │ │ ├── ShareJotCoordinator.swift │ │ │ ├── ShareJotCoordinatorFactory.swift │ │ │ └── ShareJotRepository.swift │ │ └── UIMenu+makeJotMenuConfiguration.swift │ ├── L10n.swift │ ├── MacCatalystAppKitPluginService.swift │ ├── Navigation/ │ │ ├── Coordinator.swift │ │ ├── Navigation.swift │ │ ├── NavigationCoordinator.swift │ │ └── URLConvertible.swift │ ├── PageViewController/ │ │ ├── Cell/ │ │ │ ├── PageCell.swift │ │ │ ├── PageCellAction.swift │ │ │ ├── PageCellItem.swift │ │ │ ├── PageCellSizingStrategy.swift │ │ │ └── PageCellViewModel.swift │ │ ├── PageCallToActionView.swift │ │ ├── PageHeader/ │ │ │ ├── PageCellItem+pageHeader.swift │ │ │ ├── PageHeaderCell.swift │ │ │ └── PageHeaderViewModel.swift │ │ ├── PageNavigationItem.swift │ │ ├── PageNavigationSymbolBarButtonItemFactory.swift │ │ ├── PageNavigationTextBarButtonItemFactory.swift │ │ ├── PageViewController.swift │ │ └── PageViewModel.swift │ ├── RevealFile/ │ │ ├── RevealFileCoordinator.swift │ │ ├── RevealFileCoordinatorFactory.swift │ │ └── RevealFileURL.swift │ ├── RootCoordinator.swift │ ├── RootCoordinatorFactory.swift │ ├── SceneCoordinator.swift │ ├── SceneDelegate.swift │ ├── SettingsPage/ │ │ ├── DefaultsKey+userInterfaceStyle.swift │ │ ├── DropDownCell/ │ │ │ ├── PageCellItem+settingsDropdown.swift │ │ │ ├── SettingsDropdownBusinessModel.swift │ │ │ ├── SettingsDropdownCell.swift │ │ │ └── SettingsDropdownCellViewModel.swift │ │ ├── EnableICloudSupportURL.swift │ │ ├── ExternalLinkCell/ │ │ │ ├── PageCellItem+settingsExternalLink.swift │ │ │ ├── SettingsExternalLinkBusinessModel.swift │ │ │ ├── SettingsExternalLinkCell.swift │ │ │ └── SettingsExternalLinkCellViewModel.swift │ │ ├── InfoCell/ │ │ │ ├── PageCellItem+settingsInfo.swift │ │ │ ├── SettingsInfoBusinessModel.swift │ │ │ ├── SettingsInfoCell.swift │ │ │ └── SettingsInfoCellViewModel.swift │ │ ├── JottreGithubURL.swift │ │ ├── SettingsCell/ │ │ │ └── SettingsCell.swift │ │ ├── SettingsCoordinator.swift │ │ ├── SettingsCoordinatorFactory.swift │ │ ├── SettingsRepository.swift │ │ ├── SettingsViewControllerFactory.swift │ │ ├── SettingsViewModel.swift │ │ └── ToggleCell/ │ │ ├── PageCellItem+settingsToggle.swift │ │ ├── SettingsToggleBusinessModel.swift │ │ ├── SettingsToggleCell.swift │ │ └── SettingsToggleCellViewModel.swift │ └── Utilities/ │ ├── Array+safeIndex.swift │ ├── AsyncSequence+toAsyncThrowingStream.swift │ ├── AsyncStream+debounce.swift │ ├── LoggerProtocol.swift │ ├── NSLayoutConstraint+withPriority.swift │ ├── UIColor+adaptiveBlackWhite.swift │ ├── UIFont+systemStyle.swift │ └── UITraitCollection+hasRenderingChange.swift ├── Tests/ │ ├── CloudMigrationPage/ │ │ ├── CloudImageCellViewModelTests.swift │ │ ├── CloudMigrationCoordinatorTests.swift │ │ ├── CloudMigrationJotBusinessModelTests.swift │ │ ├── CloudMigrationJotCellViewModelTests.swift │ │ ├── CloudMigrationRepositoryTests.swift │ │ └── CloudMigrationViewModelTests.swift │ ├── Defaults/ │ │ ├── DefaultsContinuationStorageTests.swift │ │ ├── DefaultsKeyTests.swift │ │ └── DefaultsServiceTests.swift │ ├── EditJotPage/ │ │ ├── EditJotCoordinatorTests.swift │ │ ├── EditJotRepositoryTests.swift │ │ └── EditJotViewModelTests.swift │ ├── EnableCloudPage/ │ │ ├── EnableCloudCoordinatorTests.swift │ │ ├── EnableCloudViewModelTests.swift │ │ └── FeatureRowCellViewModelTests.swift │ ├── FileService/ │ │ ├── LocalFileServiceTests.swift │ │ └── UbiquitousInfoTests.swift │ ├── Helpers/ │ │ ├── Navigation+test.swift │ │ ├── UIAlertAction+invoke.swift │ │ └── URL+staticString.swift │ ├── Jot/ │ │ ├── JotFileServiceDocumentsDirectoryContentsTests.swift │ │ ├── JotFileServiceTests.swift │ │ └── JotFileTests.swift │ ├── JotConflictPage/ │ │ ├── JotConflictBusinessModelTests.swift │ │ ├── JotConflictCellViewModelTests.swift │ │ ├── JotConflictCoordinatorTests.swift │ │ ├── JotConflictRepositoryTests.swift │ │ ├── JotConflictViewModelTests.swift │ │ └── JotFileConflictServiceTests.swift │ ├── JotFilePreview/ │ │ └── CachedJotFilePreviewImageServiceTests.swift │ ├── JotsPage/ │ │ ├── CreateJotCoordinatorTests.swift │ │ ├── CreateJotRepositoryTests.swift │ │ ├── DeleteJotCoordinatorTests.swift │ │ ├── DeleteJotRepositoryTests.swift │ │ ├── EmptyStateCellViewModelTests.swift │ │ ├── JotBusinessModelTests.swift │ │ ├── JotCellViewModelTests.swift │ │ ├── JotMenuConfigurationFactoryTests.swift │ │ ├── JotsCoordinatorTests.swift │ │ ├── JotsRepositoryTests.swift │ │ ├── JotsViewModelTests.swift │ │ ├── RenameJotCoordinatorTests.swift │ │ ├── RenameJotRepositoryTests.swift │ │ ├── ShareJotCoordinatorTests.swift │ │ └── ShareJotRepositoryTests.swift │ ├── Mocks/ │ │ ├── ApplicationServiceMock.swift │ │ ├── BundleServiceMock.swift │ │ ├── CloudMigrationCoordinatorMock.swift │ │ ├── CloudMigrationRepositoryMock.swift │ │ ├── CloudMigrationViewControllerFactoryMock.swift │ │ ├── CoordinatorFactoryMocks.swift │ │ ├── CoordinatorMock.swift │ │ ├── CreateJotRepositoryMock.swift │ │ ├── DefaultsServiceMock.swift │ │ ├── DeleteJotRepositoryMock.swift │ │ ├── DeviceServiceMock.swift │ │ ├── EditJotCoordinatorMock.swift │ │ ├── EditJotRepositoryMock.swift │ │ ├── EditJotViewControllerFactoryMock.swift │ │ ├── EnableCloudCoordinatorMock.swift │ │ ├── EnableCloudViewControllerFactoryMock.swift │ │ ├── FileConflictServiceMock.swift │ │ ├── FileServiceMock.swift │ │ ├── JotConflictCoordinatorMock.swift │ │ ├── JotConflictRepositoryMock.swift │ │ ├── JotConflictViewControllerFactoryMock.swift │ │ ├── JotFileConflictServiceMock.swift │ │ ├── JotFilePreviewImageServiceMock.swift │ │ ├── JotFileServiceMock.swift │ │ ├── JotsCoordinatorMock.swift │ │ ├── JotsRepositoryMock.swift │ │ ├── JotsViewControllerFactoryMock.swift │ │ ├── LoggerMock.swift │ │ ├── PageCoordinatorFactoryMocks.swift │ │ ├── RenameJotRepositoryMock.swift │ │ ├── SettingsCoordinatorMock.swift │ │ ├── SettingsRepositoryMock.swift │ │ ├── SettingsViewControllerFactoryMock.swift │ │ └── ShareJotRepositoryMock.swift │ ├── Navigation/ │ │ ├── EditJotURLTests.swift │ │ ├── EnableICloudSupportURLTests.swift │ │ ├── JotsPageURLTests.swift │ │ ├── JottreGithubURLTests.swift │ │ └── RevealFileURLTests.swift │ ├── PageViewController/ │ │ ├── IOS18SymbolBarButtonItemFactoryTests.swift │ │ ├── IOS18TextBarButtonItemFactoryTests.swift │ │ ├── PageCellSizingStrategyTests.swift │ │ └── PageHeaderCellViewModelTests.swift │ ├── Resources/ │ │ └── Calculator Pro.jot │ ├── RevealFile/ │ │ └── RevealFileCoordinatorTests.swift │ ├── SettingsPage/ │ │ ├── SettingsCoordinatorTests.swift │ │ ├── SettingsDropdownCellViewModelTests.swift │ │ ├── SettingsExternalLinkCellViewModelTests.swift │ │ ├── SettingsInfoCellViewModelTests.swift │ │ ├── SettingsRepositoryTests.swift │ │ ├── SettingsToggleCellViewModelTests.swift │ │ └── SettingsViewModelTests.swift │ └── Utilities/ │ ├── Array+safeIndexTests.swift │ ├── AsyncSequenceDebounceTests.swift │ ├── AsyncSequenceToAsyncThrowingStreamTests.swift │ ├── NSLayoutConstraintWithPriorityTests.swift │ ├── UIColorAdaptiveBlackWhiteTests.swift │ ├── UIFontPreferredFontTests.swift │ └── UITraitCollectionHasRenderingChangeTests.swift ├── fastlane/ │ ├── .gitignore │ ├── Appfile │ ├── Fastfile │ ├── Matchfile │ ├── README.md │ ├── appstore_metadata.rb │ ├── appstoreconnect/ │ │ ├── metadata.json │ │ └── screenshots/ │ │ └── .gitignore │ ├── export_screenshots.rb │ └── versioning.rb ├── hooks/ │ ├── install_hooks.sh │ └── pre-commit └── project.yml
SYMBOL INDEX (13 symbols across 3 files)
FILE: fastlane/appstore_metadata.rb
type AppStoreMetadata (line 22) | module AppStoreMetadata
function stage (line 41) | def self.stage(platform:, output_dir:)
function load_metadata (line 62) | def self.load_metadata
function write_metadata (line 68) | def self.write_metadata(locale_data, dir)
function copy_screenshots (line 78) | def self.copy_screenshots(short_locale, platform_key, locale_data, dir)
FILE: fastlane/export_screenshots.rb
type ExportScreenshots (line 26) | module ExportScreenshots
function export (line 31) | def self.export(sketch_file:, output_dir:)
function group_file (line 50) | def self.group_file(file, output_dir:, ui:)
FILE: fastlane/versioning.rb
type Versioning (line 19) | module Versioning
function latest_tag (line 23) | def self.latest_tag
function head_tagged? (line 33) | def self.head_tagged?(tag)
function bump_strategy (line 39) | def self.bump_strategy(since_tag:)
function bump_version (line 61) | def self.bump_version(current:, bump_strategy:)
Condensed preview — 289 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,044K chars).
[
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"chars": 3161,
"preview": "name: Bug Report\ndescription: Report a reproducible bug in Jottre.\nlabels:\n - bug\nbody:\n - type: markdown\n attribut"
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.yml",
"chars": 2134,
"preview": "name: Feature Request\ndescription: Suggest a new feature or improvement for Jottre.\nlabels:\n - feature\nbody:\n - type: "
},
{
"path": ".github/workflows/pull_request.yml",
"chars": 2506,
"preview": "name: Pull Request\n\non:\n pull_request:\n branches:\n - master\n types: [opened, reopened, synchronize, ready_fo"
},
{
"path": ".github/workflows/push_on_master.yml",
"chars": 2784,
"preview": "name: Push on master\n\non:\n push:\n branches:\n - master\n\npermissions:\n contents: write\n\nconcurrency:\n group: ${"
},
{
"path": ".gitignore",
"chars": 71,
"preview": "Jottre.xcodeproj\nJottre.entitlements\nResources/Info.plist\n**/.DS_Store\n"
},
{
"path": ".license_header_template",
"chars": 720,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) YEARS Anton Lorani\n\n This program is free soft"
},
{
"path": ".licenseignore",
"chars": 190,
"preview": ".github\nREADME.md\n.gitignore\n*.md\n*.json\n*.yml\n*.yaml\n*.rb\n*.jpg\nJottre.xcodeproj\nResources\nTests/Resources\nhooks\nfastla"
},
{
"path": ".rubocop.yml",
"chars": 347,
"preview": "Layout/IndentationWidth:\n Width: 4\n\nplugins:\n - rubocop-performance\n\nAllCops:\n NewCops: enable\n TargetRubyVersion: 3"
},
{
"path": ".ruby-version",
"chars": 6,
"preview": "4.0.1\n"
},
{
"path": ".swift-format",
"chars": 2192,
"preview": "{\n \"version\": 1,\n \"indentation\": {\n \"spaces\": 4\n },\n \"tabWidth\": 4,\n \"fileScopedDeclarationPrivacy\": {\n \"acce"
},
{
"path": ".xcode-version",
"chars": 7,
"preview": "26.4.1\n"
},
{
"path": "AppKitPlugin/AppKitPlugin.swift",
"chars": 919,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "AppKitPlugin/Info.plist",
"chars": 695,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Brewfile",
"chars": 60,
"preview": "# frozen_string_literal: true\n\nbrew 'rbenv'\nbrew 'xcodegen'\n"
},
{
"path": "CODE_OF_CONDUCT.md",
"chars": 1930,
"preview": "# Code of Conduct\n\n## Pledge\n\nParticipation in this project should be welcoming, respectful, and harassment-free for eve"
},
{
"path": "CONTRIBUTING.md",
"chars": 3015,
"preview": "# Contributing Guidelines\n\nPull requests, bug reports, and all other forms of contributions to make Jottre even better a"
},
{
"path": "Gemfile",
"chars": 149,
"preview": "# frozen_string_literal: true\n\nsource 'https://rubygems.org'\n\ngem 'fastlane'\ngem 'rubocop', require: false\ngem 'rubocop-"
},
{
"path": "LICENSE",
"chars": 35149,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "PRIVACY_POLICY.md",
"chars": 1570,
"preview": "# Privacy Policy\n\n_Last updated: 2026-05-01_\n\nJottre (\"the app\") is designed to keep your notes private. This policy exp"
},
{
"path": "README.md",
"chars": 2173,
"preview": "<p style=\"text-align: center; max-width: 500px; height: auto;\">\n<p align=\"center\" >\n <img src=\"Resources/Assets.xcasset"
},
{
"path": "Resources/Assets.xcassets/AppIcon.appiconset/Contents.json",
"chars": 2310,
"preview": "{\n \"images\" : [\n {\n \"filename\" : \"icon_20x20@2x.png\",\n \"idiom\" : \"iphone\",\n \"scale\" : \"2x\",\n \"si"
},
{
"path": "Resources/Localizable.xcstrings",
"chars": 124074,
"preview": "{\n \"sourceLanguage\": \"en\",\n \"strings\": {\n \"action.cancel\": {\n \"comment\": \"Generic cancel action label\",\n "
},
{
"path": "Resources/PrivacyInfo.xcprivacy",
"chars": 980,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "SECURITY_POLICY.md",
"chars": 1538,
"preview": "# Security Policy\n\n## Reporting a Vulnerability\n\nIf you believe you have found a security vulnerability in Jottre, pleas"
},
{
"path": "Sources/AppDelegate.swift",
"chars": 1162,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/ApplicationService.swift",
"chars": 1329,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/BundleService.swift",
"chars": 1097,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudImageCell/CloudImageCell.swift",
"chars": 2291,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudImageCell/CloudImageCellViewModel.swift",
"chars": 853,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudImageCell/PageCellItem+cloudImage.swift",
"chars": 1025,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudMigrationCoordinator.swift",
"chars": 2904,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudMigrationCoordinatorFactory.swift",
"chars": 1451,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudMigrationJotBusinessModel.swift",
"chars": 1668,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudMigrationJotCell/CloudMigrationJotCell.swift",
"chars": 8872,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudMigrationJotCell/CloudMigrationJotCellViewModel.swift",
"chars": 2046,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudMigrationJotCell/PageCellItem+cloudMigrationJot.swift",
"chars": 1354,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudMigrationRepository.swift",
"chars": 4185,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudMigrationViewControllerFactory.swift",
"chars": 1386,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/CloudMigrationViewModel.swift",
"chars": 4379,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/DefaultsKey+hasDoneCloudMigration.swift",
"chars": 834,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/CloudMigrationPage/DefaultsKey+isICloudEnabled.swift",
"chars": 828,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Defaults/DefaultsContinuationStorage.swift",
"chars": 1881,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Defaults/DefaultsKey.swift",
"chars": 1030,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Defaults/DefaultsService.swift",
"chars": 2700,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/DesignTokens.swift",
"chars": 1030,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/DeviceService.swift",
"chars": 1114,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EditJotPage/EditJotCoordinator.swift",
"chars": 7621,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EditJotPage/EditJotCoordinatorFactory.swift",
"chars": 2010,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EditJotPage/EditJotRepository.swift",
"chars": 3049,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EditJotPage/EditJotURL.swift",
"chars": 1551,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EditJotPage/EditJotViewController.swift",
"chars": 8909,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EditJotPage/EditJotViewControllerFactory.swift",
"chars": 1738,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EditJotPage/EditJotViewModel.swift",
"chars": 7477,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EnableCloudPage/EnableCloudCoordinator.swift",
"chars": 1952,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EnableCloudPage/EnableCloudCoordinatorFactory.swift",
"chars": 1235,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EnableCloudPage/EnableCloudViewControllerFactory.swift",
"chars": 1462,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EnableCloudPage/EnableCloudViewModel.swift",
"chars": 2895,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EnableCloudPage/FeatureRow/FeatureRowCell.swift",
"chars": 3952,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EnableCloudPage/FeatureRow/FeatureRowCellViewModel.swift",
"chars": 1057,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/EnableCloudPage/FeatureRow/PageCellItem+featureRow.swift",
"chars": 1187,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/FileConflictService.swift",
"chars": 4351,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/FileService/FileServiceProtocol.swift",
"chars": 2466,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/FileService/LocalFileService.swift",
"chars": 6063,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/FileService/UbiquitousFileService.swift",
"chars": 6048,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/FileService/UbiquitousInfo.swift",
"chars": 964,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/InfoAlertCoordinator.swift",
"chars": 1599,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Jot/Jot.swift",
"chars": 1143,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Jot/JotFile.swift",
"chars": 1825,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Jot/JotFileService.swift",
"chars": 10619,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Jot/JotFileVersion.swift",
"chars": 845,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotConflictCell/JotConflictBusinessModel.swift",
"chars": 1329,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotConflictCell/JotConflictCell.swift",
"chars": 5519,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotConflictCell/JotConflictCellViewModel.swift",
"chars": 1702,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotConflictCell/PageCellItem+jotConflict.swift",
"chars": 1241,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotConflictCoordinator.swift",
"chars": 3433,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotConflictCoordinatorFactory.swift",
"chars": 1775,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotConflictRepository.swift",
"chars": 3298,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotConflictResult.swift",
"chars": 807,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotConflictViewControllerFactory.swift",
"chars": 1399,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotConflictViewModel.swift",
"chars": 5271,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotConflictPage/JotFileConflictService.swift",
"chars": 3210,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotFilePreview/CachedJotFilePreviewImageService.swift",
"chars": 5784,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotFilePreview/JotFilePreviewImageService.swift",
"chars": 2413,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotFilePreview/JotFilePreviewImageServiceProtocol.swift",
"chars": 970,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/CreateJot/CreateJotCoordinator.swift",
"chars": 3702,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/CreateJot/CreateJotCoordinatorFactory.swift",
"chars": 1162,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/CreateJot/CreateJotRepository.swift",
"chars": 2856,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/DeleteJot/DeleteJotCoordinator.swift",
"chars": 3034,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/DeleteJot/DeleteJotCoordinatorFactory.swift",
"chars": 1298,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/DeleteJot/DeleteJotRepository.swift",
"chars": 1186,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/EmptyStateCell/EmptyStateCell.swift",
"chars": 2042,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/EmptyStateCell/EmptyStateViewModel.swift",
"chars": 936,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/EmptyStateCell/PageCellItem+jotsEmptyState.swift",
"chars": 1051,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotCell/JotBusinessModel.swift",
"chars": 1251,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotCell/JotCell.swift",
"chars": 8583,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotCell/JotCellViewModel.swift",
"chars": 3043,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotCell/PageCellItem+jot.swift",
"chars": 1372,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotMenuConfiguration.swift",
"chars": 1102,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotMenuConfigurationFactory.swift",
"chars": 5106,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotsCoordinator.swift",
"chars": 9678,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotsCoordinatorFactory.swift",
"chars": 2477,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotsPageURL.swift",
"chars": 797,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotsRepository.swift",
"chars": 3702,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotsViewControllerFactory.swift",
"chars": 1958,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/JotsViewModel.swift",
"chars": 8671,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/RenameJot/RenameJotCoordinator.swift",
"chars": 3576,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/RenameJot/RenameJotCoordinatorFactory.swift",
"chars": 1496,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/RenameJot/RenameJotRepository.swift",
"chars": 1274,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/ShareJot/ShareJotCoordinator.swift",
"chars": 3641,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/ShareJot/ShareJotCoordinatorFactory.swift",
"chars": 1535,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/ShareJot/ShareJotRepository.swift",
"chars": 4813,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/JotsPage/UIMenu+makeJotMenuConfiguration.swift",
"chars": 1958,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/L10n.swift",
"chars": 7247,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/MacCatalystAppKitPluginService.swift",
"chars": 1534,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Navigation/Coordinator.swift",
"chars": 842,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Navigation/Navigation.swift",
"chars": 3524,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Navigation/NavigationCoordinator.swift",
"chars": 1064,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Navigation/URLConvertible.swift",
"chars": 1578,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/Cell/PageCell.swift",
"chars": 924,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/Cell/PageCellAction.swift",
"chars": 772,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/Cell/PageCellItem.swift",
"chars": 2574,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/Cell/PageCellSizingStrategy.swift",
"chars": 1953,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/Cell/PageCellViewModel.swift",
"chars": 1144,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/PageCallToActionView.swift",
"chars": 3233,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/PageHeader/PageCellItem+pageHeader.swift",
"chars": 1188,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/PageHeader/PageHeaderCell.swift",
"chars": 3916,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/PageHeader/PageHeaderViewModel.swift",
"chars": 1057,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/PageNavigationItem.swift",
"chars": 941,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/PageNavigationSymbolBarButtonItemFactory.swift",
"chars": 2608,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/PageNavigationTextBarButtonItemFactory.swift",
"chars": 1840,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/PageViewController.swift",
"chars": 14611,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/PageViewController/PageViewModel.swift",
"chars": 1612,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/RevealFile/RevealFileCoordinator.swift",
"chars": 1802,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/RevealFile/RevealFileCoordinatorFactory.swift",
"chars": 1289,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/RevealFile/RevealFileURL.swift",
"chars": 939,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/RootCoordinator.swift",
"chars": 1493,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/RootCoordinatorFactory.swift",
"chars": 1177,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SceneCoordinator.swift",
"chars": 10554,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SceneDelegate.swift",
"chars": 13800,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/DefaultsKey+userInterfaceStyle.swift",
"chars": 830,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/DropDownCell/PageCellItem+settingsDropdown.swift",
"chars": 1297,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/DropDownCell/SettingsDropdownBusinessModel.swift",
"chars": 1211,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/DropDownCell/SettingsDropdownCell.swift",
"chars": 1703,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/DropDownCell/SettingsDropdownCellViewModel.swift",
"chars": 1404,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/EnableICloudSupportURL.swift",
"chars": 1206,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/ExternalLinkCell/PageCellItem+settingsExternalLink.swift",
"chars": 1293,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/ExternalLinkCell/SettingsExternalLinkBusinessModel.swift",
"chars": 833,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/ExternalLinkCell/SettingsExternalLinkCell.swift",
"chars": 2545,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/ExternalLinkCell/SettingsExternalLinkCellViewModel.swift",
"chars": 1254,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/InfoCell/PageCellItem+settingsInfo.swift",
"chars": 1113,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/InfoCell/SettingsInfoBusinessModel.swift",
"chars": 825,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/InfoCell/SettingsInfoCell.swift",
"chars": 1191,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/InfoCell/SettingsInfoCellViewModel.swift",
"chars": 1050,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/JottreGithubURL.swift",
"chars": 876,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/SettingsCell/SettingsCell.swift",
"chars": 3417,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/SettingsCoordinator.swift",
"chars": 1970,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/SettingsCoordinatorFactory.swift",
"chars": 1201,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/SettingsRepository.swift",
"chars": 2225,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/SettingsViewControllerFactory.swift",
"chars": 1652,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/SettingsViewModel.swift",
"chars": 6084,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/ToggleCell/PageCellItem+settingsToggle.swift",
"chars": 1129,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/ToggleCell/SettingsToggleBusinessModel.swift",
"chars": 824,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/ToggleCell/SettingsToggleCell.swift",
"chars": 960,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/SettingsPage/ToggleCell/SettingsToggleCellViewModel.swift",
"chars": 1055,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Utilities/Array+safeIndex.swift",
"chars": 856,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Utilities/AsyncSequence+toAsyncThrowingStream.swift",
"chars": 1874,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Utilities/AsyncStream+debounce.swift",
"chars": 1993,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Utilities/LoggerProtocol.swift",
"chars": 1616,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Utilities/NSLayoutConstraint+withPriority.swift",
"chars": 918,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Utilities/UIColor+adaptiveBlackWhite.swift",
"chars": 885,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Utilities/UIFont+systemStyle.swift",
"chars": 1109,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Sources/Utilities/UITraitCollection+hasRenderingChange.swift",
"chars": 958,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/CloudMigrationPage/CloudImageCellViewModelTests.swift",
"chars": 1067,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/CloudMigrationPage/CloudMigrationCoordinatorTests.swift",
"chars": 5464,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/CloudMigrationPage/CloudMigrationJotBusinessModelTests.swift",
"chars": 3150,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/CloudMigrationPage/CloudMigrationJotCellViewModelTests.swift",
"chars": 4846,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/CloudMigrationPage/CloudMigrationRepositoryTests.swift",
"chars": 7250,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/CloudMigrationPage/CloudMigrationViewModelTests.swift",
"chars": 4802,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/Defaults/DefaultsContinuationStorageTests.swift",
"chars": 2972,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/Defaults/DefaultsKeyTests.swift",
"chars": 1861,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/Defaults/DefaultsServiceTests.swift",
"chars": 3454,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/EditJotPage/EditJotCoordinatorTests.swift",
"chars": 11003,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/EditJotPage/EditJotRepositoryTests.swift",
"chars": 5870,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/EditJotPage/EditJotViewModelTests.swift",
"chars": 11226,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/EnableCloudPage/EnableCloudCoordinatorTests.swift",
"chars": 4288,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/EnableCloudPage/EnableCloudViewModelTests.swift",
"chars": 3482,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/EnableCloudPage/FeatureRowCellViewModelTests.swift",
"chars": 1185,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/FileService/LocalFileServiceTests.swift",
"chars": 6004,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/FileService/UbiquitousInfoTests.swift",
"chars": 2024,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/Helpers/Navigation+test.swift",
"chars": 2039,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/Helpers/UIAlertAction+invoke.swift",
"chars": 1055,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/Helpers/URL+staticString.swift",
"chars": 977,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/Jot/JotFileServiceDocumentsDirectoryContentsTests.swift",
"chars": 7223,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/Jot/JotFileServiceTests.swift",
"chars": 17671,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/Jot/JotFileTests.swift",
"chars": 1885,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/JotConflictPage/JotConflictBusinessModelTests.swift",
"chars": 2851,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/JotConflictPage/JotConflictCellViewModelTests.swift",
"chars": 4868,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/JotConflictPage/JotConflictCoordinatorTests.swift",
"chars": 4898,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/JotConflictPage/JotConflictRepositoryTests.swift",
"chars": 7855,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
},
{
"path": "Tests/JotConflictPage/JotConflictViewModelTests.swift",
"chars": 5678,
"preview": "/*\n Jottre: Minimalistic jotting for iPhone, iPad and Mac.\n Copyright (C) 2021-2026 Anton Lorani\n\n This program is free "
}
]
// ... and 89 more files (download for full content)
About this extraction
This page contains the full source code of the antonlorani/jottre GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 289 files (946.0 KB), approximately 228.5k tokens, and a symbol index with 13 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.