From e36809e772670fee21d646c34d023bd81a26eedb Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Sun, 19 Jul 2026 09:18:28 -0400 Subject: [PATCH] Fixup links to translation resources --- README.md | 2 +- .../Views/Pages/AboutPages/Translators.axaml.cs | 2 +- .../Views/Pages/SettingsPages/General.axaml.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d60f21c7c8..4fd1643e8f 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Read more in the [Devolutions announcement](https://devolutions.net/blog/2026/03 - [Project stewardship](#project-stewardship) - [Features](#features) - [Package Managers](#package-managers) - - [Translations](TRANSLATION.md) + - [Translations](#translations) - [Contributions](#contributions) - [Screenshots](#screenshots) - [Frequently Asked Questions](#frequently-asked-questions) diff --git a/src/UniGetUI.Avalonia/Views/Pages/AboutPages/Translators.axaml.cs b/src/UniGetUI.Avalonia/Views/Pages/AboutPages/Translators.axaml.cs index 4ddd591fed..ac89eac627 100644 --- a/src/UniGetUI.Avalonia/Views/Pages/AboutPages/Translators.axaml.cs +++ b/src/UniGetUI.Avalonia/Views/Pages/AboutPages/Translators.axaml.cs @@ -14,7 +14,7 @@ public Translators() } private void BecomeTranslatorButton_Click(object? sender, RoutedEventArgs e) => - CoreTools.Launch("https://github.com/Devolutions/UniGetUI/wiki#translating-wingetui"); + CoreTools.Launch("https://github.com/Devolutions/UniGetUI/blob/main/TRANSLATION.md"); private void GitHubButton_Click(object? sender, RoutedEventArgs e) { diff --git a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml.cs b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml.cs index 5fa669e3e9..5d2422df93 100644 --- a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml.cs +++ b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml.cs @@ -68,7 +68,7 @@ private static StackPanel BuildTranslatorDescription() }; link.Bind(TextBlock.ForegroundProperty, link.GetResourceObservable("SystemControlHighlightAccentBrush")); link.PointerPressed += (_, _) => - CoreTools.Launch("https://github.com/Devolutions/UniGetUI/wiki#translating-wingetui"); + CoreTools.Launch("https://github.com/Devolutions/UniGetUI/blob/main/TRANSLATION.md"); var panel = new StackPanel { Orientation = Orientation.Horizontal }; panel.Children.Add(label);