Skip to content

Commit

Permalink
localize & chagenlog
Browse files Browse the repository at this point in the history
  • Loading branch information
mohnjiles committed Jan 10, 2024
1 parent c4b4fe1 commit 20ff29d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions StabilityMatrix.Avalonia/Languages/Resources.Designer.cs

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

3 changes: 3 additions & 0 deletions StabilityMatrix.Avalonia/Languages/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 2 additions & 2 deletions StabilityMatrix.Avalonia/Views/CheckpointsPage.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 20ff29d

Please sign in to comment.