Skip to content

Commit f7d5dd4

Browse files
committed
Made some fixes to certain translations, but some full translations are missing, replaced mentions of the old GitHub by the new repo, fixed the issue Hogjects#200.
No AI used.
1 parent 9f0e07b commit f7d5dd4

14 files changed

Lines changed: 27 additions & 26 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div align="center">
44

5-
<a href="https://github.com/Hog185/Lufus/blob/main/LICENSE">![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)</a>
5+
<a href="https://github.com/Hogjects/Lufus/blob/main/LICENSE">![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)</a>
66
<a href="https://discord.gg/QrbHJuYvzB">![Discord](https://img.shields.io/discord/1477694881127469202?style=flat\&logo=https%3A%2F%2Fcdn.discordapp.com%2Ficons%2F1477694881127469202%2F1b2c4e8defc9220de11098108fa1ed81.webp%3Fsize%3D256\&logoColor=rgb\&label=Join%20Server\&link=https%3A%2F%2Fdiscord.gg%2FTMnXwezsyV)</a>
77
<a href="#beta-release-disclaimer">![Status: Beta](https://img.shields.io/badge/status-beta-orange)</a>
88

pyproject.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ name = "lufus"
77
version = "1.0.0" # keep synced with [tool.briefcase] version
88
description = "A rufus clone written in Python and designed to work with Linux."
99
readme = "README.md"
10-
license = "MIT"
11-
license-files = ["LICENSE"]
10+
license.text = "MIT"
11+
license.file = "LICENSE"
1212
requires-python = ">=3.10"
1313
dependencies = [
1414
"psutil>=7.2",
@@ -20,22 +20,22 @@ dependencies = [
2020
]
2121

2222
[project.urls]
23-
Homepage = "https://github.com/Hog185/Lufus"
24-
Repository = "https://github.com/Hog185/Lufus.git"
25-
Issues = "https://github.com/Hog185/Lufus/issues"
23+
Homepage = "https://github.com/Hogjects/Lufus"
24+
Repository = "https://github.com/Hogjects/Lufus.git"
25+
Issues = "https://github.com/Hogjects/Lufus/issues"
2626
Documentation = "https://splayer.4plt.ch/lufus/"
2727

2828
[project.gui-scripts]
2929
lufus = "lufus.__main__:main"
3030

3131
[tool.briefcase]
3232
project_name = "Lufus"
33-
bundle = "com.github.hog185"
33+
bundle = "com.github.hogjects"
3434
version = "1.0.0" # keep synced with [project] version
35-
url = "https://github.com/Hog185/Lufus"
36-
license = "MIT"
37-
license-files = ["LICENSE"]
38-
author = "Hog185"
35+
url = "https://github.com/Hogjects/Lufus"
36+
license.text = "MIT"
37+
license.file = "LICENSE"
38+
author = "Hogjects"
3939
author_email = "example@example.com"
4040

4141
[tool.briefcase.app.lufus]

src/lufus/gui/dialogs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def __init__(self, parent=None):
163163
layout.addLayout(btn_row0)
164164

165165
btn_row1 = QHBoxLayout()
166-
btn_github = QPushButton(self._T.get("btn_github", "Open Github Repo"))
166+
btn_github = QPushButton(self._T.get("btn_github", "Open GitHub Repo"))
167167
btn_github.setFixedWidth(self._S.px(300) if self._S else 90)
168168
btn_github.clicked.connect(self.github_open)
169169
btn_row1.addWidget(btn_github, alignment=Qt.AlignmentFlag.AlignCenter)
@@ -183,7 +183,7 @@ def discord_open(self):
183183
QDesktopServices.openUrl(url)
184184

185185
def github_open(self):
186-
url = QUrl("https://github.com/Hog185/Lufus")
186+
url = QUrl("https://github.com/Hogjects/Lufus")
187187
QDesktopServices.openUrl(url)
188188

189189

src/lufus/gui/gui.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ def _update_flashing_options(self):
923923

924924
def _open_url(self):
925925
# open github url in browser :D
926-
url = "https://github.com/Hog185/Lufus"
926+
url = "https://github.com/Hogjects/Lufus"
927927
pkexec_uid = os.environ.get("PKEXEC_UID")
928928
if pkexec_uid and os.geteuid() == 0:
929929
# when running as root via pkexec open as original user :3
@@ -1745,7 +1745,7 @@ def check_polkit_agent(self):
17451745
return True
17461746

17471747
def get_latest_release(self):
1748-
owner = "Hog185"
1748+
owner = "Hogjects"
17491749
repo = "Lufus"
17501750
url = f"https://api.github.com/repos/{owner}/{repo}/releases/latest"
17511751
current_version = state.version
@@ -1801,7 +1801,7 @@ def get_latest_release(self):
18011801
newupdate.exec()
18021802
if newupdate.clickedButton() == download_btn:
18031803
self.log_message(f"New update download button clicked", level="DEBUG")
1804-
webbrowser.open("https://github.com/Hog185/Lufus/releases")
1804+
webbrowser.open("https://github.com/Hogjects/Lufus/releases")
18051805
else:
18061806
self.log_message(f"download later button clicked", level="DEBUG")
18071807

src/lufus/gui/languages/Deutsch.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ dlg_select_image_title,Abbild auswählen
9090
dlg_select_image_filter,Abbilder (*.iso *.dmg *.img *.bin *.raw);;Alle Dateien (*)
9191
about_content,"lufus ist ein in Python geschriebener USB-Image-Writer für Linux.
9292
Inspiriert vom originalen lufus-Tool für Windows.
93-
GitHub: github.com/hog185/lufus"
93+
GitHub: https://github.com/Hogjects/Lufus"
9494
about_subtitle,USB-Flash-Tool
9595
btn_close,Schließen
9696
btn_ok,OK

src/lufus/gui/languages/English.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ dlg_select_image_title,Select Disk Image
9090
dlg_select_image_filter,Disk Images (*.iso *.dmg *.img *.bin *.raw);;All Files (*)
9191
about_content,"Lufus is a disk image writer written in Python for Linux.
9292
Inspired by the original Rufus tool for Windows.
93-
GitHub: github.com/hog185/lufus"
93+
GitHub: https://github.com/Hogjects/Lufus"
9494
about_subtitle,USB Flash Tool
9595
btn_close,Close
9696
btn_ok,OK

src/lufus/gui/languages/Español.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ dlg_select_image_filter,Imagenes ISO (*.iso);;All Files (*)
9292
about_content,"Lufus es una utilidad de escritura de discos para Linux hecha en Python.
9393
9494
Inspirado por la herramienta original Rufus para Windows.
95-
GitHub: github.com/hog185/lufus"
95+
GitHub: https://github.com/Hogjects/Lufus"
9696
about_subtitle,Herramienta de flash USB
9797
btn_close,Cerrar
9898
btn_ok,OK

src/lufus/gui/languages/Français.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ dlg_select_image_title,Sélectionner l'image disque
9090
dlg_select_image_filter,Images disque (*.iso *.dmg *.img *.bin *.raw);;Tous les fichiers (*)
9191
about_content,"Lufus est un logiciel libre d'écriture d'images disque écrit en Python pour GNU/Linux,
9292
inspiré par l'outil original Rufus, disponible uniquement pour Windows.
93-
GitHub : https://github.com/Hog185/Lufus/"
93+
GitHub : https://github.com/Hogjects/Lufus"
9494
about_subtitle,Outil d'écriture USB
9595
btn_close,Fermer
9696
btn_ok,OK

src/lufus/gui/languages/Português Brasileiro.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ dlg_select_image_title,Selecionar imagem de disco
9090
dlg_select_image_filter,Imagems ISO (*.iso);;Todos os arquivos (*)
9191
about_content,"O Lufus é um gravador de imagem escrito em python para o Linux.
9292
É inspirado no Rufus para o Windows.
93-
GitHub: github.com/hog185/lufus"
93+
GitHub: https://github.com/Hogjects/Lufus"
9494
about_subtitle,Ferramenta de Flash USB
9595
btn_close,Fechar
9696
btn_ok,OK

src/lufus/gui/languages/Svenska.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ dlg_select_image_title,Välj enhetsavbildning
9090
dlg_select_image_filter,Enhetsavbildningar (*.iso *.dmg *.img *.bin *.raw);;Alla filer (*)
9191
about_content,"Lufus är ett verktyg för att skriva diskavbildningar, skrivet i Python för Linux.
9292
Inspirerat av det ursprungliga Rufus-verktyget för Windows.
93-
GitHub: github.com/hog185/lufus"
93+
GitHub: https://github.com/Hogjects/Lufus"
9494
about_subtitle,USB-skrivningsverktyg
9595
btn_close,Stäng
9696
btn_ok,OK

0 commit comments

Comments
 (0)