Browse Source

localize & chagenlog

pull/438/head
JT 10 months ago
parent
commit
20ff29dee6
  1. 1
      CHANGELOG.md
  2. 9
      StabilityMatrix.Avalonia/Languages/Resources.Designer.cs
  3. 3
      StabilityMatrix.Avalonia/Languages/Resources.resx
  4. 4
      StabilityMatrix.Avalonia/Views/CheckpointsPage.axaml

1
CHANGELOG.md

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
- Added base model filter to Checkpoints page
- Search box on Checkpoints page now searches tags and trigger words
- Added "Compatible Images" category when selecting images for Inference projects
- Added "Find in Model Browser" option to the right-click menu on the Checkpoints page
### Changed
- Removed "Failed to load image" notification when loading some images on the Checkpoints page
- Installed models will no longer be selectable on the Hugging Face tab of the model browser

9
StabilityMatrix.Avalonia/Languages/Resources.Designer.cs generated

@ -1184,6 +1184,15 @@ namespace StabilityMatrix.Avalonia.Languages {
}
}
/// <summary>
/// Looks up a localized string similar to Find in Model Browser.
/// </summary>
public static string Label_FindInModelBrowser {
get {
return ResourceManager.GetString("Label_FindInModelBrowser", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to First Page.
/// </summary>

3
StabilityMatrix.Avalonia/Languages/Resources.resx

@ -927,4 +927,7 @@
<data name="Label_VideoQuality" xml:space="preserve">
<value>Quality</value>
</data>
<data name="Label_FindInModelBrowser" xml:space="preserve">
<value>Find in Model Browser</value>
</data>
</root>

4
StabilityMatrix.Avalonia/Views/CheckpointsPage.axaml

@ -72,7 +72,7 @@
IconSource="Copy" />
<ui:MenuFlyoutItem Command="{Binding FindOnModelBrowserCommand}"
IsVisible="{Binding IsConnectedModel}"
Text="Find in Model Browser"
Text="{x:Static lang:Resources.Label_FindInModelBrowser}"
IconSource="Find" />
<ui:MenuFlyoutSeparator IsVisible="{Binding CanShowTriggerWords}" />
<ui:MenuFlyoutItem Command="{Binding OpenOnCivitAiCommand}"
@ -203,7 +203,7 @@
VerticalAlignment="Center"
FontSize="11"
FontWeight="Medium"
Text="Update Available" />
Text="{x:Static lang:Resources.Label_UpdateAvailable}" />
</controls:Card>
<Button
Background="Transparent"

Loading…
Cancel
Save