diff --git a/README.md b/README.md
index 09646ffce..978b15158 100644
--- a/README.md
+++ b/README.md
@@ -127,7 +127,7 @@ To translate UniGetUI to other languages or to update an old translation, please
| Spanish - Castellano | 99% | [apazga](https://github.com/apazga), [dalbitresb12](https://github.com/dalbitresb12), [evaneliasyoung](https://github.com/evaneliasyoung), [guplem](https://github.com/guplem), [JMoreno97](https://github.com/JMoreno97), [marticliment](https://github.com/marticliment), [P10Designs](https://github.com/P10Designs), [rubnium](https://github.com/rubnium), [uKER](https://github.com/uKER) |
| Persian - فارسی | 76% | [Imorate](https://github.com/Imorate), [itsarian](https://github.com/itsarian), [Mahdi-Hazrati](https://github.com/Mahdi-Hazrati), [moon24-s](https://github.com/moon24-s), [saeed205](https://github.com/saeed205), [smsi2001](https://github.com/smsi2001) |
| Finnish - Suomi | 96% | [simakuutio](https://github.com/simakuutio) |
-| French - Français | 99% | BreatFR, Evans Costa, [PikPakPik](https://github.com/PikPakPik), Rémi Guerrero, [W1L7dev](https://github.com/W1L7dev) |
+| French - Français | 100% | BreatFR, Evans Costa, [PikPakPik](https://github.com/PikPakPik), Rémi Guerrero, [W1L7dev](https://github.com/W1L7dev) |
| Gujarati - ગુજરાતી | 9% | |
| Hindi - हिंदी | 47% | [atharva_xoxo](https://github.com/atharva_xoxo), [satanarious](https://github.com/satanarious) |
| Croatian - Hrvatski | 53% | Stjepan Treger |
@@ -164,7 +164,7 @@ To translate UniGetUI to other languages or to update an old translation, please
| Simplified Chinese (China) | 100% | Aaron Liu, adfnekc, [Ardenet](https://github.com/Ardenet), [arthurfsy2](https://github.com/arthurfsy2), [bai0012](https://github.com/bai0012), BUGP Association, ciaran, CnYeSheng, Cololi, [dongfengweixiao](https://github.com/dongfengweixiao), [enKl03B](https://github.com/enKl03B), [seanyu0](https://github.com/seanyu0), [Sigechaishijie](https://github.com/Sigechaishijie), [SpaceTimee](https://github.com/SpaceTimee), Yisme |
| Traditional Chinese (Taiwan) | 99% | Aaron Liu, CnYeSheng, Cololi, [enKl03B](https://github.com/enKl03B), [Henryliu880922](https://github.com/Henryliu880922), [StarsShine11904](https://github.com/StarsShine11904), [yrctw](https://github.com/yrctw) |
-Last updated: Tue Jan 21 23:53:52 2025
+Last updated: Wed Jan 22 00:04:02 2025
diff --git a/deep_clean.ps1 b/deep_clean.ps1
new file mode 100644
index 000000000..cd08f5994
--- /dev/null
+++ b/deep_clean.ps1
@@ -0,0 +1,10 @@
+Get-ChildItem -Path . -Recurse -Directory -Force -Include bin, obj |
+Where-Object { $_.FullName -notmatch 'choco-cli' } |
+ForEach-Object {
+ Write-Host "Removing folder: $($_.FullName)" -ForegroundColor Yellow
+ Remove-Item -Path $_.FullName -Recurse -Force
+}
+
+Write-Host "Cleanup completed." -ForegroundColor Green
+
+pause
\ No newline at end of file