Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Modules/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Modules/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ let package = Package(
revision: "b34794c9a3f32312e1593d4a3d120572afa0d010"
),
.package(url: "https://github.com/zendesk/support_sdk_ios", from: "8.0.3"),
.package(url: "https://github.com/wordpress-mobile/GutenbergKit", from: "0.15.0"),
.package(url: "https://github.com/wordpress-mobile/GutenbergKit", exact: "0.17.1"),
.package(
url: "https://github.com/automattic/wordpress-rs",
exact: "0.3.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ private func getLocalizedString(for value: GutenbergKit.EditorLocalizableString)
case .patternsCategoryAll: NSLocalizedString("editor.patterns.all", value: "All", comment: "Category name for section showing all patterns")
case .loadingEditor: NSLocalizedString("editor.loading.title", value: "Loading Editor", comment: "Text shown while the editor is loading")
case .editorError: NSLocalizedString("editor.error.title", value: "Editor Error", comment: "Title shown when the editor encounters an error")
case .lockdownModeTitle: NSLocalizedString("editor.lockdownMode.title", value: "Lockdown Mode Detected", comment: "Title shown when the editor detects that Lockdown Mode is enabled")
case .lockdownModeWarning: NSLocalizedString("editor.lockdownMode.warning", value: "Lockdown Mode is enabled. The editor may not work correctly.", comment: "Warning shown when the editor detects that Lockdown Mode is enabled")
case .lockdownModeExcludeHint: NSLocalizedString("editor.lockdownMode.excludeHint", value: "You can exclude this app from Lockdown Mode in Settings, then re-open the editor to restore full functionality.", comment: "Hint explaining how to exclude the app from Lockdown Mode so the editor works")
case .lockdownModeLearnMore: NSLocalizedString("editor.lockdownMode.learnMore", value: "Learn More", comment: "Button title to learn more about Lockdown Mode and the editor")
case .lockdownModeDismiss: NSLocalizedString("editor.lockdownMode.dismiss", value: "Dismiss", comment: "Button title to dismiss the Lockdown Mode warning in the editor")
}
}

Expand Down