Skip to content

Commit d997201

Browse files
committed
Improve code strings
1 parent e73aea4 commit d997201

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

localization-toolkit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ These are properties you can configure in your `.csproj` file to customize the l
1616

1717
### `FLLUseDependencyInjection`
1818

19-
This flag specifies whether to use dependency injection to obtain an IPublicAPI instance. The default is `false`.
19+
This flag specifies whether to use dependency injection to obtain an `IPublicAPI` instance. The default is `false`.
2020
- If set to `false`, the Main class (which must implement **[IPlugin](/API-Reference/Flow.Launcher.Plugin/IPlugin.md)** or **[IAsyncPlugin](/API-Reference/Flow.Launcher.Plugin/IAsyncPlugin.md)**)
2121
must have a [PluginInitContext](/API-Reference/Flow.Launcher.Plugin/PluginInitContext.md) property that is at least `internal static`.
2222
- If set to `true`, you can access the `IPublicAPI` instance via `PublicApi.Instance` using dependency injection, and the Main class does not need to include a [PluginInitContext](/API-Reference/Flow.Launcher.Plugin/PluginInitContext.md) property.
@@ -61,7 +61,7 @@ Localize.flowlauncher_plugin_localization_demo_value_with_keys(firstName, lastNa
6161

6262
### Localized Enums
6363

64-
For enum types (e.g., DemoEnum) that need localization in UI controls such as combo boxes, use the `EnumLocalize` attribute to enable localization. For each enum field:
64+
For enum types (e.g., `DemoEnum`) that need localization in UI controls such as combo boxes, use the `EnumLocalize` attribute to enable localization. For each enum field:
6565
- Use `EnumLocalizeKey` to provide a custom localization key.
6666
- Use `EnumLocalizeValue` to provide a constant localization string.
6767

0 commit comments

Comments
 (0)