ubuntu-translations-coordinators team mailing list archive
-
ubuntu-translations-coordinators team
-
Mailing list archive
-
Message #11160
[Bug 1824005] Re: installing / refreshing snap impossible to translate
** Also affects: ubuntu-translations
Importance: Undecided
Status: New
** Changed in: ubuntu-translations
Status: New => Triaged
** Changed in: ubuntu-translations
Importance: Undecided => Medium
--
You received this bug notification because you are a member of Ubuntu
Translations Coordinators, which is subscribed to Ubuntu Translations.
Matching subscriptions: Ubuntu Translations bug mail
https://bugs.launchpad.net/bugs/1824005
Title:
installing / refreshing snap impossible to translate
Status in Release Upgrader:
New
Status in Ubuntu Translations:
Triaged
Status in ubuntu-release-upgrader package in Ubuntu:
In Progress
Status in ubuntu-release-upgrader source package in Eoan:
In Progress
Bug description:
Hi,
In Disco, for ubuntu-release-upgrader package, there is currently an odd string:
%sing snap %s
Manfred Hampl found out:
"that "%s" is a placeholder that is filled with a string parameter, and "ing" is constant text.
Digging into the source https://git.launchpad.net/ubuntu/+source
/ubuntu-release-upgrader/tree/DistUpgrade/DistUpgradeQuirks.py#n459
(not sure whether it is the right version), it seems to be another
example of bad tricks that make translations impossible.
As far as I can see there are two branches, and depending on the status of the snap, it is either installing or refreshing that snap.
The value of "command" is either "install" or "refresh", and the string %sing results either in "installing" or in "refreshing".
With the way that this was done, I do not see any possibility that the
words "install" and "refresh" could be translated to a different
language.
The only reasonable solution that I can suggest is a split into two messages, e.g.
…
if re.search("^installed: ", …
…
command = 'refresh'
self._view.updateStatus(_("refreshing snap %s" % snap))
else:
command = 'install'
self._view.updateStatus(_("installing snap %s" % snap))
try:
self._view.processEvents()
…
This would make the strings easily translatable."
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-upgrader/+bug/1824005/+subscriptions