You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the window that pops up when a window is hung, the text "is not responding" is not translated when the language is other than English.
Example (language set to Spanish):
Note that the texts for "Force quit" and "Wait" in the buttons are translated.
Steps to reproduce
Run any program that shows up a window.
Hang that program somehow. Hint: From System Monitor, send a Stop signal to the corresponding process.
Try to interact with the window of the program (e.g. pressing the close button).
The window that says the program is not responing should pop up.
Expected behavior
The window should display the traslation for "is not responding". In the case of Spanish language, it should be "no está respondiendo" as it says here.
Additional information
Line 49 of cinnamon-close-dialog installed as "/usr/bin/cinnamon-close-dialog": text = _("%s is not responding." % title)
In this line of code, the _ function (from the gettext module) receives a formatted text with the title. The formatting should be done after the _(...) call, like the line below: text = _("%s is not responding.") % title
I tried changing that line in my system and the result is as shown above in "Expected behaviour".
This should be a quick fix.
The text was updated successfully, but these errors were encountered:
Distribution
Mint 21.1
Package version
5.6.8
Graphics hardware in use
No response
Frequency
Always
Bug description
On the window that pops up when a window is hung, the text "is not responding" is not translated when the language is other than English.
Example (language set to Spanish):
Note that the texts for "Force quit" and "Wait" in the buttons are translated.
Steps to reproduce
Expected behavior
The window should display the traslation for "is not responding". In the case of Spanish language, it should be "no está respondiendo" as it says here.
Additional information
Line 49 of cinnamon-close-dialog installed as "/usr/bin/cinnamon-close-dialog":
text = _("%s is not responding." % title)
In this line of code, the
_
function (from the gettext module) receives a formatted text with the title. The formatting should be done after the_(...)
call, like the line below:text = _("%s is not responding.") % title
I tried changing that line in my system and the result is as shown above in "Expected behaviour".
This should be a quick fix.
The text was updated successfully, but these errors were encountered: