Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ionite34 committed Sep 15, 2023
2 parents b6567a5 + 0b2ac4c commit b30b6f6
Show file tree
Hide file tree
Showing 20 changed files with 1,426 additions and 82 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to Stability Matrix will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html).

## v2.4.3
### Added
- Added "--no-download-sd-model" launch argument option for Stable Diffusion Web UI
- Added Chinese (Simplified) and Chinese (Traditional) UI language options, thanks to jimlovewine for the translations
### Changed
- Package updates now use the new progress dialog with console output
### Fixed
- Updated Japanese translation for some terms

## v2.4.2
### Added
- Added Japanese UI language option, thanks to kgmkm_mkgm for the translation
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ node("Diligence") {
git branch: env.BRANCH_NAME, credentialsId: 'Ionite', url: "https://github.com/${author}/${repoName}.git"
}

try {
try {
stage('Test') {
sh "dotnet test StabilityMatrix.Tests"
}
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ Stability Matrix is now available in the following languages, thanks to our comm
- 🇺🇸 English
- 🇯🇵 日本語
- kgmkm_mkgm
- 🇨🇳 中文(简体,繁体)
- jimlovewine

If you would like to contribute a translation, please create an issue or contact us on Discord. Include an email where we'll send an invite to our [POEditor](https://poeditor.com/) project.

Expand Down
4 changes: 3 additions & 1 deletion StabilityMatrix.Avalonia/Languages/Cultures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ public static class Cultures
>
{
["en-US"] = Default,
["ja-JP"] = new("ja-JP")
["ja-JP"] = new("ja-JP"),
["zh-Hans"] = new("zh-Hans"),
["zh-Hant"] = new("zh-Hant")
};

public static IReadOnlyList<CultureInfo> SupportedCultures =>
Expand Down
14 changes: 7 additions & 7 deletions StabilityMatrix.Avalonia/Languages/Resources.ja-JP.resx
Original file line number Diff line number Diff line change
Expand Up @@ -134,16 +134,16 @@
<value>言語</value>
</data>
<data name="Text_RelaunchRequiredToApplyLanguage" xml:space="preserve">
<value>言語を変更するにはRelaunchが必要です</value>
<value>言語を変更するにはアプリの再起動が必要です</value>
</data>
<data name="Action_Relaunch" xml:space="preserve">
<value>Relaunch</value>
<value>再起動</value>
</data>
<data name="Action_RelaunchLater" xml:space="preserve">
<value>後でRelaunch</value>
<value>後で再起動</value>
</data>
<data name="Label_RelaunchRequired" xml:space="preserve">
<value>Relaunch Required</value>
<value>再起動が必要です</value>
</data>
<data name="Label_UnknownPackage" xml:space="preserve">
<value>Unknown Package</value>
Expand Down Expand Up @@ -235,7 +235,7 @@
<value>更新あり</value>
</data>
<data name="Label_BecomeAPatron" xml:space="preserve">
<value>Patronになる</value>
<value>Patreonになる</value>
</data>
<data name="Label_JoinDiscord" xml:space="preserve">
<value>Discordに参加</value>
Expand Down Expand Up @@ -424,7 +424,7 @@
<value>Checkpoint Manager</value>
</data>
<data name="Label_RemoveSymlinksOnShutdown" xml:space="preserve">
<value>checkpointフォルダにあるシンボリックリンクをソフトの終了時に削除</value>
<value>checkpointフォルダ内のシンボリックリンクをシャットダウンか再起動時に削除</value>
</data>
<data name="Label_RemoveSymlinksOnShutdown_Details" xml:space="preserve">
<value>Stability Matrix を別のドライブに移動する際に問題が起きた場合、ここにチェック</value>
Expand Down Expand Up @@ -647,4 +647,4 @@
<value>Branch</value>
<comment>For Japanese engineers who use git on a daily basis, it is easier to understand terms used in git as they are in English.</comment>
</data>
</root>
</root>
Loading

0 comments on commit b30b6f6

Please sign in to comment.