Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cinnamon.pot
Original file line number Diff line number Diff line change
Expand Up @@ -4748,7 +4748,7 @@ msgid "Cinnamon Version"
msgstr ""

#: files/usr/share/cinnamon/cinnamon-settings/modules/cs_info.py:120
msgid "Linux Kernel"
msgid "Kernel"
msgstr ""

#: files/usr/share/cinnamon/cinnamon-settings/modules/cs_info.py:121
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def createSystemInfos():
break # No need to continue reading the file once we have found PRETTY_NAME
if 'CINNAMON_VERSION' in os.environ:
infos.append((_("Cinnamon Version"), os.environ['CINNAMON_VERSION']))
infos.append((_("Linux Kernel"), platform.release()))
infos.append((_("Kernel"), platform.release()))
infos.append((_("Processor"), processorName))
if memunit == "kB":
infos.append((_("Memory"), '%.1f %s' % ((float(memsize)/(1024*1024)), _("GiB"))))
Expand Down