From 97e60036864850723754cfa28de02daab0452a1d Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 18 May 2026 19:24:07 +0200 Subject: [PATCH] Fixed missing translations for file type names (#769) --- app/MindWork AI Studio/Tools/Rust/FileTypes.cs | 2 +- app/MindWork AI Studio/wwwroot/changelog/v26.5.5.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Tools/Rust/FileTypes.cs b/app/MindWork AI Studio/Tools/Rust/FileTypes.cs index 87a551b2..ebd62c5e 100644 --- a/app/MindWork AI Studio/Tools/Rust/FileTypes.cs +++ b/app/MindWork AI Studio/Tools/Rust/FileTypes.cs @@ -9,7 +9,7 @@ namespace AIStudio.Tools.Rust; /// public static class FileTypes { - private static string TB(string fallbackEn) => I18N.I.T(fallbackEn, typeof(FileTypeFilter).Namespace, nameof(FileTypeFilter)); + private static string TB(string fallbackEn) => I18N.I.T(fallbackEn, typeof(FileTypes).Namespace, nameof(FileTypes)); public static readonly FileTypeFilter SOURCE_LIKE_FILE_NAMES = FileTypeFilter.Leaf(TB("Source like"), "Dockerfile", "Containerfile", "Jenkinsfile", "Makefile", "GNUmakefile", "Procfile", "Vagrantfile", diff --git a/app/MindWork AI Studio/wwwroot/changelog/v26.5.5.md b/app/MindWork AI Studio/wwwroot/changelog/v26.5.5.md index a556a5c4..682be0e0 100644 --- a/app/MindWork AI Studio/wwwroot/changelog/v26.5.5.md +++ b/app/MindWork AI Studio/wwwroot/changelog/v26.5.5.md @@ -7,6 +7,7 @@ - Improved the Pandoc management and detection process to make it more reliable. - Fixed the Pandoc installation, which could fail and prevent AI Studio from installing its local Pandoc dependency. - Fixed an issue where the spellchecking setting was not applied to all text fields in the slide builder assistant. +- Fixed missing translations for file type names in file selection dialogs. - Upgraded the native secret storage integration to `keyring-core`, keeping API keys in the secure credential store provided by the operating system. - Upgraded Rust to v1.95.0. - Upgraded .NET to v9.0.16.