Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing translation #598

Merged
merged 1 commit into from
Jan 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions wingetui/storeEngine.py
Original file line number Diff line number Diff line change
Expand Up @@ -934,8 +934,8 @@ def loadProgram(self, title: str, id: str, useId: bool, store: str, update: bool
self.type.setText(f"{_('Installer Type')} ({_('Latest Version')}): {_('Loading...')}")
self.packageId.setText(f"{_('Package ID')}: {id}")
self.manifest.setText(f"{_('Manifest')}: {_('Loading...')}")
self.date.setText(f"{_('Last updated')}: {_('Loading...')}")
self.notes.setText(f"{_('Release notes')}: {_('Loading...')}")
self.date.setText(f"{_('Last updated:')} {_('Loading...')}")
self.notes.setText(f"{_('Release notes:')} {_('Loading...')}")
self.storeLabel.setText(f"{_('Source')}: {self.store.capitalize()}")
self.versionCombo.addItems([_("Loading...")])

Expand Down Expand Up @@ -1076,8 +1076,8 @@ def printData(self, appInfo: dict) -> None:
self.link.setText(f"{_('Installer URL')} ({_('Latest Version')}): <a style=\"color: {blueColor};\" href=\"{appInfo['installer-url']}\">{appInfo['installer-url']}</a>")
self.type.setText(f"{_('Installer Type')} ({_('Latest Version')}): {appInfo['installer-type']}")
self.packageId.setText(f"{_('Package ID')}: {appInfo['id']}")
self.date.setText(f"{_('Last updated')}: {appInfo['updatedate']}")
self.notes.setText(f"{_('Release notes')}: {appInfo['releasenotes'].replace(r'%bluecolor%', blueColor)}")
self.date.setText(f"{_('Last updated:')} {appInfo['updatedate']}")
self.notes.setText(f"{_('Release notes:')} {appInfo['releasenotes'].replace(r'%bluecolor%', blueColor)}")
self.manifest.setText(f"{_('Manifest')}: <a style=\"color: {blueColor};\" href=\"{'file:///' if not 'https' in appInfo['manifest'] else ''}"+appInfo['manifest'].replace('\\', '/')+f"\">{appInfo['manifest']}</a>")
while self.versionCombo.count()>0:
self.versionCombo.removeItem(0)
Expand Down