chore: update plugins package version (#5157)

This commit is contained in:
Mathias Mogensen 2024-04-18 00:39:34 +02:00 committed by GitHub
parent 0a5f3e8fa1
commit 8ccc879ef5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 21 additions and 12 deletions

View File

@ -34,14 +34,16 @@ import 'package:flutter_bloc/flutter_bloc.dart';
final codeBlockLocalization = CodeBlockLocalizations( final codeBlockLocalization = CodeBlockLocalizations(
codeBlockNewParagraph: codeBlockNewParagraph:
LocaleKeys.settings_shortcuts_commands_codeBlockNewParagraph.tr(), LocaleKeys.settings_shortcuts_commands_codeBlockNewParagraph.tr(),
codeBlockAddTwoSpaces: codeBlockIndentLines:
LocaleKeys.settings_shortcuts_commands_codeBlockAddTwoSpaces.tr(), LocaleKeys.settings_shortcuts_commands_codeBlockIndentLines.tr(),
codeBlockDeleteTwoSpaces: codeBlockOutdentLines:
LocaleKeys.settings_shortcuts_commands_codeBlockDeleteTwoSpaces.tr(), LocaleKeys.settings_shortcuts_commands_codeBlockOutdentLines.tr(),
codeBlockSelectAll: codeBlockSelectAll:
LocaleKeys.settings_shortcuts_commands_codeBlockSelectAll.tr(), LocaleKeys.settings_shortcuts_commands_codeBlockSelectAll.tr(),
codeBlockPasteText: codeBlockPasteText:
LocaleKeys.settings_shortcuts_commands_codeBlockPasteText.tr(), LocaleKeys.settings_shortcuts_commands_codeBlockPasteText.tr(),
codeBlockAddTwoSpaces:
LocaleKeys.settings_shortcuts_commands_codeBlockAddTwoSpaces.tr(),
); );
final localizedCodeBlockCommands = final localizedCodeBlockCommands =

View File

@ -61,10 +61,11 @@ packages:
appflowy_editor_plugins: appflowy_editor_plugins:
dependency: "direct main" dependency: "direct main"
description: description:
name: appflowy_editor_plugins path: "packages/appflowy_editor_plugins"
sha256: adfafde707a65ec9674bc3edaa8b8d865e065a08a4f653176d5db0c950521cbb ref: "37f35e77"
url: "https://pub.dev" resolved-ref: "37f35e77aefb1b9a0b872086d156b1b885ba02df"
source: hosted url: "https://github.com/AppFlowy-IO/appflowy-plugins.git"
source: git
version: "0.0.1" version: "0.0.1"
appflowy_popover: appflowy_popover:
dependency: "direct main" dependency: "direct main"

View File

@ -46,7 +46,12 @@ dependencies:
ref: 15a3a50 ref: 15a3a50
appflowy_result: appflowy_result:
path: packages/appflowy_result path: packages/appflowy_result
appflowy_editor_plugins: ^0.0.1 appflowy_editor_plugins:
git:
url: https://github.com/AppFlowy-IO/appflowy-plugins.git
path: packages/appflowy_editor_plugins
ref: "37f35e77"
appflowy_editor: appflowy_editor:
appflowy_popover: appflowy_popover:

View File

@ -523,8 +523,9 @@
"couldNotSaveErrorMsg": "Could not save shortcuts, Try again", "couldNotSaveErrorMsg": "Could not save shortcuts, Try again",
"commands": { "commands": {
"codeBlockNewParagraph": "Insert a new paragraph next to the code block", "codeBlockNewParagraph": "Insert a new paragraph next to the code block",
"codeBlockAddTwoSpaces": "Insert two spaces at the line start in code block", "codeBlockIndentLines": "Insert two spaces at the line start in code block",
"codeBlockDeleteTwoSpaces": "Delete two spaces at the line start in code block", "codeBlockOutdentLines": "Delete two spaces at the line start in code block",
"codeBlockAddTwoSpaces": "Insert two spaces at the cursor position in code block",
"codeBlockSelectAll": "Select all content inside a code block", "codeBlockSelectAll": "Select all content inside a code block",
"codeBlockPasteText": "Paste text in codeblock", "codeBlockPasteText": "Paste text in codeblock",
"textAlignLeft": "Align text to the left", "textAlignLeft": "Align text to the left",
@ -1475,4 +1476,4 @@
"betaTooltip": "We currently only support searching for pages", "betaTooltip": "We currently only support searching for pages",
"fromTrashHint": "From trash" "fromTrashHint": "From trash"
} }
} }