You are not logged in.
Pages: 1
Hi Guys,
I have a problem with MenuLibre, when It open it, it don't work and I get this output in the console
(menulibre:148633): Gtk-WARNING **: 00:30:14.065: gtk_menu_attach_to_widget(): menu already attached to GtkMenuButton
(menulibre:148633): Gtk-WARNING **: 00:30:14.163: gtk_menu_attach_to_widget(): menu already attached to GtkMenuButton
Traceback (most recent call last):
File "/usr/lib/python3.8/site-packages/menulibre/MenulibreApplication.py", line 2217, in do_activate
self.win = MenulibreWindow(self, headerbar)
File "/usr/lib/python3.8/site-packages/menulibre/MenulibreApplication.py", line 236, in __init__
self.configure_application_actions(builder)
File "/usr/lib/python3.8/site-packages/menulibre/MenulibreApplication.py", line 390, in configure_application_actions
label=_('Add _Launcher'),
UnicodeDecodeError: 'locale' codec can't decode byte 0xe2 in position 13: decoding error
(Sorry for bad english)
Last edited by ProtonX (2020-06-21 09:39:36)
Offline
What is the output of the following
locale
locale -a
python
>>> import locale
>>> locale.getlocale()
>>> locale.gettext('Add _Launcher')See Code_of_conduct#Pasting_pictures_and_code to post outputs in English.
Offline
[proton@archlinux ~]$ locale
LANG=C
LC_CTYPE="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_COLLATE="C"
LC_MONETARY="C"
LC_MESSAGES="C"
LC_PAPER="C"
LC_NAME="C"
LC_ADDRESS="C"
LC_TELEPHONE="C"
LC_MEASUREMENT="C"
LC_IDENTIFICATION="C"
LC_ALL=
[proton@archlinux ~]$ locale -a
C
POSIX
en_US.utf8
[proton@archlinux ~]$ python
Python 3.8.3 (default, May 17 2020, 18:15:42)
[GCC 10.1.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale
>>> locale.getlocale()
(None, None)
>>> locale.gettext('Add _Launcher')
'Add _Launcher'
>>>
Offline
What is the output of
cat /etc/locale.confOffline
[proton@archlinux ~]$ cat /etc/locale.conf
cat: /etc/locale.conf: No such file or directory
Offline
[proton@archlinux ~]$ cat /etc/locale.conf
cat: /etc/locale.conf: No such file or directory
Offline
You missed a step from Installation_guide#Localization.
Offline
It didn't work
Offline
What is the output now of
cat /etc/locale.conf
localeOffline
[proton@archlinux ~]$ cat /etc/locale.conf
LANG=en_US.UTF-8
[proton@archlinux ~]$ locale
LANG=C
LC_CTYPE="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_COLLATE="C"
LC_MONETARY="C"
LC_MESSAGES="C"
LC_PAPER="C"
LC_NAME="C"
LC_ADDRESS="C"
LC_TELEPHONE="C"
LC_MEASUREMENT="C"
LC_IDENTIFICATION="C"
LC_ALL=
Offline
Please use code tags, not quote tags show file contents and shell I/O
Did it work after a reboot?
Offline
Well, I did a reboot and now it works, Thanks Bro
Offline
Pages: 1