summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas de Castro Borges <lucas@gnuabordo.com.br>2024-04-22 19:04:44 -0300
committerLucas de Castro Borges <lucas@gnuabordo.com.br>2024-04-22 19:04:44 -0300
commit92787ae0c9bb15c7841d10654ef7a2e595664d99 (patch)
tree15450b2b4454094fc8571ae4932310a229e7519d
parent522813da585389c158c6a84e688bc9f53daea38d (diff)
New upstream version 2.0.14preupstream/2.0.14pre
-rw-r--r--CMakeLists.txt42
-rw-r--r--LICENSE.1674
-rw-r--r--LICENSE.2500
-rw-r--r--README.md23
-rw-r--r--hardinfo2.desktop.cmake2
-rw-r--r--hardinfo2/cpu_util.c2
-rw-r--r--hardinfo2/hardinfo.c29
-rw-r--r--hardinfo2/util.c164
-rw-r--r--hardinfo2/vendor.c2
-rw-r--r--includes/hardinfo.h21
-rw-r--r--includes/shell.h6
-rw-r--r--modules/benchmark.c7
-rw-r--r--modules/computer/modules.c20
-rw-r--r--modules/devices/riscv/processor.c2
-rw-r--r--modules/devices/riscv/riscv_data.c9
-rw-r--r--po/NEW22
-rw-r--r--po/NEW.po5479
-rw-r--r--po/README.md2
-rw-r--r--shell/callbacks.c57
-rw-r--r--shell/report.c2
-rw-r--r--shell/shell.c59
-rwxr-xr-xtools/create_debian_source.sh77
-rwxr-xr-xtools/create_fedora_source.sh39
-rw-r--r--tools/hardinfo2.spec112
24 files changed, 1496 insertions, 5856 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 28182192..66e094f9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,14 +2,14 @@ cmake_minimum_required(VERSION 3.0.0)
cmake_policy(VERSION 3.0.0)
project(hardinfo2)
-set(HARDINFO2_VERSION "2.0.12")
+set(HARDINFO2_VERSION "2.0.14")
option(HARDINFO2_GTK3 "Build for GTK3 (0/off for GTK2)" 1)
option(HARDINFO2_LIBSOUP3 "Build for libsoup-3.0(EXPERIMENTAL) (0/off for libsoup-2.4)" 0)
+#old/unused deprecated - lets us know if anyone uses these below
set(DISTRO "" CACHE STRING "Distro build version eg. 1.el(rpm) or 1(deb)")
set(MAINTAINER "" CACHE STRING "Distro maintainer 'name <email>'")
-#old/unused deprecated - lets us know if anyone uses these below
set(OVRARCH "" CACHE STRING "Override HARDINFO2_ARCH value")
set(OVRCPUINFO "" CACHE STRING "Specify a different file for /proc/cpuinfo")
set(OVRDTRROOT "" CACHE STRING "Specify a different path for /proc/device-tree")
@@ -85,7 +85,6 @@ set(PACKAGE_LIBGLIB2_MINVERSION 2.24)
###################################DISTRO CHANGES###############################
#Please add all distro relates stuff here
-SET(PACKAGE_MANPAGES 1)
set(RPM 0)
file(STRINGS /etc/os-release distro REGEX "^NAME=")
string(REGEX REPLACE "NAME=" "" distro "${distro}")
@@ -120,6 +119,11 @@ if(DISTRO)
string(REGEX REPLACE "[.].*" "" DISTRO_BUILD_VER ${DISTRO})
set(CPACK_PACKAGE_VERSION "${HARDINFO2_VERSION}-${DISTRO_BUILD_VER}")
set(PACKAGE_DISTRO "${HARDINFO2_VERSION}-${DISTRO}")
+ if(${DISTRO_BUILD_VER} MATCHES "src")
+ SET(CPACK_RPM_USER_BINARY_SPECFILE "hardinfo2.spec")
+ set(CPACK_PACKAGE_VERSION "${HARDINFO2_VERSION}")
+ set(PACKAGE_DISTRO "${HARDINFO2_VERSION}")
+ endif()
if(${HARDINFO2_GTK3})
else()
message(FATAL_ERROR "Distro-Building not supported with GTK2!!")
@@ -133,11 +137,11 @@ else()
set(PACKAGE_MAINTAINER "hwspeedy <hardinfo2@bigbear.dk>")
endif()
#Put it together
-string(REPLACE " " "_" CPACK_PACKAGE_FILE_NAME "hardinfo${PACKAGE_DELIMITER}${PACKAGE_DISTRO}${PACKAGE_ARCHITECTURE}")
+string(REPLACE " " "${PACKAGE_DELIMITER}" CPACK_PACKAGE_FILE_NAME "hardinfo2${PACKAGE_DELIMITER}${PACKAGE_DISTRO}${PACKAGE_ARCHITECTURE}")
if(${RPM})
- string(REPLACE " " "_" CPACK_SOURCE_PACKAGE_FILE_NAME "hardinfo${PACKAGE_DELIMITER}${HARDINFO2_VERSION}.src")
+ string(REPLACE " " "-" CPACK_SOURCE_PACKAGE_FILE_NAME "hardinfo2-${PACKAGE_DISTRO}")
else()
- string(REPLACE " " "_" CPACK_SOURCE_PACKAGE_FILE_NAME "hardinfo-${HARDINFO2_VERSION}")
+ string(REPLACE " " "_" CPACK_SOURCE_PACKAGE_FILE_NAME "hardinfo2-${HARDINFO2_VERSION}")
endif()
message("-- Found Package Target ${CPACK_PACKAGE_FILE_NAME}")
message("-- Found Package Version ${CPACK_PACKAGE_VERSION}")
@@ -181,10 +185,7 @@ if(${distro}${disversion} MATCHES "DebianGNULinux11")
set(HARDINFO2_LIBSOUP3 0)
endif()
-#Fedora 39 - bug with man pages - probably needs upgrade..
-if(${distro}${disversion} MATCHES "FedoraLinux39")
- set(PACKAGE_MANPAGES 0)
-endif()
+#Fedora 39 - bug with man pages - upgrade cmake to 3.28.x
################################################################################
if(${CMAKE_BUILD_TYPE} MATCHES [Dd]ebug)
@@ -258,11 +259,9 @@ set(HARDINFO2_RESOURCES
"data/pci.ids"
"data/kernel-module-icons.json"
)
-if(${PACKAGE_MANPAGES})
set(HARDINFO2_MANPAGES
"hardinfo2.1"
)
-endif()
set(MODULE_computer_SOURCES
modules/computer.c
modules/computer/alsa.c
@@ -525,28 +524,29 @@ install(FILES pixmaps/hardinfo2.png
########################PACKAGE BUILDING FOR DISTROS###########################
#Please update here for building packages
-#keep package name as hardinfo to allow for upgrading in distro
-SET(CPACK_PACKAGE_NAME "hardinfo")
-SET(CPACK_SOURCE_PACKAGE_NAME "hardinfo")
SET(CPACK_PACKAGE_HOMEPAGE_URL "https://www.hardinfo2.org")
if(${RPM})
- SET(CPACK_SOURCE_IGNORE_FILES "/build/;/.git/;/.github/;.gitignore;.gitmodules;*.po.old;*~;*.mo;*.dsc;/debian/")
- SET(CPACK_SOURCE_GENERATOR "RPM")
+ set(CPACK_PACKAGING_INSTALL_PREFIX "/usr")
+ SET(CPACK_SOURCE_IGNORE_FILES "/build/;/.git/;/.github/;.gitignore;.gitmodules;*.po.old;*~;*.mo;")
+ SET(CPACK_SOURCE_GENERATOR "RPM;TGZ")
SET(CPACK_GENERATOR "RPM")
SET(PACKAGE_GTK2 "libgtk-2-0")
else()
SET(CPACK_SOURCE_IGNORE_FILES "/build/;/.git/;/.github/;.gitignore;.gitmodules;*.po.old;*~;*.mo")
- SET(CPACK_SOURCE_GENERATOR "TGZ")
+ SET(CPACK_SOURCE_GENERATOR "DEB;TGZ")
SET(CPACK_GENERATOR "DEB")
SET(PACKAGE_GTK2 "libgtk2.0-0")
endif()
#RPM
+SET(CPACK_RPM_PACKAGE_OBSOLETES "hardinfo")
SET(CPACK_RPM_PACKAGE_MAINTAINER ${PACKAGE_MAINTAINER})
-SET(CPACK_RPM_PACKAGE_DESCRIPTION "Hardinfo2 is a small application that displays information about your hardware and operating system. It has online benchmarking to check your machine performance against other machines.")
+SET(CPACK_RPM_PACKAGE_DESCRIPTION "Hardinfo2 - System Information and Benchmark")
SET(CPACK_RPM_PACKAGE_RECOMMENDS "sysbench, udisks2, mesa-utils, lsscsi, lm-sensors, xdg-utils, iperf3")
SET(CPACK_RPM_PACKAGE_LICENSE "GPL2+")
SET(CPACK_RPM_PACKAGE_HOMEPAGE "https://github.com/hardinfo2/hardinfo2")
+SET(CPACK_RPM_PACKAGE_URL "https://www.hardinfo2.org")
+#SET(CPACK_RPM_SOURCE_PKG_BUILD_PARAMS "-DDISTRO=1")
if(HARDINFO2_LIBSOUP3)
SET(PACKAGE_LS "libsoup (>=3.0)")
else()
@@ -560,8 +560,10 @@ endif()
SET(CPACK_RPM_PACKAGE_DEPENDS "libjson-glib-1.0-0, zlib, ${PACKAGE_LS}, ${PACKAGE_GTK}, libglib2.0-0 (>=2.10)")
#DEB
+SET(CPACK_DEBIAN_PACKAGE_REPLACES "hardinfo")
+SET(CPACK_DEBIAN_PACKAGE_BREAKS "hardinfo")
SET(CPACK_DEBIAN_PACKAGE_MAINTAINER ${PACKAGE_MAINTAINER})
-SET(CPACK_DEBIAN_PACKAGE_DESCRIPTION "Hardinfo2 is a small application that displays information about your hardware and operating system. It has online benchmarking to check your machine performance against other machines.")
+SET(CPACK_DEBIAN_PACKAGE_DESCRIPTION "Hardinfo2 - System Information and Benchmark")
SET(CPACK_DEBIAN_PACKAGE_RECOMMENDS "sysbench, udisks2, mesa-utils, lsscsi, lm-sensors, xdg-utils, iperf3")
SET(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://github.com/hardinfo2/hardinfo2")
if(HARDINFO2_LIBSOUP3)
diff --git a/LICENSE.1 b/LICENSE.1
new file mode 100644
index 00000000..ac704766
--- /dev/null
+++ b/LICENSE.1
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3 or Later, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ <program> Copyright (C) <year> <name of author>
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<http://www.gnu.org/licenses/>.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
diff --git a/LICENSE.2 b/LICENSE.2
new file mode 100644
index 00000000..62d9ee95
--- /dev/null
+++ b/LICENSE.2
@@ -0,0 +1,500 @@
+GNU LESSER GENERAL PUBLIC LICENSE
+ Version 2.1 or Later, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL. It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+ This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it. You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+ When we speak of free software, we are referring to freedom of use,
+not price. Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+ To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights. These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+ For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you. You must make sure that they, too, receive or can get the source
+code. If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it. And you must show them these terms so they know their rights.
+
+ We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+ To protect each distributor, we want to make it very clear that
+there is no warranty for the free library. Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+ Finally, software patents pose a constant threat to the existence of
+any free program. We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder. Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+ Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License. This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License. We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+ When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library. The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom. The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+ We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License. It also provides other free software developers Less
+of an advantage over competing non-free programs. These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries. However, the Lesser license provides advantages in certain
+special circumstances.
+
+ For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard. To achieve this, non-free programs must be
+allowed to use the library. A more frequent case is that a free
+library does the same job as widely used non-free libraries. In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+ In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software. For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+ Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+ The precise terms and conditions for copying, distribution and
+modification follow. Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library". The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+ A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+ The "Library", below, refers to any such software library or work
+which has been distributed under these terms. A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language. (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+ "Source code" for a work means the preferred form of the work for
+making modifications to it. For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+ Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it). Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+ 1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+ You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+ 2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) The modified work must itself be a software library.
+
+ b) You must cause the files modified to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ c) You must cause the whole of the work to be licensed at no
+ charge to all third parties under the terms of this License.
+
+ d) If a facility in the modified Library refers to a function or a
+ table of data to be supplied by an application program that uses
+ the facility, other than as an argument passed when the facility
+ is invoked, then you must make a good faith effort to ensure that,
+ in the event an application does not supply such function or
+ table, the facility still operates, and performs whatever part of
+ its purpose remains meaningful.
+
+ (For example, a function in a library to compute square roots has
+ a purpose that is entirely well-defined independent of the
+ application. Therefore, Subsection 2d requires that any
+ application-supplied function or table used by this function must
+ be optional: if the application does not supply it, the square
+ root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library. To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License. (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.) Do not make any other change in
+these notices.
+
+ Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+ This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+ 4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+ If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library". Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+ However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library". The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+ When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library. The
+threshold for this to be true is not precisely defined by law.
+
+ If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work. (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+ Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+ 6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+ You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License. You must supply a copy of this License. If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License. Also, you must do one
+of these things:
+
+ a) Accompany the work with the complete corresponding
+ machine-readable source code for the Library including whatever
+ changes were used in the work (which must be distributed under
+ Sections 1 and 2 above); and, if the work is an executable linked
+ with the Library, with the complete machine-readable "work that
+ uses the Library", as object code and/or source code, so that the
+ user can modify the Library and then relink to produce a modified
+ executable containing the modified Library. (It is understood
+ that the user who changes the contents of definitions files in the
+ Library will not necessarily be able to recompile the application
+ to use the modified definitions.)
+
+ b) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (1) uses at run time a
+ copy of the library already present on the user's computer system,
+ rather than copying library functions into the executable, and (2)
+ will operate properly with a modified version of the library, if
+ the user installs one, as long as the modified version is
+ interface-compatible with the version that the work was made with.
+
+ c) Accompany the work with a written offer, valid for at
+ least three years, to give the same user the materials
+ specified in Subsection 6a, above, for a charge no more
+ than the cost of performing this distribution.
+
+ d) If distribution of the work is made by offering access to copy
+ from a designated place, offer equivalent access to copy the above
+ specified materials from the same place.
+
+ e) Verify that the user has already received a copy of these
+ materials or that you have already sent this user a copy.
+
+ For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it. However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+ It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system. Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+ 7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+ a) Accompany the combined library with a copy of the same work
+ based on the Library, uncombined with any other library
+ facilities. This must be distributed under the terms of the
+ Sections above.
+
+ b) Give prominent notice with the combined library of the fact
+ that part of it is a work based on the Library, and explaining
+ where to find the accompanying uncombined form of the same work.
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License. Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License. However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+ 9. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Library or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+ 10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all. For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded. In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+ 13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation. If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+ 14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission. For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this. Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+ NO WARRANTY
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Libraries
+
+ If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change. You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms of the
+ordinary General Public License).
+
+ To apply these terms, attach the following notices to the library. It is
+safest to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the library's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the library, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+ <signature of Ty Coon>, 1 April 1990
+ Ty Coon, President of Vice
diff --git a/README.md b/README.md
index ed4a42ab..e6bfb8d0 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
HARDINFO2
=========
-Hardinfo2 is based on hardinfo, which have not been released >10 years. Hardinfo2 is the reboot that was needed.
+Hardinfo2 is based on hardinfo, which has not been released >10 years. Hardinfo2 is the reboot that was needed.
Hardinfo2 offers System Information and Benchmark for Linux Systems. It is able to
obtain information from both hardware and basic software. It can benchmark your system and compare
@@ -25,7 +25,7 @@ Server code can be found here: [https://github.com/hardinfo2/server](https://git
Dependencies
------------
-- GTK3 >=3.00 or GTK2+ >=2.20 - Prefer **GTK3** (GTK2+: cmake -DHARDINFO2_GTK3=0 ..)
+- GTK3 >=3.00 or GTK2+ >=2.20 - (GTK2+ DEPRECATED: cmake -DHARDINFO2_GTK3=0 ..)
- GLib >=2.24
- Zlib
- glib JSON
@@ -42,7 +42,7 @@ Building and installing
- cd build
- cmake ..
- make package -j (Creates package so you do not polute your distro and it can be updated by distro releases)
-- sudo apt install ./hardinfo_* (Use reinstall instead of install if already inst.)
+- sudo apt install ./hardinfo2_* (Use reinstall instead of install if already inst.)
- sudo apt install lm-sensors sysbench lsscsi mesa-utils dmidecode udisks2 xdg-utils iperf3
- hardinfo2
@@ -57,22 +57,17 @@ Building and installing
- cd build
- cmake ..
- make package -j (Creates package so you do not polute your distro and it can be updated by distro releases)
-- sudo yum install ./hardinfo-* (Use reinstall instead of install if already inst.)
+- sudo yum install ./hardinfo2-* (Use reinstall instead of install if already inst.)
- sudo yum install lm_sensors sysbench lsscsi glx-utils dmidecode udisks2 xdg-utils iperf3
- hardinfo2
**openSUSE**: use zypper instead of yum, use libsoup2-devel instead of libsoup-devel
-
-Distro building
----------------
-For distribution in the different distros - please use the cmake build system with CPack:
-- cmake -DDISTRO=1.el8 -DMAINTAINER="name \<email\>" .. (rpm style)
-- cmake -DDISTRO=1 -DMAINTAINER="name \<email\>" .. (deb style)
-- make package
-- make package_source
-
-Please add/change CMakeLists.txt for your distro, so we have an easy to use package for all distributions.
+**ArchLinux/Garuda/Manjaro - AUR Package**
+ - git clone https://aur.archlinux.org/hardinfo2.git (hardinfo2-git.git for unstable master only developers)
+ - cd hardinfo2
+ - makepkg -cis
+ - hardinfo2
Setting up addition tools
---------------------------
diff --git a/hardinfo2.desktop.cmake b/hardinfo2.desktop.cmake
index ea8329bb..d6706c49 100644
--- a/hardinfo2.desktop.cmake
+++ b/hardinfo2.desktop.cmake
@@ -8,5 +8,5 @@ Icon=hardinfo2
Terminal=false
Type=Application
StartupNotify=true
-Categories=System;Utilities;
+Categories=System;Utility;
Keywords=linux;kernel;system;hardware;cpu;processor;capabilities;frequency;memory;ram;board;resources;sensors;devices;usb;pci;display;network;benchmark;test;
diff --git a/hardinfo2/cpu_util.c b/hardinfo2/cpu_util.c
index acbe63db..4248509b 100644
--- a/hardinfo2/cpu_util.c
+++ b/hardinfo2/cpu_util.c
@@ -113,7 +113,7 @@ int cpu_procs_cores_threads_nodes(int *p, int *c, int *t, int *n)
}
if (!*c)
- *c = 1;
+ *c = *t; //if no cores, set to threads - probably SBC, best for benchmark
if (!*p)
*p = 1;
if (!*n)
diff --git a/hardinfo2/hardinfo.c b/hardinfo2/hardinfo.c
index 5d4655c3..e2f11cdf 100644
--- a/hardinfo2/hardinfo.c
+++ b/hardinfo2/hardinfo.c
@@ -68,8 +68,6 @@ int main(int argc, char **argv)
DEBUG(" Debugging is enabled.");
- /* show also available modules */
- params.list_modules = TRUE;
}
/* initialize the binreloc library, so we can load program data */
@@ -79,25 +77,6 @@ int main(int argc, char **argv)
"\342\200\242 See if %s and %s exists and you have read permission."),
PREFIX, LIBPREFIX);
- /* list all module names */
- if (params.list_modules) {
- g_print(_("Modules:\n"
- "%-20s %-15s %-12s\n"), _("File Name"), _("Name"), _("Version"));
-
- for (modules = modules_load_all(); modules;
- modules = modules->next) {
- ShellModule *module = (ShellModule *) modules->data;
- const ModuleAbout *ma = module_get_about(module);
- gchar *name = g_path_get_basename(g_module_name(module->dll));
-
- g_print("%-20s %-15s %-12s\n", name, module->name, ma->version);
-
- g_free(name);
- }
-
- return 0;
- }
-
if (!params.create_report && !params.run_benchmark) {
/* we only try to open the UI if the user didn't ask for a report. */
params.gui_running = ui_init(&argc, &argv);
@@ -112,15 +91,9 @@ int main(int argc, char **argv)
}
}
- if (params.use_modules) {
- /* load only selected modules */
- DEBUG("loading user-selected modules");
- modules = modules_load_selected();
- } else {
/* load all modules */
DEBUG("loading all modules");
modules = modules_load_all();
- }
/* initialize vendor database */
vendor_init();
@@ -133,7 +106,7 @@ int main(int argc, char **argv)
result = module_call_method_param("benchmark::runBenchmark", params.run_benchmark);
if (!result) {
- fprintf(stderr, _("Unknown benchmark ``%s'' or benchmark.so not loaded"), params.run_benchmark);
+ fprintf(stderr, _("Unknown benchmark ``%s''"), params.run_benchmark);
exit_code = 1;
} else {
fprintf(stderr, "\n");
diff --git a/hardinfo2/util.c b/hardinfo2/util.c
index c3b138c9..cbabcc53 100644
--- a/hardinfo2/util.c
+++ b/hardinfo2/util.c
@@ -47,8 +47,6 @@
#define TiB 1099511627776
#define PiB 1125899906842624
-static GSList *modules_list = NULL;
-
void sync_manager_clear_entries(void);
gchar *find_program(gchar *program_name)
@@ -383,18 +381,15 @@ log_handler(const gchar * log_domain,
void parameters_init(int *argc, char ***argv, ProgramParameters * param)
{
- static gboolean create_report = FALSE;
- static gboolean force_all_details = FALSE;
- static gboolean show_version = FALSE;
- static gboolean list_modules = FALSE;
- static gboolean autoload_deps = FALSE;
- static gboolean skip_benchmarks = FALSE;
- static gboolean quiet = FALSE;
+ static gint create_report = FALSE;
+ static gint force_all_details = FALSE;
+ static gint show_version = FALSE;
+ static gint skip_benchmarks = FALSE;
+ static gint quiet = FALSE;
static gchar *report_format = NULL;
static gchar *run_benchmark = NULL;
static gchar *result_format = NULL;
static gchar *bench_user_note = NULL;
- static gchar **use_modules = NULL;
static gint max_bench_results = 50;
static GOptionEntry options[] = {
@@ -421,7 +416,7 @@ void parameters_init(int *argc, char ***argv, ProgramParameters * param)
.short_name = 'b',
.arg = G_OPTION_ARG_STRING,
.arg_data = &run_benchmark,
- .description = N_("run benchmark; requires benchmark.so to be loaded")},
+ .description = N_("run benchmark eg. -b 'FPU FFT'")},
{
.long_name = "user-note",
.short_name = 'u',
@@ -440,26 +435,6 @@ void parameters_init(int *argc, char ***argv, ProgramParameters * param)
.arg = G_OPTION_ARG_INT,
.arg_data = &max_bench_results,
.description = N_("maximum number of benchmark results to include (-1 for no limit, default is 50)")},
-//#if NOT_DEFINED
- {
- .long_name = "list-modules",
- .short_name = 'l',
- .arg = G_OPTION_ARG_NONE,
- .arg_data = &list_modules,
- .description = N_("lists modules")},
- {
- .long_name = "load-module",
- .short_name = 'm',
- .arg = G_OPTION_ARG_STRING_ARRAY,
- .arg_data = &use_modules,
- .description = N_("specify module to load")},
- {
- .long_name = "autoload-deps",
- .short_name = 'a',
- .arg = G_OPTION_ARG_NONE,
- .arg_data = &autoload_deps,
- .description = N_("automatically load module dependencies")},
-//#endif
{
.long_name = "version",
.short_name = 'v',
@@ -482,7 +457,7 @@ void parameters_init(int *argc, char ***argv, ProgramParameters * param)
};
GOptionContext *ctx;
- ctx = g_option_context_new(_("- System Profiler and Benchmark tool"));
+ ctx = g_option_context_new(_("- System Information and Benchmark"));
g_option_context_set_ignore_unknown_options(ctx, FALSE);
g_option_context_set_help_enabled(ctx, TRUE);
@@ -500,12 +475,9 @@ void parameters_init(int *argc, char ***argv, ProgramParameters * param)
param->create_report = create_report;
param->report_format = REPORT_FORMAT_TEXT;
param->show_version = show_version;
- param->list_modules = list_modules;
- param->use_modules = use_modules;
param->run_benchmark = run_benchmark;
param->result_format = result_format;
param->max_bench_results = max_bench_results;
- param->autoload_deps = autoload_deps;
param->skip_benchmarks = skip_benchmarks;
param->force_all_details = force_all_details;
param->quiet = quiet;
@@ -545,7 +517,7 @@ void parameters_init(int *argc, char ***argv, ProgramParameters * param)
g_free(confdir);
}
-gboolean ui_init(int *argc, char ***argv)
+gint ui_init(int *argc, char ***argv)
{
DEBUG("initializing gtk+ UI");
@@ -835,29 +807,6 @@ static gint module_cmp(gconstpointer m1, gconstpointer m2)
return a->weight - b->weight;
}
-#if 0
-static void module_entry_free(gpointer data, gpointer user_data)
-{
- ShellModuleEntry *entry = (ShellModuleEntry *) data;
-
- if (entry) {
- g_free(entry->name);
- g_object_unref(entry->icon);
-
- g_free(entry);
- }
-}
-#endif
-
-const ModuleAbout *module_get_about(ShellModule * module)
-{
- if (module->aboutfunc) {
- return module->aboutfunc();
- }
-
- return NULL;
-}
-
static GSList *modules_check_deps(GSList * modules)
{
GSList *mm;
@@ -886,7 +835,7 @@ static GSList *modules_check_deps(GSList * modules)
}
if (!found) {
- if (params.autoload_deps) {
+ if (0){//params.autoload_deps) {
ShellModule *mod = module_load(deps[i]);
if (mod)
@@ -937,94 +886,23 @@ static GSList *modules_check_deps(GSList * modules)
return modules;
}
-
-GSList *modules_get_list()
-{
- return modules_list;
-}
-
-//Compatibility
-#if GLIB_CHECK_VERSION(2,44,0)
-#else
-static inline gpointer
-g2_steal_pointer (gpointer pp)
-{
- gpointer *ptr = (gpointer *) pp;
- gpointer ref;
-
- ref = *ptr;
- *ptr = NULL;
-
- return ref;
-}
-#endif
-
-static GSList *modules_load(gchar ** module_list)
+GSList *modules_load_all(void)
{
- GDir *dir;
GSList *modules = NULL;
ShellModule *module;
- gchar *filename;
-
- filename = g_build_filename(params.path_lib, "modules", NULL);
- dir = g_dir_open(filename, 0, NULL);
- g_free(filename);
-
- if (dir) {
- GList *filenames = NULL;
- while ((filename = (gchar *)g_dir_read_name(dir))) {
- if (g_strrstr(filename, "." G_MODULE_SUFFIX) &&
- module_in_module_list(filename, module_list)) {
- if (g_strrstr(filename, "devices." G_MODULE_SUFFIX)) {
- filenames = g_list_prepend(filenames, filename);
- }
- else {
- filenames = g_list_append(filenames, filename);
- }
- }
- }
- GList* item = NULL;
- while (item = g_list_first(filenames)) {
- if (module = module_load((gchar *)item->data)) {
- modules = g_slist_prepend(modules, module);
- }
- filenames = g_list_delete_link(filenames, item);
- }
-#if GLIB_CHECK_VERSION(2,44,0)
- g_list_free_full (g_steal_pointer (&filenames), g_object_unref);
-#else
- g_list_free_full (g2_steal_pointer (&filenames), g_object_unref);
-#endif
- g_dir_close(dir);
- }
-
- modules = modules_check_deps(modules);
-
- if (g_slist_length(modules) == 0) {
- if (params.use_modules == NULL) {
- g_error
- (_("No module could be loaded. Check permissions on \"%s\" and try again."),
- params.path_lib);
- } else {
- g_error
- (_("No module could be loaded. Please use hardinfo2 -l to list all avai"
- "lable modules and try again with a valid module list."));
-
- }
+ gchar *filenames[]={"devices.so","computer.so","benchmark.so","network.so"};
+ int i=0;
+
+ while(i<4) {
+ if (module = module_load(filenames[i])) {
+ modules = g_slist_prepend(modules, module);
+ }
+ i++;
}
- modules_list = g_slist_sort(modules, module_cmp);
- return modules_list;
-}
-
-GSList *modules_load_selected(void)
-{
- return modules_load(params.use_modules);
-}
-
-GSList *modules_load_all(void)
-{
- return modules_load(NULL);
+ //modules = modules_check_deps(modules);
+ modules = g_slist_sort(modules, module_cmp);
+ return modules;
}
gint tree_view_get_visible_height(GtkTreeView * tv)
diff --git a/hardinfo2/vendor.c b/hardinfo2/vendor.c
index 2031ac44..3d7092cc 100644
--- a/hardinfo2/vendor.c
+++ b/hardinfo2/vendor.c
@@ -206,7 +206,7 @@ static int read_from_vendor_ids(const char *path) {
void vendor_init(void)
{
- gchar *path;
+ gchar *path=NULL;
static SyncEntry se1;
static SyncEntry se2 = {
.name = N_("Update vendor list"),
diff --git a/includes/hardinfo.h b/includes/hardinfo.h
index 872a29fc..9c229289 100644
--- a/includes/hardinfo.h
+++ b/includes/hardinfo.h
@@ -50,14 +50,12 @@ typedef struct _FileTypes FileTypes;
typedef struct _ProgramParameters ProgramParameters;
struct _ProgramParameters {
- gboolean create_report;
- gboolean force_all_details; /* for create_report, include any "moreinfo" that exists for any item */
- gboolean show_version;
- gboolean gui_running;
- gboolean list_modules;
- gboolean autoload_deps;
- gboolean skip_benchmarks;
- gboolean quiet;
+ gint create_report;
+ gint force_all_details; /* for create_report, include any "moreinfo" that exists for any item */
+ gint show_version;
+ gint gui_running;
+ gint skip_benchmarks;
+ gint quiet;
/*
* OK to use the common parts of HTML(4.0) and Pango Markup
@@ -65,13 +63,11 @@ struct _ProgramParameters {
* Including the (b,big,i,s,sub,sup,small,tt,u) tags.
* https://developer.gnome.org/pango/stable/PangoMarkupFormat.html
*/
- gboolean markup_ok;
+ gint markup_ok;
int fmt_opts;
gint report_format;
gint max_bench_results;
-
- gchar **use_modules;
gchar *run_benchmark;
gchar *bench_user_note;
gchar *result_format;
@@ -134,7 +130,6 @@ GSList *modules_get_list(void);
GSList *modules_load_selected(void);
GSList *modules_load_all(void);
void module_unload_all(void);
-const ModuleAbout *module_get_about(ShellModule *module);
gchar *seconds_to_string(unsigned int seconds);
gchar *h_strdup_cprintf(const gchar *format, gchar *source, ...)
@@ -155,7 +150,7 @@ gchar *module_entry_get_moreinfo(ShellModuleEntry * module_entry, gchar *
gboolean binreloc_init(gboolean try_hardcoded);
/* GTK UI stuff */
-gboolean ui_init(int *argc, char ***argv);
+gint ui_init(int *argc, char ***argv);
void parameters_init(int *argc, char ***argv, ProgramParameters *params);
extern ProgramParameters params;
diff --git a/includes/shell.h b/includes/shell.h
index ab39106c..223326fb 100644
--- a/includes/shell.h
+++ b/includes/shell.h
@@ -79,7 +79,6 @@ typedef enum {
struct _Shell {
GtkWidget *window, *vbox;
GtkWidget *status, *progress;
- GtkWidget *remote_label;
GtkWidget *notebook;
GtkWidget *hbox, *vpaned;
@@ -217,11 +216,6 @@ void shell_set_title(Shell *shell, char *subtitle);
void shell_add_modules_to_gui(gpointer _shell_module, gpointer _shell_tree);
-void shell_save_hosts_file(void);
-void shell_update_remote_menu(void);
-
-void shell_set_remote_label(Shell *shell, gchar *label);
-
/* decode special information in keys
*
* key syntax:
diff --git a/modules/benchmark.c b/modules/benchmark.c
index 18156e01..511c984e 100644
--- a/modules/benchmark.c
+++ b/modules/benchmark.c
@@ -253,7 +253,7 @@ bench_value benchmark_parallel_for(gint n_threads,
{
gchar *temp;
int cpu_procs, cpu_cores, cpu_threads, cpu_nodes;
- guint iter_per_thread, iter, thread_number = 0;
+ guint iter_per_thread=1, iter, thread_number = 0;
GSList *threads = NULL, *t;
GTimer *timer;
@@ -603,7 +603,6 @@ do_benchmark_handler(GIOChannel *source, GIOCondition condition, gpointer data)
GIOStatus status;
gchar *result;
bench_value r = EMPTY_BENCH_VALUE;
-
status = g_io_channel_read_line(source, &result, NULL, NULL, NULL);
if (status != G_IO_STATUS_NORMAL) {
DEBUG("error while reading benchmark result");
@@ -633,9 +632,7 @@ static void do_benchmark(void (*benchmark_function)(void), int entry)
return;
if (params.gui_running) {
- gchar *argv[] = {params.argv0, "-b", entries[entry].name,
- "-m", "benchmark.so", "-a",
- NULL};
+ gchar *argv[] = {params.argv0, "-b",entries[entry].name,NULL};
GPid bench_pid;
gint bench_stdout;
GtkWidget *bench_dialog;
diff --git a/modules/computer/modules.c b/modules/computer/modules.c
index 4c0c54ea..cec2d42e 100644
--- a/modules/computer/modules.c
+++ b/modules/computer/modules.c
@@ -238,11 +238,14 @@ static const gchar* get_module_icon(const char *modname, const char *path)
return NULL;
}
+gint compar (gpointer a, gpointer b) {return strcmp( (char*)a, (char*)b );}
+
void scan_modules_do(void) {
FILE *lsmod;
gchar buffer[1024];
gchar *lsmod_path;
gchar *module_icons;
+ GList *list=NULL,*a;
const gchar *icon;
if (!_module_hash_table) { _module_hash_table = g_hash_table_new(g_str_hash, g_str_equal); }
@@ -264,7 +267,13 @@ void scan_modules_do(void) {
(void)fgets(buffer, 1024, lsmod); /* Discards the first line */
+ //Sort modules
while (fgets(buffer, 1024, lsmod)) {
+ list=g_list_prepend(list,g_strdup(buffer));
+ }
+ list=g_list_sort(list,(GCompareFunc)compar);
+
+ while (list) {
gchar *buf, *strmodule, *hashkey;
gchar *author = NULL, *description = NULL, *license = NULL, *deps = NULL, *vermagic = NULL,
*filename = NULL, *srcversion = NULL, *version = NULL, *retpoline = NULL,
@@ -274,9 +283,7 @@ void scan_modules_do(void) {
shell_status_pulse();
- buf = buffer;
-
- sscanf(buf, "%s %ld", modname, &memory);
+ sscanf(list->data, "%s %ld", modname, &memory);
hashkey = g_strdup_printf("MOD%s", modname);
buf = g_strdup_printf("/sbin/modinfo %s 2>/dev/null", modname);
@@ -388,7 +395,14 @@ void scan_modules_do(void) {
g_free(version);
g_free(retpoline);
g_free(intree);
+
+ //next and free
+ a=list;
+ list=list->next;
+ free(a->data);
+ g_list_free_1(a);
}
+
pclose(lsmod);
g_free(lsmod_path);
diff --git a/modules/devices/riscv/processor.c b/modules/devices/riscv/processor.c
index d44ca542..cd8da4c7 100644
--- a/modules/devices/riscv/processor.c
+++ b/modules/devices/riscv/processor.c
@@ -104,7 +104,7 @@ processor_scan(void)
processor = (Processor *) pi->data;
/* strings can't be null or segfault later */
- STRIFNULL(processor->model_name, _("RISC-V Processor") );
+ STRIFNULL(processor->model_name, "RISC-V Processor" );
UNKIFNULL(processor->mmu);
UNKIFNULL(processor->isa);
UNKIFNULL(processor->uarch);
diff --git a/modules/devices/riscv/riscv_data.c b/modules/devices/riscv/riscv_data.c
index 917e8e06..526067d3 100644
--- a/modules/devices/riscv/riscv_data.c
+++ b/modules/devices/riscv/riscv_data.c
@@ -47,6 +47,9 @@ static struct {
{ "Q", NC_("rv-ext", /*/ext:Q*/ "Floating-point instructions, quad-precision") },
{ "B", NC_("rv-ext", /*/ext:B*/ "Bit manipulation instructions") },
{ "V", NC_("rv-ext", /*/ext:V*/ "Vector operations") },
+ { "Zk", NC_("rv-ext", /*/ext:Zk*/ "Scalar Cryptography") },
+ { "S", NC_("rv-ext", /*/ext:S*/ "Supervisor-level Instructions") },
+ { "U", NC_("rv-ext", /*/ext:U*/ "User Mode") },
{ "T", NC_("rv-ext", /*/ext:T*/ "Transactional memory") },
{ "P", NC_("rv-ext", /*/ext:P*/ "Packed SIMD instructions") },
{ "L", NC_("rv-ext", /*/ext:L*/ "Decimal floating-point instructions") },
@@ -139,10 +142,10 @@ static int riscv_isa_next(const char *isap, char *flag) {
}
switch(*p) {
- case 'S': case 's': /* supervisor extension */
- case 'X': case 'x': /* custom extension */
+ // case 'S': case 's': /* supervisor extension */
+ // case 'X': case 'x': /* custom extension */
/* custom supervisor extension (SX..) handled by S */
- break;
+ // break;
default: /* single character (standard) extension */
tag_len = 1;
if (next_digit != p+1) ver_len = 0;
diff --git a/po/NEW b/po/NEW
new file mode 100644
index 00000000..dc0edf1f
--- /dev/null
+++ b/po/NEW
@@ -0,0 +1,22 @@
+# FIX-LANGUAGE translations for PACKAGE package
+# FIX-LANGUAGE translation for PACKAGE.
+# Copyright (C) HardInfo Project
+# This file is distributed under the same license as the PACKAGE package.
+# FIX-YOUR-NAME
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2024-02-28 08:09+0100\n"
+"PO-Revision-Date: FIX-DATE-2016-06-10 12:11+0200\n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Language: FIX-LANGUAGE-2LETTER-SMALLCAPS\n"
+"X-Poedit-Basepath: ../\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.8.7.1\n"
+
diff --git a/po/NEW.po b/po/NEW.po
deleted file mode 100644
index 211c1693..00000000
--- a/po/NEW.po
+++ /dev/null
@@ -1,5479 +0,0 @@
-# FIX-LANGUAGE translations for PACKAGE package
-# FIX-LANGUAGE translation for PACKAGE.
-# Copyright (C) HardInfo Project
-# This file is distributed under the same license as the PACKAGE package.
-# FIX-YOUR-NAME
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-02-28 08:09+0100\n"
-"PO-Revision-Date: FIX-DATE-2016-06-10 12:11+0200\n"
-"Last-Translator: \n"
-"Language-Team: \n"
-"Language: FIX-LANGUAGE-2LETTER-SMALLCAPS\n"
-"X-Poedit-Basepath: ../\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 1.8.7.1\n"
-
-#: shell/callbacks.c:175
-#, c-format
-msgid ""
-"Written by %s\n"
-"Licensed under %s"
-msgstr ""
-
-#: shell/callbacks.c:189
-#, c-format
-msgid "No about information is associated with the %s module."
-msgstr ""
-
-#: shell/callbacks.c:279 shell/shell.c:414
-msgid "System Information and Benchmark"
-msgstr ""
-
-#: shell/callbacks.c:284
-msgid ""
-"HardInfo2 is free software; you can redistribute it and/or modify it under "
-"the terms of the GNU General Public License as published by the Free "
-"Software Foundation, version 2 or later.\n"
-"\n"
-"This program is distributed in the hope that it will be useful, but WITHOUT "
-"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
-"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for "
-"more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License along with "
-"this program; if not, write to the Free Software Foundation, Inc., 51 "
-"Franklin St, Fifth Floor, Boston, MA 02110-1301 USA"
-msgstr ""
-
-#: shell/menu.c:43
-msgid "_Information"
-msgstr ""
-
-#: shell/menu.c:45
-msgid "_View"
-msgstr ""
-
-#: shell/menu.c:46
-msgid "_Help"
-msgstr ""
-
-#: shell/menu.c:51
-msgid "Generate _Report"
-msgstr ""
-
-#: shell/menu.c:52
-msgid "Generates a report with detailed system information"
-msgstr ""
-
-#: shell/menu.c:56 shell/syncmanager.c:587
-msgid "Synchronize"
-msgstr ""
-
-#: shell/menu.c:57
-msgid "Send benchmark results and receive updated data from the network"
-msgstr ""
-
-#: shell/menu.c:61
-msgid "_Open..."
-msgstr ""
-
-#: shell/menu.c:66
-msgid "_Copy to Clipboard"
-msgstr ""
-
-#: shell/menu.c:67
-msgid "Copy to clipboard"
-msgstr ""
-
-#: shell/menu.c:71
-msgid "_Refresh"
-msgstr ""
-
-#: shell/menu.c:76
-msgid "_Open HardInfo2 Web Site"
-msgstr ""
-
-#: shell/menu.c:81
-msgid "_Report bug"
-msgstr ""
-
-#: shell/menu.c:86
-msgid "_About HardInfo2"
-msgstr ""
-
-#: shell/menu.c:87
-msgid "Displays program version information"
-msgstr ""
-
-#: shell/menu.c:91
-msgid "_Quit"
-msgstr ""
-
-#: shell/menu.c:98
-msgid "_Side Pane"
-msgstr ""
-
-#: shell/menu.c:99
-msgid "Toggles side pane visibility"
-msgstr ""
-
-#: shell/menu.c:102
-msgid "_Toolbar"
-msgstr ""
-
-#: shell/menu.c:106
-msgid "Synchronize on startup"
-msgstr ""
-
-#: shell/report.c:770 shell/report.c:778
-msgid "Save File"
-msgstr ""
-
-#: shell/report.c:773 shell/report.c:1252 shell/syncmanager.c:675
-msgid "_Cancel"
-msgstr ""
-
-#: shell/report.c:775
-msgid "_Save"
-msgstr ""
-
-#: shell/report.c:950
-msgid "Cannot create ReportContext. Programming bug?"
-msgstr ""
-
-#: shell/report.c:970
-msgid "Open the report with your web browser?"
-msgstr ""
-
-#: shell/report.c:973
-msgid "_No"
-msgstr ""
-
-#: shell/report.c:974
-msgid "_Open"
-msgstr ""
-
-#: shell/report.c:1005
-msgid "Generating report..."
-msgstr ""
-
-#: shell/report.c:1015
-msgid "Report saved."
-msgstr ""
-
-#: shell/report.c:1017
-msgid "Error while creating the report."
-msgstr ""
-
-#: shell/report.c:1119
-msgid "Generate Report"
-msgstr ""
-
-#: shell/report.c:1144
-msgid ""
-"<big><b>Generate Report</b></big>\n"
-"Please choose the information that you wish to view in your report:"
-msgstr ""
-
-#: shell/report.c:1216
-msgid "Select _None"
-msgstr ""
-
-#: shell/report.c:1227
-msgid "Select _All"
-msgstr ""
-
-#: shell/report.c:1262
-msgid "_Generate"
-msgstr ""
-
-#: shell/shell.c:312 shell/shell.c:832 shell/shell.c:2069
-#: modules/benchmark.c:744 modules/benchmark.c:752
-msgid "Done."
-msgstr ""
-
-#: shell/shell.c:409
-#, c-format
-msgid "%s - System Information and Benchmark"
-msgstr ""
-
-#: shell/shell.c:817
-msgid "Loading modules..."
-msgstr ""
-
-#: shell/shell.c:1587
-msgid "URL"
-msgstr ""
-
-#: shell/shell.c:1594
-msgid "Support URL"
-msgstr ""
-
-#: shell/shell.c:1605
-msgid "Wikipedia"
-msgstr ""
-
-#: shell/shell.c:1935
-#, c-format
-msgid "<b>%s → Summary</b>"
-msgstr ""
-
-#: shell/shell.c:2043
-msgid "Updating..."
-msgstr ""
-
-#: shell/syncmanager.c:77
-msgid ""
-"<big><b>Synchronize with Central Database</b></big>\n"
-"The following information may be synchronized\n"
-"with the HardInfo central database."
-msgstr ""
-
-#: shell/syncmanager.c:81
-msgid ""
-"<big><b>Synchronizing</b></big>\n"
-"This may take some time."
-msgstr ""
-
-#: shell/syncmanager.c:441
-msgid "(canceled)"
-msgstr ""
-
-#: shell/syncmanager.c:457
-msgid "(failed)"
-msgstr ""
-
-#: shell/syncmanager.c:662
-msgid "Privacy Policy"
-msgstr ""
-
-#: shell/syncmanager.c:684
-msgid "_Synchronize"
-msgstr ""
-
-#: shell/syncmanager.c:731
-#, c-format
-msgid "Synchronizing: %s"
-msgstr ""
-
-#: modules/benchmark.c:359
-msgid "This Machine"
-msgstr ""
-
-#: modules/benchmark.c:570 modules/benchmark/bench_results.c:526
-#: modules/benchmark/bench_results.c:590
-msgid "CPU Config"
-msgstr ""
-
-#: modules/benchmark.c:570
-msgid "Results"
-msgstr ""
-
-#: modules/benchmark.c:571 modules/devices/sparc/processor.c:75
-msgid "CPU"
-msgstr ""
-
-#: modules/benchmark.c:651
-#, c-format
-msgid "Benchmarking: <b>%s</b>."
-msgstr ""
-
-#: modules/benchmark.c:760
-msgid "Benchmarks"
-msgstr ""
-
-#: modules/benchmark.c:770
-msgid "Perform tasks and compare with other systems"
-msgstr ""
-
-#: modules/benchmark.c:923
-msgid "Send benchmark results"
-msgstr ""
-
-#: modules/benchmark.c:929
-msgid "Receive benchmark results"
-msgstr ""
-
-#. / Used for an unknown value. Having it in only one place cleans up the .po
-#. * line references
-#: modules/benchmark/bench_results.c:33 modules/computer.c:41
-#: modules/computer/display.c:41 modules/computer/display.c:58
-#: modules/computer/os.c:289 modules/computer/os.c:349 modules/devices.c:532
-#: modules/devices/dmi_memory.c:56 modules/devices/dmi_memory.c:57
-#: modules/devices/dmi_memory.c:633 modules/devices/dmi_memory.c:776
-#: modules/devices/dmi_memory.c:911 modules/devices/gpu.c:40
-#: modules/devices/gpu.c:58 modules/devices/gpu.c:122 modules/devices/gpu.c:130
-#: modules/devices/gpu.c:164 modules/devices/gpu.c:165
-#: modules/devices/gpu.c:184 modules/devices/inputdevices.c:51
-#: modules/devices/monitors.c:27 modules/devices/monitors.c:28
-#: modules/devices/monitors.c:154 modules/devices/monitors.c:163
-#: modules/devices/pci.c:25 modules/devices/pci.c:149 modules/devices/pci.c:150
-#: modules/devices/spd-decode.c:306 modules/devices/spd-decode.c:307
-#: modules/devices/spd-decode.c:310 modules/devices/spd-decode.c:311
-#: modules/devices/spd-decode.c:544 modules/devices/spd-decode.c:983
-#: modules/devices/spd-decode.c:984 modules/devices/storage.c:27
-#: modules/devices/storage.c:307 modules/devices/storage.c:336
-#: modules/devices/storage.c:431 modules/devices/usb.c:29
-#: modules/network/net.c:437 includes/cpu_util.h:11
-msgid "(Unknown)"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:66 modules/benchmark/bench_results.c:352
-#: modules/devices.c:369 modules/devices.c:377 modules/devices.c:405
-#: modules/devices/alpha/processor.c:90 modules/devices/arm/processor.c:290
-#: modules/devices/arm/processor.c:303 modules/devices/arm/processor.c:345
-#: modules/devices/arm/processor.c:500 modules/devices/e2k/processor.c:363
-#: modules/devices/e2k/processor.c:400 modules/devices/gpu.c:125
-#: modules/devices/gpu.c:127 modules/devices/gpu.c:133
-#: modules/devices/gpu.c:135 modules/devices/gpu.c:187
-#: modules/devices/gpu.c:189 modules/devices/ia64/processor.c:167
-#: modules/devices/ia64/processor.c:196
-#: modules/devices/loongarch64/processor.c:85
-#: modules/devices/m68k/processor.c:87 modules/devices/mips/processor.c:77
-#: modules/devices/parisc/processor.c:158
-#: modules/devices/parisc/processor.c:191 modules/devices/ppc/processor.c:160
-#: modules/devices/ppc/processor.c:187 modules/devices/riscv/processor.c:186
-#: modules/devices/riscv/processor.c:214 modules/devices/s390/processor.c:160
-#: modules/devices/sh/processor.c:87 modules/devices/sh/processor.c:88
-#: modules/devices/sh/processor.c:89 modules/devices/x86/processor.c:318
-#: modules/devices/x86/processor.c:331 modules/devices/x86/processor.c:659
-#: modules/devices/x86/processor.c:791
-msgid "MHz"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:384 modules/devices.c:177
-#, c-format
-msgid "%d physical processor"
-msgid_plural "%d physical processors"
-msgstr[0] ""
-msgstr[1] ""
-
-#: modules/benchmark/bench_results.c:385 modules/devices.c:178
-#, c-format
-msgid "%d core"
-msgid_plural "%d cores"
-msgstr[0] ""
-msgstr[1] ""
-
-#: modules/benchmark/bench_results.c:386 modules/devices.c:179
-#, c-format
-msgid "%d thread"
-msgid_plural "%d threads"
-msgstr[0] ""
-msgstr[1] ""
-
-#: modules/benchmark/bench_results.c:391 modules/devices.c:181
-#, c-format
-msgid "%d NUMA node"
-msgid_plural "%d NUMA nodes"
-msgstr[0] ""
-msgstr[1] ""
-
-#. /NP procs; NC cores across NN nodes; NT threads
-#: modules/benchmark/bench_results.c:395 modules/devices.c:182
-#, c-format
-msgid "%s; %s across %s; %s"
-msgstr ""
-
-#. /NP procs; NC cores; NT threads
-#: modules/benchmark/bench_results.c:400 modules/devices.c:185
-#, c-format
-msgid "%s; %s; %s"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:476 modules/benchmark/bench_results.c:596
-#: modules/computer.c:949 modules/devices/dmi_memory.c:635
-#: modules/devices/dmi_memory.c:716 modules/devices/dmi_memory.c:726
-#: modules/devices/dmi_memory.c:780 modules/devices/dmi_memory.c:867
-#: modules/devices/dmi_memory.c:913 modules/devices/dmi_memory.c:998
-#: modules/network/net.c:395 modules/network/net.c:417
-#: modules/network/net.c:418
-msgid "MiB"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:481 modules/benchmark/bench_results.c:595
-msgid "kiB"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:489 modules/benchmark/bench_results.c:545
-#, c-format
-msgid "%d-bit"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:510 modules/benchmark/bench_results.c:573
-msgid "Benchmark Result"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:510 modules/benchmark/bench_results.c:573
-msgid "Threads"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:511 modules/benchmark/bench_results.c:575
-msgid "Elapsed Time"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:511 modules/benchmark/bench_results.c:575
-msgid "seconds"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:512 modules/computer/languages.c:101
-#: modules/devices/arm/processor.c:355 modules/devices/e2k/processor.c:362
-#: modules/devices/gpu.c:157 modules/devices/ia64/processor.c:166
-#: modules/devices/loongarch64/processor.c:84 modules/devices/pci.c:146
-#: modules/devices/ppc/processor.c:159
-msgid "Revision"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:513 modules/benchmark/bench_results.c:576
-msgid "Extra Information"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:514 modules/benchmark/bench_results.c:577
-msgid "User Note"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:516 modules/benchmark/bench_results.c:579
-msgid "Note"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:517 modules/benchmark/bench_results.c:580
-msgid ""
-"This result is from an old version of HardInfo. Results might not be "
-"comparable to current version. Some details are missing."
-msgstr ""
-
-#: modules/benchmark/bench_results.c:521 modules/benchmark/bench_results.c:584
-#: modules/devices/devicetree/pmac_data.c:81 modules/devices/sh/processor.c:85
-msgid "Machine"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:522 modules/benchmark/bench_results.c:584
-#: modules/devices/devicetree.c:208 modules/devices/dmi.c:48
-msgid "Board"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:523 modules/benchmark/bench_results.c:586
-#: modules/computer.c:551
-msgid "Machine Type"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:524 modules/benchmark/bench_results.c:587
-msgid "CPU Name"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:525 modules/benchmark/bench_results.c:588
-msgid "CPU Description"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:527 modules/benchmark/bench_results.c:590
-msgid "Threads Available"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:528 modules/benchmark/bench_results.c:591
-msgid "GPU"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:529 modules/benchmark/bench_results.c:593
-#: modules/computer.c:563
-msgid "OpenGL Renderer"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:530 modules/benchmark/bench_results.c:595
-#: modules/computer.c:140 modules/computer.c:550 modules/computer.c:1042
-#: modules/devices/gpu.c:160
-msgid "Memory"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:531 modules/benchmark/bench_results.c:597
-msgid "Pointer Size"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:573
-msgid "Benchmark"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:574 modules/devices/dmi_memory.c:935
-#: modules/devices/firmware.c:245 modules/devices/monitors.c:494
-#: modules/devices/x86/processor.c:693
-msgid "Result"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:595
-msgid "Physical Memory"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:599
-msgid "Handles"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:599
-msgid "mid"
-msgstr ""
-
-#: modules/benchmark/bench_results.c:600
-msgid "cfg_val"
-msgstr ""
-
-#: modules/benchmark/benches.c:85
-msgid "CPU Blowfish (Single-thread)"
-msgstr ""
-
-#: modules/benchmark/benches.c:93
-msgid "CPU Blowfish (Multi-thread)"
-msgstr ""
-
-#: modules/benchmark/benches.c:101
-msgid "CPU Blowfish (Multi-core)"
-msgstr ""
-
-#: modules/benchmark/benches.c:109
-msgid "CPU Zlib"
-msgstr ""
-
-#: modules/benchmark/benches.c:117
-msgid "CPU CryptoHash"
-msgstr ""
-
-#: modules/benchmark/benches.c:125
-msgid "CPU Fibonacci"
-msgstr ""
-
-#: modules/benchmark/benches.c:133
-msgid "CPU N-Queens"
-msgstr ""
-
-#: modules/benchmark/benches.c:141
-msgid "FPU FFT"
-msgstr ""
-
-#: modules/benchmark/benches.c:149
-msgid "FPU Raytracing (Single-thread)"
-msgstr ""
-
-#: modules/benchmark/benches.c:157
-msgid "Internal Network Speed"
-msgstr ""
-
-#: modules/benchmark/benches.c:165
-msgid "SysBench CPU (Single-thread)"
-msgstr ""
-
-#: modules/benchmark/benches.c:173
-msgid "SysBench CPU (Multi-thread)"
-msgstr ""
-
-#: modules/benchmark/benches.c:181
-msgid "SysBench CPU (Four threads)"
-msgstr ""
-
-#: modules/benchmark/benches.c:189
-msgid "SysBench Memory (Single-thread)"
-msgstr ""
-
-#: modules/benchmark/benches.c:197
-msgid "SysBench Memory (Two threads)"
-msgstr ""
-
-#: modules/benchmark/benches.c:205
-msgid "SysBench Memory (Quad threads)"
-msgstr ""
-
-#: modules/benchmark/benches.c:213
-msgid "SysBench Memory (Multi-thread)"
-msgstr ""
-
-#: modules/benchmark/benches.c:222
-msgid "GPU Drawing"
-msgstr ""
-
-#: modules/benchmark/benches.c:239
-msgid ""
-"Alexey Kopytov's <i><b>sysbench</b></i> is required.\n"
-"Results in events/second. Higher is better."
-msgstr ""
-
-#: modules/benchmark/benches.c:245
-msgid ""
-"Alexey Kopytov's <i><b>sysbench</b></i> is required.\n"
-"Results in MiB/second. Higher is better."
-msgstr ""
-
-#: modules/benchmark/benches.c:248
-msgid ""
-"<i><b>iperf3</b></i> is required.\n"
-"Results in Gbits/s. Higher is better."
-msgstr ""
-
-#: modules/benchmark/benches.c:260
-msgid "Results in HIMarks. Higher is better."
-msgstr ""
-
-#: modules/computer.c:96 modules/devices/firmware.c:74
-msgid "Summary"
-msgstr ""
-
-#: modules/computer.c:97 modules/computer.c:553 modules/computer.c:1041
-msgid "Operating System"
-msgstr ""
-
-#: modules/computer.c:98
-msgid "Security"
-msgstr ""
-
-#: modules/computer.c:99 modules/devices/gpu.c:165 modules/devices/pci.c:150
-msgid "Kernel Modules"
-msgstr ""
-
-#: modules/computer.c:100 modules/computer.c:714
-msgid "Boots"
-msgstr ""
-
-#: modules/computer.c:101
-msgid "Languages"
-msgstr ""
-
-#: modules/computer.c:102
-msgid "Memory Usage"
-msgstr ""
-
-#: modules/computer.c:103
-msgid "Filesystems"
-msgstr ""
-
-#: modules/computer.c:104 modules/computer.c:558
-msgid "Display"
-msgstr ""
-
-#: modules/computer.c:105 modules/computer/environment.c:32
-msgid "Environment Variables"
-msgstr ""
-
-#: modules/computer.c:107 modules/computer.c:109
-msgid "Development"
-msgstr ""
-
-#: modules/computer.c:111 modules/computer.c:838
-msgid "Users"
-msgstr ""
-
-#: modules/computer.c:112
-msgid "Groups"
-msgstr ""
-
-#: modules/computer.c:142
-#, c-format
-msgid "%dMB (%dMB used)"
-msgstr ""
-
-#: modules/computer.c:144 modules/computer.c:622
-msgid "Uptime"
-msgstr ""
-
-#: modules/computer.c:146 modules/computer.c:555
-msgid "Date/Time"
-msgstr ""
-
-#: modules/computer.c:151 modules/computer.c:623
-msgid "Load Average"
-msgstr ""
-
-#: modules/computer.c:264
-msgid "Scripting Languages"
-msgstr ""
-
-#: modules/computer.c:265
-msgid "Gambas3 (gbr3)"
-msgstr ""
-
-#: modules/computer.c:266
-msgid "Python (default)"
-msgstr ""
-
-#: modules/computer.c:267
-msgid "Python2"
-msgstr ""
-
-#: modules/computer.c:268
-msgid "Python3"
-msgstr ""
-
-#: modules/computer.c:269
-msgid "Perl"
-msgstr ""
-
-#: modules/computer.c:270
-msgid "Perl6 (VM)"
-msgstr ""
-
-#: modules/computer.c:271
-msgid "Perl6"
-msgstr ""
-
-#: modules/computer.c:272
-msgid "PHP"
-msgstr ""
-
-#: modules/computer.c:273
-msgid "Ruby"
-msgstr ""
-
-#: modules/computer.c:274
-msgid "Bash"
-msgstr ""
-
-#: modules/computer.c:275
-msgid "JavaScript (Node.js)"
-msgstr ""
-
-#: modules/computer.c:276
-msgid "awk"
-msgstr ""
-
-#: modules/computer.c:277
-msgid "Compilers"
-msgstr ""
-
-#: modules/computer.c:278
-msgid "C (GCC)"
-msgstr ""
-
-#: modules/computer.c:279
-msgid "C (Clang)"
-msgstr ""
-
-#: modules/computer.c:280
-msgid "D (dmd)"
-msgstr ""
-
-#: modules/computer.c:281
-msgid "Gambas3 (gbc3)"
-msgstr ""
-
-#: modules/computer.c:282
-msgid "Java"
-msgstr ""
-
-#: modules/computer.c:283
-msgid "C♯ (mcs)"
-msgstr ""
-
-#: modules/computer.c:284
-msgid "Vala"
-msgstr ""
-
-#: modules/computer.c:285
-msgid "Haskell (GHC)"
-msgstr ""
-
-#: modules/computer.c:286
-msgid "FreePascal"
-msgstr ""
-
-#: modules/computer.c:287
-msgid "Go"
-msgstr ""
-
-#: modules/computer.c:288
-msgid "Rust"
-msgstr ""
-
-#: modules/computer.c:289
-msgid "Tools"
-msgstr ""
-
-#: modules/computer.c:290
-msgid "make"
-msgstr ""
-
-#: modules/computer.c:291
-msgid "ninja"
-msgstr ""
-
-#: modules/computer.c:292
-msgid "GDB"
-msgstr ""
-
-#: modules/computer.c:293
-msgid "LLDB"
-msgstr ""
-
-#: modules/computer.c:294
-msgid "strace"
-msgstr ""
-
-#: modules/computer.c:295
-msgid "valgrind"
-msgstr ""
-
-#: modules/computer.c:296
-msgid "QMake"
-msgstr ""
-
-#: modules/computer.c:297
-msgid "CMake"
-msgstr ""
-
-#: modules/computer.c:298
-msgid "Gambas3 IDE"
-msgstr ""
-
-#: modules/computer.c:299
-msgid "Radare2"
-msgstr ""
-
-#: modules/computer.c:300
-msgid "ltrace"
-msgstr ""
-
-#: modules/computer.c:301
-msgid "Powershell"
-msgstr ""
-
-#: modules/computer.c:342
-msgid "Not found"
-msgstr ""
-
-#: modules/computer.c:347
-#, c-format
-msgid "Detecting version: %s"
-msgstr ""
-
-#: modules/computer.c:365
-msgid "Program"
-msgstr ""
-
-#: modules/computer.c:365 modules/computer.c:598 modules/computer.c:600
-#: modules/computer.c:779 modules/computer/modules.c:365
-#: modules/devices/dmi.c:41 modules/devices/dmi.c:47 modules/devices/dmi.c:51
-#: modules/devices/dmi.c:57 modules/devices/firmware.c:75
-#: modules/devices/inputdevices.c:146 modules/devices/monitors.c:408
-msgid "Version"
-msgstr ""
-
-#: modules/computer.c:384
-msgid "Field"
-msgstr ""
-
-#: modules/computer.c:384 modules/computer.c:703 modules/computer/modules.c:363
-#: modules/computer/modules.c:364 modules/devices/arm/processor.c:470
-msgid "Description"
-msgstr ""
-
-#: modules/computer.c:384 modules/devices.c:771
-msgid "Value"
-msgstr ""
-
-#: modules/computer.c:404
-msgid "Single-board computer"
-msgstr ""
-
-#: modules/computer.c:410 modules/computer.c:419 modules/computer.c:441
-msgid "Laptop"
-msgstr ""
-
-#. /proc/apm
-#: modules/computer.c:453
-msgid "Unknown physical machine type"
-msgstr ""
-
-#: modules/computer.c:473 modules/computer.c:474
-msgid "Virtual (VMware)"
-msgstr ""
-
-#: modules/computer.c:476 modules/computer.c:477 modules/computer.c:478
-#: modules/computer.c:479
-msgid "Virtual (QEMU)"
-msgstr ""
-
-#: modules/computer.c:481 modules/computer.c:482
-msgid "Virtual (Unknown)"
-msgstr ""
-
-#: modules/computer.c:484 modules/computer.c:485 modules/computer.c:486
-#: modules/computer.c:507
-msgid "Virtual (VirtualBox)"
-msgstr ""
-
-#: modules/computer.c:488 modules/computer.c:489 modules/computer.c:490
-#: modules/computer.c:501
-msgid "Virtual (Xen)"
-msgstr ""
-
-#: modules/computer.c:492
-msgid "Virtual (hypervisor present)"
-msgstr ""
-
-#: modules/computer.c:547 modules/computer.c:995
-msgid "Computer"
-msgstr ""
-
-#: modules/computer.c:548 modules/computer.c:1042 modules/devices.c:98
-#: modules/devices/alpha/processor.c:87 modules/devices/arm/processor.c:341
-#: modules/devices/e2k/processor.c:357 modules/devices/ia64/processor.c:159
-#: modules/devices/loongarch64/processor.c:80
-#: modules/devices/m68k/processor.c:83 modules/devices/mips/processor.c:74
-#: modules/devices/parisc/processor.c:154 modules/devices/ppc/processor.c:157
-#: modules/devices/riscv/processor.c:181 modules/devices/s390/processor.c:131
-#: modules/devices/sh/processor.c:83 modules/devices/sparc/processor.c:74
-#: modules/devices/x86/processor.c:648
-msgid "Processor"
-msgstr ""
-
-#: modules/computer.c:554 modules/computer.c:616
-msgid "User Name"
-msgstr ""
-
-#: modules/computer.c:559
-msgid "Resolution"
-msgstr ""
-
-#: modules/computer.c:559 modules/computer.c:784
-#, c-format
-msgid "%dx%d pixels"
-msgstr ""
-
-#: modules/computer.c:561
-msgid "Display Adapter"
-msgstr ""
-
-#: modules/computer.c:564
-msgid "Session Display Server"
-msgstr ""
-
-#: modules/computer.c:567 modules/computer/alsa.c:26
-msgid "Audio Devices"
-msgstr ""
-
-#: modules/computer.c:569 modules/devices.c:107
-msgid "Input Devices"
-msgstr ""
-
-#: modules/computer.c:598
-msgid "Kernel"
-msgstr ""
-
-#: modules/computer.c:599
-msgid "Command Line"
-msgstr ""
-
-#: modules/computer.c:599 modules/computer.c:801 modules/computer/os.c:79
-#: modules/computer/os.c:266 modules/computer/os.c:303
-#: modules/computer/os.c:510 modules/computer/os.c:581 modules/devices.c:403
-#: modules/devices.c:549 modules/devices/firmware.c:149
-#: modules/devices/printers.c:106 modules/devices/printers.c:113
-#: modules/devices/printers.c:123 modules/devices/printers.c:138
-#: modules/devices/printers.c:147 modules/devices/printers.c:256
-#: modules/devices/spd-decode.c:312 modules/devices/usb.c:149
-msgid "Unknown"
-msgstr ""
-
-#: modules/computer.c:601
-msgid "C Library"
-msgstr ""
-
-#: modules/computer.c:602
-msgid "Distribution"
-msgstr ""
-
-#: modules/computer.c:609
-msgid "Spin/Flavor"
-msgstr ""
-
-#: modules/computer.c:614
-msgid "Current Session"
-msgstr ""
-
-#: modules/computer.c:615
-msgid "Computer Name"
-msgstr ""
-
-#: modules/computer.c:617 modules/computer/languages.c:99
-msgid "Language"
-msgstr ""
-
-#: modules/computer.c:618 modules/computer/users.c:50
-msgid "Home Directory"
-msgstr ""
-
-#: modules/computer.c:619
-msgid "Desktop Environment"
-msgstr ""
-
-#: modules/computer.c:622
-msgid "Misc"
-msgstr ""
-
-#: modules/computer.c:635
-msgid "HardInfo"
-msgstr ""
-
-#: modules/computer.c:636
-msgid "HardInfo running as"
-msgstr ""
-
-#: modules/computer.c:637
-msgid "Superuser"
-msgstr ""
-
-#: modules/computer.c:637
-msgid "User"
-msgstr ""
-
-#: modules/computer.c:641
-msgid "Health"
-msgstr ""
-
-#. /dev/random"), 1000, .tag = g_strdup("entropy") ),
-#: modules/computer.c:643
-msgid "Available entropy in /dev/random"
-msgstr ""
-
-#: modules/computer.c:647
-msgid "Hardening Features"
-msgstr ""
-
-#: modules/computer.c:648
-msgid "ASLR"
-msgstr ""
-
-#: modules/computer.c:649
-msgid "dmesg"
-msgstr ""
-
-#: modules/computer.c:653
-msgid "Linux Security Modules"
-msgstr ""
-
-#: modules/computer.c:654
-msgid "Modules available"
-msgstr ""
-
-#: modules/computer.c:655
-msgid "SELinux status"
-msgstr ""
-
-#: modules/computer.c:661
-msgid "CPU Vulnerabilities"
-msgstr ""
-
-#: modules/computer.c:700
-msgid "Loaded Modules"
-msgstr ""
-
-#: modules/computer.c:702 modules/computer.c:730 modules/computer.c:851
-#: modules/computer/languages.c:95 modules/computer/modules.c:363
-#: modules/devices/arm/processor.c:469 modules/devices/dmi.c:38
-#: modules/devices/dmi.c:49 modules/devices/e2k/processor.c:358
-#: modules/devices/gpu.c:249 modules/devices/ia64/processor.c:160
-#: modules/devices/inputdevices.c:141 modules/devices/monitors.c:402
-#: modules/devices/monitors.c:504 modules/devices/sh/processor.c:84
-#: modules/devices/x86/processor.c:751 modules/network.c:332
-msgid "Name"
-msgstr ""
-
-#: modules/computer.c:716
-msgid "Date & Time"
-msgstr ""
-
-#: modules/computer.c:717
-msgid "Kernel Version"
-msgstr ""
-
-#: modules/computer.c:727
-msgid "Available Languages"
-msgstr ""
-
-#: modules/computer.c:729
-msgid "Language Code"
-msgstr ""
-
-#: modules/computer.c:741
-msgid "Mounted File Systems"
-msgstr ""
-
-#: modules/computer.c:743 modules/computer/filesystem.c:87
-msgid "Mount Point"
-msgstr ""
-
-#: modules/computer.c:744
-msgid "Usage"
-msgstr ""
-
-#: modules/computer.c:745 modules/devices.c:795 modules/devices.c:809
-#: modules/devices/e2k/processor.c:416 modules/devices/gpu.c:85
-#: modules/devices/gpu.c:93 modules/devices/gpu.c:241 modules/devices/pci.c:102
-#: modules/devices/pci.c:110 modules/devices/pci.c:154
-#: modules/devices/storage.c:48 modules/devices/storage.c:57
-#: modules/devices/usb.c:172 modules/devices/usb.c:184
-#: modules/devices/x86/processor.c:812
-msgid "Device"
-msgstr ""
-
-#: modules/computer.c:767
-msgid "Session"
-msgstr ""
-
-#: modules/computer.c:768 modules/devices.c:772 modules/devices.c:809
-#: modules/devices/dmi.c:56 modules/devices/dmi_memory.c:657
-#: modules/devices/dmi_memory.c:806 modules/devices/inputdevices.c:142
-#: modules/devices/x86/processor.c:716
-msgid "Type"
-msgstr ""
-
-#: modules/computer.c:771
-msgid "Wayland"
-msgstr ""
-
-#: modules/computer.c:772 modules/computer.c:777
-msgid "Current Display Name"
-msgstr ""
-
-#: modules/computer.c:773 modules/devices/arm/processor.c:256
-#: modules/devices/e2k/processor.c:178 modules/devices/x86/processor.c:284
-#: modules/devices/x86/processor.c:388 modules/devices/x86/processor.c:526
-msgid "(Not Available)"
-msgstr ""
-
-#: modules/computer.c:776
-msgid "X Server"
-msgstr ""
-
-#: modules/computer.c:778 modules/computer.c:818 modules/devices.c:809
-#: modules/devices/dmi.c:40 modules/devices/dmi.c:46 modules/devices/dmi.c:50
-#: modules/devices/dmi.c:55 modules/devices/dmi_memory.c:807
-#: modules/devices/dmi_memory.c:951 modules/devices/e2k/processor.c:359
-#: modules/devices/firmware.c:75 modules/devices/firmware.c:167
-#: modules/devices/firmware.c:172 modules/devices/firmware.c:219
-#: modules/devices/gpu.c:84 modules/devices/gpu.c:92 modules/devices/gpu.c:240
-#: modules/devices/ia64/processor.c:161 modules/devices/inputdevices.c:144
-#: modules/devices/monitors.c:401 modules/devices/pci.c:101
-#: modules/devices/pci.c:109 modules/devices/storage.c:47
-#: modules/devices/storage.c:56 modules/devices/storage.c:282
-#: modules/devices/storage.c:572 modules/devices/storage.c:771
-#: modules/devices/usb.c:171 modules/devices/x86/processor.c:655
-msgid "Vendor"
-msgstr ""
-
-#: modules/computer.c:780
-msgid "Release Number"
-msgstr ""
-
-#: modules/computer.c:788
-msgid "Screens"
-msgstr ""
-
-#: modules/computer.c:794
-msgid "Disconnected"
-msgstr ""
-
-#: modules/computer.c:797
-msgid "Connected"
-msgstr ""
-
-#: modules/computer.c:805
-msgid "Unused"
-msgstr ""
-
-#: modules/computer.c:806
-#, c-format
-msgid "%dx%d pixels, offset (%d, %d)"
-msgstr ""
-
-#: modules/computer.c:815
-msgid "Outputs (XRandR)"
-msgstr ""
-
-#: modules/computer.c:817
-msgid "OpenGL (GLX)"
-msgstr ""
-
-#: modules/computer.c:819
-msgid "Renderer"
-msgstr ""
-
-#: modules/computer.c:820
-msgid "Direct Rendering"
-msgstr ""
-
-#: modules/computer.c:821 modules/computer/modules.c:345
-#: modules/computer/modules.c:346 modules/devices/inputdevices.c:153
-#: modules/devices/printers.c:145 modules/devices/spd-decode.c:972
-msgid "Yes"
-msgstr ""
-
-#: modules/computer.c:821 modules/computer/modules.c:345
-#: modules/computer/modules.c:346 modules/devices/printers.c:145
-#: modules/devices/spd-decode.c:969
-msgid "No"
-msgstr ""
-
-#: modules/computer.c:822
-msgid "Version (Compatibility)"
-msgstr ""
-
-#: modules/computer.c:823
-msgid "Shading Language Version (Compatibility)"
-msgstr ""
-
-#: modules/computer.c:824
-msgid "Version (Core)"
-msgstr ""
-
-#: modules/computer.c:825
-msgid "Shading Language Version (Core)"
-msgstr ""
-
-#: modules/computer.c:826
-msgid "Version (ES)"
-msgstr ""
-
-#: modules/computer.c:827
-msgid "Shading Language Version (ES)"
-msgstr ""
-
-#: modules/computer.c:828
-msgid "GLX Version"
-msgstr ""
-
-#: modules/computer.c:849
-msgid "Group"
-msgstr ""
-
-#: modules/computer.c:852 modules/computer/users.c:49
-msgid "Group ID"
-msgstr ""
-
-#. / <value> <unit> "usable memory"
-#: modules/computer.c:945
-#, c-format
-msgid "%0.1f %s available to Linux"
-msgstr ""
-
-#: modules/computer.c:947 modules/devices/dmi_memory.c:714
-#: modules/devices/dmi_memory.c:724 modules/devices/dmi_memory.c:865
-#: modules/devices/dmi_memory.c:996
-msgid "GiB"
-msgstr ""
-
-#: modules/computer.c:951 modules/computer/memory_usage.c:77
-#: modules/computer/modules.c:363
-msgid "KiB"
-msgstr ""
-
-#: modules/computer.c:1014 modules/devices/devicetree/pmac_data.c:82
-msgid "Motherboard"
-msgstr ""
-
-#: modules/computer.c:1042
-msgid "Graphics"
-msgstr ""
-
-#: modules/computer.c:1043 modules/devices.c:108
-msgid "Storage"
-msgstr ""
-
-#: modules/computer.c:1043 modules/devices.c:104
-msgid "Printers"
-msgstr ""
-
-#: modules/computer.c:1043
-msgid "Audio"
-msgstr ""
-
-#: modules/computer.c:1092
-msgid "Gathers high-level computer information"
-msgstr ""
-
-#: modules/computer.c:1103
-msgid "<i><b>lsmod</b></i> is required."
-msgstr ""
-
-#: modules/computer.c:1111
-msgid ""
-"X.org's <i><b>xrandr</b></i> utility provides additional details when "
-"available."
-msgstr ""
-
-#: modules/computer.c:1112
-msgid ""
-"Mesa's <i><b>glxinfo</b></i> utility is required for OpenGL information."
-msgstr ""
-
-#: modules/computer/alsa.c:34
-msgid "Audio Adapter"
-msgstr ""
-
-#: modules/computer/filesystem.c:85
-msgid "Filesystem"
-msgstr ""
-
-#: modules/computer/filesystem.c:86
-msgid "Mounted As"
-msgstr ""
-
-#: modules/computer/filesystem.c:86
-msgid "Read-Write"
-msgstr ""
-
-#: modules/computer/filesystem.c:86
-msgid "Read-Only"
-msgstr ""
-
-#: modules/computer/filesystem.c:88 modules/devices.c:795
-#: modules/devices/dmi_memory.c:663 modules/devices/dmi_memory.c:810
-#: modules/devices/dmi_memory.c:842 modules/devices/dmi_memory.c:881
-#: modules/devices/dmi_memory.c:950
-msgid "Size"
-msgstr ""
-
-#: modules/computer/filesystem.c:89
-msgid "Used"
-msgstr ""
-
-#: modules/computer/filesystem.c:90
-msgid "Available"
-msgstr ""
-
-#: modules/computer/languages.c:94
-msgid "Locale Information"
-msgstr ""
-
-#: modules/computer/languages.c:96 modules/devices/dmi_memory.c:653
-#: modules/devices/gpu.c:220
-msgid "Source"
-msgstr ""
-
-#: modules/computer/languages.c:97
-msgid "Address"
-msgstr ""
-
-#: modules/computer/languages.c:98
-msgid "E-mail"
-msgstr ""
-
-#: modules/computer/languages.c:100
-msgid "Territory"
-msgstr ""
-
-#: modules/computer/languages.c:102 modules/devices/dmi.c:45
-msgid "Date"
-msgstr ""
-
-#: modules/computer/languages.c:103
-msgid "Codeset"
-msgstr ""
-
-#: modules/computer/loadavg.c:64
-msgid "Couldn't obtain load average"
-msgstr ""
-
-#: modules/computer/memory_usage.c:106
-msgid "Total Memory"
-msgstr ""
-
-#: modules/computer/memory_usage.c:107
-msgid "Free Memory"
-msgstr ""
-
-#: modules/computer/memory_usage.c:108
-msgid "Cached Swap"
-msgstr ""
-
-#: modules/computer/memory_usage.c:109
-msgid "High Memory"
-msgstr ""
-
-#: modules/computer/memory_usage.c:110
-msgid "Free High Memory"
-msgstr ""
-
-#: modules/computer/memory_usage.c:111
-msgid "Low Memory"
-msgstr ""
-
-#: modules/computer/memory_usage.c:112
-msgid "Free Low Memory"
-msgstr ""
-
-#: modules/computer/memory_usage.c:113
-msgid "Virtual Memory"
-msgstr ""
-
-#: modules/computer/memory_usage.c:114
-msgid "Free Virtual Memory"
-msgstr ""
-
-#: modules/computer/modules.c:168
-msgid "Update kernel module icon table"
-msgstr ""
-
-#: modules/computer/modules.c:331 modules/computer/modules.c:332
-#: modules/computer/modules.c:333 modules/computer/modules.c:334
-#: modules/computer/modules.c:335 modules/computer/modules.c:336
-#: modules/devices/dmi.c:117 modules/devices/dmi_memory.c:937
-#: modules/devices/firmware.c:245 modules/devices/x86/processor.c:695
-msgid "(Not available)"
-msgstr ""
-
-#: modules/computer/modules.c:362
-msgid "Module Information"
-msgstr ""
-
-#: modules/computer/modules.c:362 modules/devices/gpu.c:246
-msgid "Path"
-msgstr ""
-
-#: modules/computer/modules.c:362
-msgid "Used Memory"
-msgstr ""
-
-#: modules/computer/modules.c:364
-msgid "Version Magic"
-msgstr ""
-
-#: modules/computer/modules.c:365
-msgid "In Linus' Tree"
-msgstr ""
-
-#: modules/computer/modules.c:366
-msgid "Retpoline Enabled"
-msgstr ""
-
-#: modules/computer/modules.c:366
-msgid "Copyright"
-msgstr ""
-
-#: modules/computer/modules.c:366
-msgid "Author"
-msgstr ""
-
-#: modules/computer/modules.c:367
-msgid "License"
-msgstr ""
-
-#: modules/computer/modules.c:373
-msgid "Dependencies"
-msgstr ""
-
-#: modules/computer/os.c:36 modules/computer/os.c:37 modules/computer/os.c:38
-#: modules/computer/os.c:39
-msgid "GNU C Library"
-msgstr ""
-
-#: modules/computer/os.c:40
-msgid "uClibc or uClibc-ng"
-msgstr ""
-
-#: modules/computer/os.c:41
-msgid "diet libc"
-msgstr ""
-
-#: modules/computer/os.c:113 modules/computer/os.c:116
-msgid "GNOME Shell "
-msgstr ""
-
-#: modules/computer/os.c:124 modules/computer/os.c:127
-msgid "Version: "
-msgstr ""
-
-#: modules/computer/os.c:146 modules/computer/os.c:149
-msgid "MATE Desktop Environment "
-msgstr ""
-
-#: modules/computer/os.c:183
-#, c-format
-msgid "Unknown (Window Manager: %s)"
-msgstr ""
-
-#. /{desktop environment} on {session type}
-#: modules/computer/os.c:194
-#, c-format
-msgid "%s on %s"
-msgstr ""
-
-#: modules/computer/os.c:264
-msgid "Terminal"
-msgstr ""
-
-#: modules/computer/os.c:281
-msgid "User access allowed"
-msgstr ""
-
-#: modules/computer/os.c:283
-msgid "User access forbidden"
-msgstr ""
-
-#: modules/computer/os.c:285
-msgid "Access allowed (running as superuser)"
-msgstr ""
-
-#: modules/computer/os.c:287
-msgid "Access forbidden? (running as superuser)"
-msgstr ""
-
-#: modules/computer/os.c:297 modules/computer/os.c:572
-msgid "Disabled"
-msgstr ""
-
-#: modules/computer/os.c:299
-msgid "Partially enabled (mmap base+stack+VDSO base)"
-msgstr ""
-
-#: modules/computer/os.c:301
-msgid "Fully enabled (mmap base+stack+VDSO base+heap)"
-msgstr ""
-
-#. /bits of entropy for rng (0)
-#: modules/computer/os.c:311
-msgid "(None or not available)"
-msgstr ""
-
-#. /bits of entropy for rng (low/poor value)
-#: modules/computer/os.c:312
-#, c-format
-msgid "%d bits (low)"
-msgstr ""
-
-#. /bits of entropy for rng (medium value)
-#: modules/computer/os.c:313
-#, c-format
-msgid "%d bits (medium)"
-msgstr ""
-
-#. /bits of entropy for rng (high/good value)
-#: modules/computer/os.c:314
-#, c-format
-msgid "%d bits (healthy)"
-msgstr ""
-
-#: modules/computer/os.c:567
-msgid "Not installed"
-msgstr ""
-
-#: modules/computer/os.c:570
-msgid "Enabled"
-msgstr ""
-
-#: modules/computer/uptime.c:54
-#, c-format
-msgid "%d day"
-msgid_plural "%d days"
-msgstr[0] ""
-msgstr[1] ""
-
-#: modules/computer/uptime.c:55
-#, c-format
-msgid "%d hour"
-msgid_plural "%d hours"
-msgstr[0] ""
-msgstr[1] ""
-
-#: modules/computer/uptime.c:56
-#, c-format
-msgid "%d minute"
-msgid_plural "%d minutes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: modules/computer/users.c:47
-msgid "User Information"
-msgstr ""
-
-#: modules/computer/users.c:48
-msgid "User ID"
-msgstr ""
-
-#: modules/computer/users.c:51
-msgid "Default Shell"
-msgstr ""
-
-#: modules/devices.c:99
-msgid "Graphics Processors"
-msgstr ""
-
-#: modules/devices.c:100 modules/devices/monitors.c:448
-#: modules/devices/monitors.c:494
-msgid "Monitors"
-msgstr ""
-
-#: modules/devices.c:101 modules/devices/pci.c:175
-msgid "PCI Devices"
-msgstr ""
-
-#: modules/devices.c:102 modules/devices/usb.c:211
-msgid "USB Devices"
-msgstr ""
-
-#: modules/devices.c:103
-msgid "Firmware"
-msgstr ""
-
-#: modules/devices.c:105
-msgid "Battery"
-msgstr ""
-
-#: modules/devices.c:106
-msgid "Sensors"
-msgstr ""
-
-#: modules/devices.c:109
-msgid "System DMI"
-msgstr ""
-
-#: modules/devices.c:110
-msgid "Memory Devices"
-msgstr ""
-
-#: modules/devices.c:112 modules/devices.c:114
-msgid "Device Tree"
-msgstr ""
-
-#: modules/devices.c:116
-msgid "Resources"
-msgstr ""
-
-#: modules/devices.c:771
-msgid "Sensor"
-msgstr ""
-
-#: modules/devices.c:772 modules/devices/gpu.c:163 modules/devices/pci.c:148
-#: modules/devices/usb.c:139
-msgid "Driver"
-msgstr ""
-
-#: modules/devices.c:795 modules/devices/alpha/processor.c:88
-#: modules/devices/devicetree.c:163 modules/devices/devicetree.c:209
-#: modules/devices/devicetree/pmac_data.c:80
-#: modules/devices/e2k/processor.c:361 modules/devices/e2k/processor.c:416
-#: modules/devices/gpu.c:116 modules/devices/ia64/processor.c:165
-#: modules/devices/loongarch64/processor.c:83
-#: modules/devices/m68k/processor.c:84 modules/devices/mips/processor.c:75
-#: modules/devices/monitors.c:403 modules/devices/parisc/processor.c:155
-#: modules/devices/ppc/processor.c:158 modules/devices/riscv/processor.c:182
-#: modules/devices/s390/processor.c:132 modules/devices/x86/processor.c:812
-msgid "Model"
-msgstr ""
-
-#: modules/devices.c:829 modules/devices/dmi_memory.c:882
-msgid "Devices"
-msgstr ""
-
-#: modules/devices.c:841
-msgid "Update PCI ID listing"
-msgstr ""
-
-#: modules/devices.c:846
-msgid "Update USB ID listing"
-msgstr ""
-
-#: modules/devices.c:851
-msgid "Update EDID vendor codes"
-msgstr ""
-
-#: modules/devices.c:856
-msgid "Update IEEE OUI vendor codes"
-msgstr ""
-
-#: modules/devices.c:861
-msgid "Update SD card manufacturer information"
-msgstr ""
-
-#: modules/devices.c:868
-msgid "Update CPU flags database"
-msgstr ""
-
-#: modules/devices.c:903
-msgid "Gathers information about hardware devices"
-msgstr ""
-
-#: modules/devices.c:924
-msgid "A copy of <i><b>pci.ids</b></i> is not available on the system."
-msgstr ""
-
-#: modules/devices.c:927
-msgid "A full <i><b>pci.ids</b></i> is not available on the system."
-msgstr ""
-
-#: modules/devices.c:932
-msgid "Resource information requires superuser privileges"
-msgstr ""
-
-#: modules/devices.c:938
-msgid ""
-"Any NVMe storage devices present are not listed.\n"
-"<b><i>udisks2</i></b> is required for NVMe devices."
-msgstr ""
-
-#: modules/devices/alpha/processor.c:89
-msgid "Platform String"
-msgstr ""
-
-#: modules/devices/alpha/processor.c:90 modules/devices/arm/processor.c:345
-#: modules/devices/e2k/processor.c:363 modules/devices/e2k/processor.c:416
-#: modules/devices/ia64/processor.c:167
-#: modules/devices/loongarch64/processor.c:85
-#: modules/devices/m68k/processor.c:87 modules/devices/mips/processor.c:77
-#: modules/devices/parisc/processor.c:158 modules/devices/ppc/processor.c:160
-#: modules/devices/riscv/processor.c:186 modules/devices/sh/processor.c:87
-#: modules/devices/x86/processor.c:659 modules/devices/x86/processor.c:812
-msgid "Frequency"
-msgstr ""
-
-#: modules/devices/alpha/processor.c:91 modules/devices/arm/processor.c:346
-#: modules/devices/e2k/processor.c:364 modules/devices/ia64/processor.c:168
-#: modules/devices/m68k/processor.c:88 modules/devices/mips/processor.c:78
-#: modules/devices/parisc/processor.c:159 modules/devices/ppc/processor.c:161
-#: modules/devices/s390/processor.c:134 modules/devices/sh/processor.c:90
-#: modules/devices/x86/processor.c:660
-msgid "BogoMips"
-msgstr ""
-
-#: modules/devices/alpha/processor.c:92 modules/devices/arm/processor.c:347
-#: modules/devices/e2k/processor.c:365 modules/devices/ia64/processor.c:169
-#: modules/devices/loongarch64/processor.c:88
-#: modules/devices/m68k/processor.c:89 modules/devices/mips/processor.c:79
-#: modules/devices/parisc/processor.c:160 modules/devices/ppc/processor.c:162
-#: modules/devices/riscv/processor.c:187 modules/devices/s390/processor.c:135
-#: modules/devices/sh/processor.c:91 modules/devices/sparc/processor.c:77
-#: modules/devices/x86/processor.c:661
-msgid "Byte Order"
-msgstr ""
-
-#. /hw_cap
-#. /flag:swp
-#: modules/devices/arm/arm_data.c:42
-msgctxt "arm-flag"
-msgid "SWP instruction (atomic read-modify-write)"
-msgstr ""
-
-#. /flag:half
-#: modules/devices/arm/arm_data.c:43
-msgctxt "arm-flag"
-msgid "Half-word loads and stores"
-msgstr ""
-
-#. /flag:thumb
-#: modules/devices/arm/arm_data.c:44
-msgctxt "arm-flag"
-msgid "Thumb (16-bit instruction set)"
-msgstr ""
-
-#. /flag:26bit
-#: modules/devices/arm/arm_data.c:45
-msgctxt "arm-flag"
-msgid "26-Bit Model (Processor status register folded into program counter)"
-msgstr ""
-
-#. /flag:fastmult
-#: modules/devices/arm/arm_data.c:46
-msgctxt "arm-flag"
-msgid "32x32->64-bit multiplication"
-msgstr ""
-
-#. /flag:fpa
-#: modules/devices/arm/arm_data.c:47
-msgctxt "arm-flag"
-msgid "Floating point accelerator"
-msgstr ""
-
-#. /flag:vfp
-#: modules/devices/arm/arm_data.c:48
-msgctxt "arm-flag"
-msgid "VFP (early SIMD vector floating point instructions)"
-msgstr ""
-
-#. /flag:edsp
-#: modules/devices/arm/arm_data.c:49
-msgctxt "arm-flag"
-msgid "DSP extensions (the 'e' variant of the ARM9 CPUs, and all others above)"
-msgstr ""
-
-#. /flag:java
-#: modules/devices/arm/arm_data.c:50
-msgctxt "arm-flag"
-msgid "Jazelle (Java bytecode accelerator)"
-msgstr ""
-
-#. /flag:iwmmxt
-#: modules/devices/arm/arm_data.c:51
-msgctxt "arm-flag"
-msgid "SIMD instructions similar to Intel MMX"
-msgstr ""
-
-#. /flag:crunch
-#: modules/devices/arm/arm_data.c:52
-msgctxt "arm-flag"
-msgid "MaverickCrunch coprocessor (if kernel support enabled)"
-msgstr ""
-
-#. /flag:thumbee
-#: modules/devices/arm/arm_data.c:53
-msgctxt "arm-flag"
-msgid "ThumbEE"
-msgstr ""
-
-#. /flag:neon
-#: modules/devices/arm/arm_data.c:54
-msgctxt "arm-flag"
-msgid "Advanced SIMD/NEON on AArch32"
-msgstr ""
-
-#. /flag:evtstrm
-#: modules/devices/arm/arm_data.c:55
-msgctxt "arm-flag"
-msgid "Kernel event stream using generic architected timer"
-msgstr ""
-
-#. /flag:vfpv3
-#: modules/devices/arm/arm_data.c:56
-msgctxt "arm-flag"
-msgid "VFP version 3"
-msgstr ""
-
-#. /flag:vfpv3d16
-#: modules/devices/arm/arm_data.c:57
-msgctxt "arm-flag"
-msgid "VFP version 3 with 16 D-registers"
-msgstr ""
-
-#. /flag:vfpv4
-#: modules/devices/arm/arm_data.c:58
-msgctxt "arm-flag"
-msgid "VFP version 4 with fast context switching"
-msgstr ""
-
-#. /flag:vfpd32
-#: modules/devices/arm/arm_data.c:59
-msgctxt "arm-flag"
-msgid "VFP with 32 D-registers"
-msgstr ""
-
-#. /flag:tls
-#: modules/devices/arm/arm_data.c:60
-msgctxt "arm-flag"
-msgid "TLS register"
-msgstr ""
-
-#. /flag:idiva
-#: modules/devices/arm/arm_data.c:61
-msgctxt "arm-flag"
-msgid "SDIV and UDIV hardware division in ARM mode"
-msgstr ""
-
-#. /flag:idivt
-#: modules/devices/arm/arm_data.c:62
-msgctxt "arm-flag"
-msgid "SDIV and UDIV hardware division in Thumb mode"
-msgstr ""
-
-#. /flag:lpae
-#: modules/devices/arm/arm_data.c:63
-msgctxt "arm-flag"
-msgid "40-bit Large Physical Address Extension"
-msgstr ""
-
-#. /hw_cap2
-#. /flag:pmull
-#: modules/devices/arm/arm_data.c:65
-msgctxt "arm-flag"
-msgid "64x64->128-bit F2m multiplication (arch>8)"
-msgstr ""
-
-#. /flag:aes
-#: modules/devices/arm/arm_data.c:66
-msgctxt "arm-flag"
-msgid "Crypto:AES (arch>8)"
-msgstr ""
-
-#. /flag:sha1
-#: modules/devices/arm/arm_data.c:67
-msgctxt "arm-flag"
-msgid "Crypto:SHA1 (arch>8)"
-msgstr ""
-
-#. /flag:sha2
-#: modules/devices/arm/arm_data.c:68
-msgctxt "arm-flag"
-msgid "Crypto:SHA2 (arch>8)"
-msgstr ""
-
-#. /flag:crc32
-#: modules/devices/arm/arm_data.c:69
-msgctxt "arm-flag"
-msgid "CRC32 checksum instructions (arch>8)"
-msgstr ""
-
-#. /flag:asimd
-#: modules/devices/arm/arm_data.c:72
-msgctxt "arm-flag"
-msgid "Advanced SIMD/NEON on AArch64 (arch>8)"
-msgstr ""
-
-#: modules/devices/arm/processor.c:143
-msgid "ARM Processor"
-msgstr ""
-
-#: modules/devices/arm/processor.c:214 modules/devices/riscv/processor.c:147
-#: modules/devices/x86/processor.c:610
-msgid "Empty List"
-msgstr ""
-
-#: modules/devices/arm/processor.c:240 modules/devices/gpu.c:158
-#: modules/devices/gpu.c:242 modules/devices/x86/processor.c:268
-msgid "Clocks"
-msgstr ""
-
-#: modules/devices/arm/processor.c:286 modules/devices/arm/processor.c:299
-#: modules/devices/x86/processor.c:314 modules/devices/x86/processor.c:327
-#, c-format
-msgid "%.2f-%.2f %s=%dx\n"
-msgstr ""
-
-#: modules/devices/arm/processor.c:342
-msgid "Linux Name"
-msgstr ""
-
-#: modules/devices/arm/processor.c:343
-msgid "Decoded Name"
-msgstr ""
-
-#: modules/devices/arm/processor.c:344 modules/network/net.c:453
-msgid "Mode"
-msgstr ""
-
-#: modules/devices/arm/processor.c:350
-msgid "ARM"
-msgstr ""
-
-#: modules/devices/arm/processor.c:351
-msgid "Implementer"
-msgstr ""
-
-#: modules/devices/arm/processor.c:352 modules/devices/dmi_memory.c:952
-msgid "Part"
-msgstr ""
-
-#: modules/devices/arm/processor.c:353 modules/devices/ia64/processor.c:162
-#: modules/devices/parisc/processor.c:156 modules/devices/riscv/processor.c:183
-msgid "Architecture"
-msgstr ""
-
-#: modules/devices/arm/processor.c:354
-msgid "Variant"
-msgstr ""
-
-#: modules/devices/arm/processor.c:356 modules/devices/riscv/processor.c:190
-#: modules/devices/sparc/processor.c:78 modules/devices/x86/processor.c:667
-msgid "Capabilities"
-msgstr ""
-
-#: modules/devices/arm/processor.c:468
-msgid "SOC/Package"
-msgstr ""
-
-#: modules/devices/arm/processor.c:471 modules/devices/x86/processor.c:752
-msgid "Topology"
-msgstr ""
-
-#: modules/devices/arm/processor.c:472 modules/devices/x86/processor.c:753
-msgid "Logical CPU Config"
-msgstr ""
-
-#: modules/devices/arm/processor.c:489
-msgid "SOC/Package Information"
-msgstr ""
-
-#: modules/devices/battery.c:178
-#, c-format
-msgid ""
-"\n"
-"[Battery: %s]\n"
-"State=%s (load: %s)\n"
-"Capacity=%s / %s (%.2f%%)\n"
-"Battery Technology=%s (%s)\n"
-"Manufacturer=%s\n"
-"Model Number=%s\n"
-"Serial Number=%s\n"
-msgstr ""
-
-#: modules/devices/battery.c:255
-#, c-format
-msgid ""
-"\n"
-"[Battery: %s]\n"
-"State=%s\n"
-"Capacity=%s / %s\n"
-"Battery Technology=%s\n"
-"Manufacturer=%s\n"
-"Model Number=%s\n"
-"Serial Number=%s\n"
-msgstr ""
-
-#: modules/devices/battery.c:343
-#, c-format
-msgid ""
-"\n"
-"[Battery (APM)]\n"
-"Charge=%d%%\n"
-"Remaining Charge=%s of %s\n"
-"Using=%s\n"
-"APM driver version=%s\n"
-"APM BIOS version=%s\n"
-msgstr ""
-
-#: modules/devices/battery.c:355
-#, c-format
-msgid ""
-"\n"
-"[Battery (APM)]\n"
-"Charge=%d%%\n"
-"Using=%s\n"
-"APM driver version=%s\n"
-"APM BIOS version=%s\n"
-msgstr ""
-
-#: modules/devices/battery.c:382
-msgid ""
-"[No batteries]\n"
-"No batteries found on this system=\n"
-msgstr ""
-
-#: modules/devices/devicetree.c:52
-msgid "Properties"
-msgstr ""
-
-#: modules/devices/devicetree.c:53
-msgid "Children"
-msgstr ""
-
-#: modules/devices/devicetree.c:89
-msgid "Node"
-msgstr ""
-
-#: modules/devices/devicetree.c:90
-msgid "Node Path"
-msgstr ""
-
-#: modules/devices/devicetree.c:91
-msgid "Alias"
-msgstr ""
-
-#: modules/devices/devicetree.c:91 modules/devices/devicetree.c:92
-#: modules/devices/monitors.c:410 modules/devices/storage.c:306
-#: modules/devices/storage.c:328
-msgid "(None)"
-msgstr ""
-
-#: modules/devices/devicetree.c:92
-msgid "Symbol"
-msgstr ""
-
-#: modules/devices/devicetree.c:145 modules/devices/devicetree/pmac_data.c:79
-msgid "Platform"
-msgstr ""
-
-#: modules/devices/devicetree.c:146 modules/devices/devicetree.c:211
-#: modules/devices/gpu.c:247
-msgid "Compatible"
-msgstr ""
-
-#: modules/devices/devicetree.c:147
-msgid "GPU-compatible"
-msgstr ""
-
-#: modules/devices/devicetree.c:162
-msgid "Raspberry Pi or Compatible"
-msgstr ""
-
-#: modules/devices/devicetree.c:164 modules/devices/devicetree.c:191
-#: modules/devices/devicetree.c:210 modules/devices/devicetree/rpi_data.c:169
-#: modules/devices/dmi.c:42 modules/devices/dmi.c:52 modules/devices/dmi.c:58
-#: modules/devices/usb.c:181
-msgid "Serial Number"
-msgstr ""
-
-#: modules/devices/devicetree.c:165 modules/devices/devicetree/rpi_data.c:166
-msgid "RCode"
-msgstr ""
-
-#: modules/devices/devicetree.c:165
-msgid "No revision code available; unable to lookup model details."
-msgstr ""
-
-#: modules/devices/devicetree.c:190
-msgid "More"
-msgstr ""
-
-#: modules/devices/devicetree.c:271
-msgid "Messages"
-msgstr ""
-
-#: modules/devices/devicetree/pmac_data.c:78
-msgid "Apple Power Macintosh"
-msgstr ""
-
-#: modules/devices/devicetree/pmac_data.c:83
-msgid "Detected as"
-msgstr ""
-
-#: modules/devices/devicetree/pmac_data.c:84
-msgid "PMAC Flags"
-msgstr ""
-
-#: modules/devices/devicetree/pmac_data.c:85
-msgid "L2 Cache"
-msgstr ""
-
-#: modules/devices/devicetree/pmac_data.c:86
-msgid "PMAC Generation"
-msgstr ""
-
-#: modules/devices/devicetree/rpi_data.c:161
-#: modules/devices/devicetree/rpi_data.c:162
-msgid "Raspberry Pi"
-msgstr ""
-
-#: modules/devices/devicetree/rpi_data.c:162
-msgid "Board Name"
-msgstr ""
-
-#: modules/devices/devicetree/rpi_data.c:163
-msgid "PCB Revision"
-msgstr ""
-
-#: modules/devices/devicetree/rpi_data.c:164
-msgid "Introduction"
-msgstr ""
-
-#: modules/devices/devicetree/rpi_data.c:165 modules/devices/usb.c:173
-msgid "Manufacturer"
-msgstr ""
-
-#: modules/devices/devicetree/rpi_data.c:167
-msgid "SOC (spec)"
-msgstr ""
-
-#: modules/devices/devicetree/rpi_data.c:168
-msgid "Memory (spec)"
-msgstr ""
-
-#: modules/devices/devicetree/rpi_data.c:170
-msgid "Permanent overvolt bit"
-msgstr ""
-
-#: modules/devices/devicetree/rpi_data.c:170
-msgctxt "rpi-ov-bit"
-msgid "Set"
-msgstr ""
-
-#: modules/devices/devicetree/rpi_data.c:170
-msgctxt "rpi-ov-bit"
-msgid "Not set"
-msgstr ""
-
-#: modules/devices/dmi.c:37 modules/devices/inputdevices.c:145
-#: modules/devices/usb.c:170
-msgid "Product"
-msgstr ""
-
-#: modules/devices/dmi.c:39 modules/devices/e2k/processor.c:360
-#: modules/devices/ia64/processor.c:164
-#: modules/devices/loongarch64/processor.c:82 modules/devices/sh/processor.c:86
-msgid "Family"
-msgstr ""
-
-#: modules/devices/dmi.c:43
-msgid "SKU"
-msgstr ""
-
-#: modules/devices/dmi.c:44
-msgid "BIOS"
-msgstr ""
-
-#: modules/devices/dmi.c:53 modules/devices/dmi.c:59
-msgid "Asset Tag"
-msgstr ""
-
-#: modules/devices/dmi.c:54
-msgid "Chassis"
-msgstr ""
-
-#: modules/devices/dmi.c:121 modules/devices/dmi_memory.c:938
-#: modules/devices/x86/processor.c:696
-msgid "(Not available; Perhaps try running HardInfo as root.)"
-msgstr ""
-
-#: modules/devices/dmi.c:162
-msgid "DMI Unavailable"
-msgstr ""
-
-#: modules/devices/dmi.c:164
-msgid "DMI is not avaliable. Perhaps this platform does not provide DMI."
-msgstr ""
-
-#: modules/devices/dmi.c:165
-msgid "DMI is not available; Perhaps try running HardInfo as root."
-msgstr ""
-
-#: modules/devices/dmi_memory.c:55
-msgid "RAM"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:652
-msgid "Serial Presence Detect (SPD)"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:655
-msgid "SPD Revision"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:656 modules/devices/dmi_memory.c:805
-msgid "Form Factor"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:658
-msgid "Module Vendor"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:660
-msgid "DRAM Vendor"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:662 modules/devices/dmi_memory.c:809
-msgid "Part Number"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:664
-msgid "Manufacturing Date (Week / Year)"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:697 modules/devices/dmi_memory.c:935
-msgid "Memory Device List"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:745
-msgid "Memory Array"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:746 modules/devices/x86/processor.c:715
-msgid "DMI Handle"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:747 modules/devices/dmi_memory.c:803
-#: modules/devices/dmi_memory.c:840 modules/devices/dmi_memory.c:949
-msgid "Locator"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:748
-msgid "Use"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:749
-msgid "Error Correction Type"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:750
-msgid "Size (Present / Max)"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:751
-msgid "Devices (Populated / Sockets)"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:752 modules/devices/dmi_memory.c:883
-msgid "Types Present"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:753
-msgid "ROM Size"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:801 modules/devices/dmi_memory.c:838
-msgid "Memory Socket"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:802 modules/devices/dmi_memory.c:839
-msgid "DMI Handles (Array, Socket)"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:804 modules/devices/dmi_memory.c:841
-msgid "Bank Locator"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:811
-msgid "Rated Speed"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:812
-msgid "Configured Speed"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:813
-msgid "Data Width/Total Width"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:814
-msgid "Rank"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:815
-msgid "Minimum Voltage"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:816
-msgid "Maximum Voltage"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:817
-msgid "Configured Voltage"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:842 modules/devices/dmi_memory.c:849
-#: modules/devices/monitors.c:494
-msgid "(Empty)"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:880
-msgid "Serial Presence Detect (SPD) Summary"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:1006
-msgid " <b><i>dmidecode</i></b> utility available"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:1007
-msgid " ... <i>and</i> HardInfo running with superuser privileges"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:1008
-msgid ""
-" <b><i>at24</i></b> (or eeprom) module loaded (for SDR, DDR, DDR2, DDR3)"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:1009
-msgid ""
-" ... <i>or</i> <b><i>ee1004</i></b> module loaded <b>and configured!</b> "
-"(for DDR4)"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:1018
-msgid "Memory information requires <b>one or both</b> of the following:"
-msgstr ""
-
-#: modules/devices/dmi_memory.c:1044
-msgid ""
-"\"More often than not, information contained in the DMI tables is "
-"inaccurate,\n"
-"incomplete or simply wrong.\" -<i><b>dmidecode</b></i> manual page"
-msgstr ""
-
-#: modules/devices/e2k/processor.c:30 modules/devices/x86/processor.c:149
-msgid "Cache information not available=\n"
-msgstr ""
-
-#: modules/devices/e2k/processor.c:36 modules/devices/x86/processor.c:155
-#, c-format
-msgid "Level %d (%s)=%d-way set-associative, %d sets, %dKB size\n"
-msgstr ""
-
-#. /cache type, as appears in: Level 1 (Data)
-#: modules/devices/e2k/processor.c:51 modules/devices/x86/processor.c:170
-msgctxt "cache-type"
-msgid "Data"
-msgstr ""
-
-#. /cache type, as appears in: Level 1 (Instruction)
-#: modules/devices/e2k/processor.c:52 modules/devices/x86/processor.c:171
-msgctxt "cache-type"
-msgid "Instruction"
-msgstr ""
-
-#. /cache type, as appears in: Level 2 (Unified)
-#: modules/devices/e2k/processor.c:53 modules/devices/x86/processor.c:172
-msgctxt "cache-type"
-msgid "Unified"
-msgstr ""
-
-#: modules/devices/e2k/processor.c:157 modules/devices/x86/processor.c:367
-msgid "Caches"
-msgstr ""
-
-#: modules/devices/e2k/processor.c:208 modules/devices/e2k/processor.c:225
-#: modules/devices/x86/processor.c:418 modules/devices/x86/processor.c:435
-#, c-format
-msgid "Level %d (%s)#%d=%dx %dKB (%dKB), %d-way set-associative, %d sets\n"
-msgstr ""
-
-#: modules/devices/e2k/processor.c:366 modules/devices/parisc/processor.c:163
-#: modules/devices/x86/processor.c:664
-msgid "Cache"
-msgstr ""
-
-#: modules/devices/firmware.c:36
-msgid "Device cannot be removed easily"
-msgstr ""
-
-#: modules/devices/firmware.c:37
-msgid "Device is updatable in this or any other mode"
-msgstr ""
-
-#: modules/devices/firmware.c:38
-msgid "Update can only be done from offline mode"
-msgstr ""
-
-#: modules/devices/firmware.c:39
-msgid "Requires AC power"
-msgstr ""
-
-#: modules/devices/firmware.c:40
-msgid "Is locked and can be unlocked"
-msgstr ""
-
-#: modules/devices/firmware.c:41
-msgid "Is found in current metadata"
-msgstr ""
-
-#: modules/devices/firmware.c:42
-msgid "Requires a bootloader mode to be manually enabled by the user"
-msgstr ""
-
-#: modules/devices/firmware.c:43
-msgid "Has been registered with other plugins"
-msgstr ""
-
-#: modules/devices/firmware.c:44
-msgid "Requires a reboot to apply firmware or to reload hardware"
-msgstr ""
-
-#: modules/devices/firmware.c:45
-msgid "Requires system shutdown to apply firmware"
-msgstr ""
-
-#: modules/devices/firmware.c:46
-msgid "Has been reported to a metadata server"
-msgstr ""
-
-#: modules/devices/firmware.c:47
-msgid "User has been notified"
-msgstr ""
-
-#: modules/devices/firmware.c:48
-msgid "Always use the runtime version rather than the bootloader"
-msgstr ""
-
-#: modules/devices/firmware.c:49
-msgid "Install composite firmware on the parent before the child"
-msgstr ""
-
-#: modules/devices/firmware.c:50
-msgid "Is currently in bootloader mode"
-msgstr ""
-
-#: modules/devices/firmware.c:51
-msgid "The hardware is waiting to be replugged"
-msgstr ""
-
-#: modules/devices/firmware.c:52
-msgid "Ignore validation safety checks when flashing this device"
-msgstr ""
-
-#: modules/devices/firmware.c:53
-msgid "Requires the update to be retried with a new plugin"
-msgstr ""
-
-#: modules/devices/firmware.c:54
-msgid "Do not add instance IDs from the device baseclass"
-msgstr ""
-
-#: modules/devices/firmware.c:55
-msgid "Device update needs to be separately activated"
-msgstr ""
-
-#: modules/devices/firmware.c:56
-msgid ""
-"Ensure the version is a valid semantic version, e.g. numbers separated with "
-"dots"
-msgstr ""
-
-#: modules/devices/firmware.c:57
-msgid "Extra metadata can be exposed about this device"
-msgstr ""
-
-#: modules/devices/firmware.c:74
-msgid "DeviceId"
-msgstr ""
-
-#: modules/devices/firmware.c:74 modules/devices/firmware.c:187
-msgid "Guid"
-msgstr ""
-
-#: modules/devices/firmware.c:74
-msgid "Plugin"
-msgstr ""
-
-#: modules/devices/firmware.c:74 modules/devices/firmware.c:205
-#: modules/network.c:380
-msgid "Flags"
-msgstr ""
-
-#: modules/devices/firmware.c:75
-msgid "VendorId"
-msgstr ""
-
-#: modules/devices/firmware.c:75
-msgid "VersionBootloader"
-msgstr ""
-
-#: modules/devices/firmware.c:76 modules/devices/firmware.c:179
-msgid "Icon"
-msgstr ""
-
-#: modules/devices/firmware.c:76
-msgid "InstallDuration"
-msgstr ""
-
-#: modules/devices/firmware.c:76 modules/devices/firmware.c:197
-msgid "Created"
-msgstr ""
-
-#: modules/devices/firmware.c:244
-msgid "Firmware List"
-msgstr ""
-
-#: modules/devices/firmware.c:257
-msgid "Requires the <i><b>fwupd</b></i> daemon."
-msgstr ""
-
-#: modules/devices/gpu.c:94 modules/devices/pci.c:111
-#: modules/devices/storage.c:58
-msgid "SVendor"
-msgstr ""
-
-#: modules/devices/gpu.c:95 modules/devices/pci.c:112
-#: modules/devices/storage.c:59
-msgid "SDevice"
-msgstr ""
-
-#: modules/devices/gpu.c:103 modules/devices/pci.c:122
-#: modules/devices/storage.c:68
-msgid "PCI Express"
-msgstr ""
-
-#: modules/devices/gpu.c:104 modules/devices/pci.c:124
-#: modules/devices/storage.c:70
-msgid "Maximum Link Width"
-msgstr ""
-
-#: modules/devices/gpu.c:105 modules/devices/pci.c:126
-#: modules/devices/storage.c:71
-msgid "Maximum Link Speed"
-msgstr ""
-
-#: modules/devices/gpu.c:105 modules/devices/pci.c:125
-#: modules/devices/pci.c:126 modules/devices/storage.c:71
-msgid "GT/s"
-msgstr ""
-
-#: modules/devices/gpu.c:115
-msgid "NVIDIA"
-msgstr ""
-
-#: modules/devices/gpu.c:117
-msgid "BIOS Version"
-msgstr ""
-
-#: modules/devices/gpu.c:118
-msgid "UUID"
-msgstr ""
-
-#: modules/devices/gpu.c:152 modules/devices/gpu.c:238
-#: modules/devices/inputdevices.c:140 modules/devices/pci.c:143
-#: modules/devices/usb.c:169
-msgid "Device Information"
-msgstr ""
-
-#: modules/devices/gpu.c:153 modules/devices/gpu.c:239
-#: modules/devices/storage.c:69
-msgid "Location"
-msgstr ""
-
-#: modules/devices/gpu.c:154
-msgid "DRM Device"
-msgstr ""
-
-#: modules/devices/gpu.c:155 modules/devices/pci.c:144
-#: modules/devices/usb.c:136 modules/devices/usb.c:177
-msgid "Class"
-msgstr ""
-
-#: modules/devices/gpu.c:159 modules/devices/gpu.c:243
-msgid "Core"
-msgstr ""
-
-#: modules/devices/gpu.c:164 modules/devices/pci.c:149
-msgid "In Use"
-msgstr ""
-
-#: modules/devices/gpu.c:199
-msgid "Unknown integrated GPU"
-msgstr ""
-
-#: modules/devices/gpu.c:207
-msgid "clock-frequency property"
-msgstr ""
-
-#: modules/devices/gpu.c:208
-msgid "Operating Points (OPPv1)"
-msgstr ""
-
-#: modules/devices/gpu.c:209
-msgid "Operating Points (OPPv2)"
-msgstr ""
-
-#: modules/devices/gpu.c:216
-msgid "Frequency Scaling"
-msgstr ""
-
-#: modules/devices/gpu.c:217
-msgid "Minimum"
-msgstr ""
-
-#: modules/devices/gpu.c:217 modules/devices/gpu.c:218
-msgid "kHz"
-msgstr ""
-
-#: modules/devices/gpu.c:218
-msgid "Maximum"
-msgstr ""
-
-#: modules/devices/gpu.c:219
-msgid "Transition Latency"
-msgstr ""
-
-#: modules/devices/gpu.c:219
-msgid "ns"
-msgstr ""
-
-#: modules/devices/gpu.c:245
-msgid "Device Tree Node"
-msgstr ""
-
-#: modules/devices/gpu.c:248 modules/devices/monitors.c:474
-#: modules/network/net.c:454
-msgid "Status"
-msgstr ""
-
-#: modules/devices/gpu.c:265
-msgid "GPUs"
-msgstr ""
-
-#: modules/devices/gpu.c:289
-msgid "No GPU devices found"
-msgstr ""
-
-#: modules/devices/ia64/processor.c:108
-msgid "IA64 Processor"
-msgstr ""
-
-#: modules/devices/ia64/processor.c:163
-msgid "Architecture Revision"
-msgstr ""
-
-#: modules/devices/ia64/processor.c:170
-msgid "CPU regs"
-msgstr ""
-
-#: modules/devices/ia64/processor.c:171
-#: modules/devices/loongarch64/processor.c:87
-msgid "Features"
-msgstr ""
-
-#: modules/devices/inputdevices.c:143 modules/devices/pci.c:153
-#: modules/devices/usb.c:183
-msgid "Bus"
-msgstr ""
-
-#: modules/devices/inputdevices.c:149
-msgid "Connected to"
-msgstr ""
-
-#: modules/devices/inputdevices.c:153
-msgid "InfraRed port"
-msgstr ""
-
-#: modules/devices/loongarch64/processor.c:81
-#: modules/devices/mips/processor.c:76
-msgid "System Type"
-msgstr ""
-
-#: modules/devices/loongarch64/processor.c:86
-msgid "BogoMIPS"
-msgstr ""
-
-#: modules/devices/m68k/processor.c:85 modules/devices/riscv/processor.c:185
-msgid "MMU"
-msgstr ""
-
-#: modules/devices/m68k/processor.c:86 modules/devices/sparc/processor.c:76
-msgid "FPU"
-msgstr ""
-
-#: modules/devices/m68k/processor.c:90
-msgid "Calibration"
-msgstr ""
-
-#: modules/devices/monitors.c:29 modules/devices/monitors.c:256
-#: modules/devices/monitors.c:349 modules/devices/spd-decode.c:665
-msgid "(Unspecified)"
-msgstr ""
-
-#: modules/devices/monitors.c:231
-#, c-format
-msgid "Week %d of %d"
-msgstr ""
-
-#: modules/devices/monitors.c:241
-msgid "Ok"
-msgstr ""
-
-#: modules/devices/monitors.c:241
-msgid "Fail"
-msgstr ""
-
-#: modules/devices/monitors.c:269 modules/devices/monitors.c:277
-#: modules/devices/monitors.c:285 modules/devices/monitors.c:296
-#: modules/devices/monitors.c:304 modules/devices/monitors.c:311
-#: modules/devices/monitors.c:319 modules/devices/monitors.c:327
-#: modules/devices/monitors.c:335 modules/devices/monitors.c:341
-msgid "(Empty List)"
-msgstr ""
-
-#: modules/devices/monitors.c:393
-msgid "Signal Type"
-msgstr ""
-
-#: modules/devices/monitors.c:393
-msgid "Digital"
-msgstr ""
-
-#: modules/devices/monitors.c:393
-msgid "Analog"
-msgstr ""
-
-#: modules/devices/monitors.c:394 modules/devices/usb.c:135
-#: modules/network.c:310 modules/network.c:363 modules/network.c:380
-msgid "Interface"
-msgstr ""
-
-#: modules/devices/monitors.c:395
-msgid "Bits per Color Channel"
-msgstr ""
-
-#: modules/devices/monitors.c:396
-msgid "Speaker Allocation"
-msgstr ""
-
-#: modules/devices/monitors.c:397
-msgid "Output (Max)"
-msgstr ""
-
-#: modules/devices/monitors.c:400
-msgid "EDID Device"
-msgstr ""
-
-#: modules/devices/monitors.c:404
-msgid "Serial"
-msgstr ""
-
-#: modules/devices/monitors.c:405
-msgid "Manufacture Date"
-msgstr ""
-
-#: modules/devices/monitors.c:406
-msgid "EDID Meta"
-msgstr ""
-
-#: modules/devices/monitors.c:407
-msgid "Data Size"
-msgstr ""
-
-#: modules/devices/monitors.c:407
-msgid "bytes"
-msgstr ""
-
-#: modules/devices/monitors.c:409
-msgid "Extension Blocks"
-msgstr ""
-
-#: modules/devices/monitors.c:410
-msgid "Extended to"
-msgstr ""
-
-#: modules/devices/monitors.c:411
-msgid "Checksum"
-msgstr ""
-
-#: modules/devices/monitors.c:412
-msgid "EDID Descriptors"
-msgstr ""
-
-#: modules/devices/monitors.c:413
-msgid "Detailed Timing Descriptors (DTD)"
-msgstr ""
-
-#: modules/devices/monitors.c:414
-msgid "Established Timings Bitmap (ETB)"
-msgstr ""
-
-#: modules/devices/monitors.c:415
-msgid "Standard Timings (STD)"
-msgstr ""
-
-#: modules/devices/monitors.c:416
-msgid "E-EDID Extension Blocks"
-msgstr ""
-
-#: modules/devices/monitors.c:417
-msgid "EIA/CEA-861 Data Blocks"
-msgstr ""
-
-#: modules/devices/monitors.c:418
-msgid "EIA/CEA-861 Short Audio Descriptors"
-msgstr ""
-
-#: modules/devices/monitors.c:419
-msgid "EIA/CEA-861 Short Video Descriptors"
-msgstr ""
-
-#: modules/devices/monitors.c:420
-msgid "DisplayID Timings"
-msgstr ""
-
-#: modules/devices/monitors.c:421
-msgid "DisplayID Strings"
-msgstr ""
-
-#: modules/devices/monitors.c:422
-msgid "Hex Dump"
-msgstr ""
-
-#: modules/devices/monitors.c:422
-msgid "Data"
-msgstr ""
-
-#: modules/devices/monitors.c:472 modules/devices/monitors.c:503
-#: modules/devices/pci.c:151 modules/devices/usb.c:182
-msgid "Connection"
-msgstr ""
-
-#: modules/devices/monitors.c:473
-msgid "DRM"
-msgstr ""
-
-#: modules/devices/parisc/processor.c:107
-msgid "PA-RISC Processor"
-msgstr ""
-
-#: modules/devices/parisc/processor.c:157
-msgid "System"
-msgstr ""
-
-#: modules/devices/parisc/processor.c:161
-msgid "HVersion"
-msgstr ""
-
-#: modules/devices/parisc/processor.c:162
-msgid "SVersion"
-msgstr ""
-
-#: modules/devices/pci.c:123
-msgid "Link Width"
-msgstr ""
-
-#: modules/devices/pci.c:125
-msgid "Link Speed"
-msgstr ""
-
-#: modules/devices/pci.c:152
-msgid "Domain"
-msgstr ""
-
-#: modules/devices/pci.c:155
-msgid "Function"
-msgstr ""
-
-#: modules/devices/pci.c:196
-msgid "No PCI devices found"
-msgstr ""
-
-#: modules/devices/ppc/processor.c:117
-msgid "POWER Processor"
-msgstr ""
-
-#: modules/devices/printers.c:88
-msgid "⚬ Can do black and white printing=\n"
-msgstr ""
-
-#: modules/devices/printers.c:90
-msgid "⚬ Can do color printing=\n"
-msgstr ""
-
-#: modules/devices/printers.c:92
-msgid "⚬ Can do duplexing=\n"
-msgstr ""
-
-#: modules/devices/printers.c:94
-msgid "⚬ Can do staple output=\n"
-msgstr ""
-
-#: modules/devices/printers.c:96
-msgid "⚬ Can do copies=\n"
-msgstr ""
-
-#: modules/devices/printers.c:98
-msgid "⚬ Can collate copies=\n"
-msgstr ""
-
-#: modules/devices/printers.c:100
-msgid "⚬ Printer is rejecting jobs=\n"
-msgstr ""
-
-#: modules/devices/printers.c:102
-msgid "⚬ Printer was automatically discovered and added=\n"
-msgstr ""
-
-#: modules/devices/printers.c:117
-msgid "Idle"
-msgstr ""
-
-#: modules/devices/printers.c:119
-msgid "Printing a Job"
-msgstr ""
-
-#: modules/devices/printers.c:121
-msgid "Stopped"
-msgstr ""
-
-#: modules/devices/printers.c:200
-msgid ""
-"[Printers]\n"
-"No suitable CUPS library found="
-msgstr ""
-
-#: modules/devices/printers.c:213
-msgid "[Printers (CUPS)]\n"
-msgstr ""
-
-#: modules/devices/printers.c:277
-msgid ""
-"[Printers]\n"
-"No printers found=\n"
-msgstr ""
-
-#: modules/devices/riscv/processor.c:107
-msgid "RISC-V Processor"
-msgstr ""
-
-#: modules/devices/riscv/processor.c:184
-msgid "uarch"
-msgstr ""
-
-#. /ext:RV32
-#: modules/devices/riscv/riscv_data.c:37
-msgctxt "rv-ext"
-msgid "RISC-V 32-bit"
-msgstr ""
-
-#. /ext:RV64
-#: modules/devices/riscv/riscv_data.c:38
-msgctxt "rv-ext"
-msgid "RISC-V 64-bit"
-msgstr ""
-
-#. /ext:RV128
-#: modules/devices/riscv/riscv_data.c:39
-msgctxt "rv-ext"
-msgid "RISC-V 128-bit"
-msgstr ""
-
-#. /ext:E
-#: modules/devices/riscv/riscv_data.c:40
-msgctxt "rv-ext"
-msgid "Base embedded integer instructions (15 registers)"
-msgstr ""
-
-#. /ext:I
-#: modules/devices/riscv/riscv_data.c:41
-msgctxt "rv-ext"
-msgid "Base integer instructions (31 registers)"
-msgstr ""
-
-#. /ext:M
-#: modules/devices/riscv/riscv_data.c:42
-msgctxt "rv-ext"
-msgid "Hardware integer multiply and divide"
-msgstr ""
-
-#. /ext:A
-#: modules/devices/riscv/riscv_data.c:43
-msgctxt "rv-ext"
-msgid "Atomic memory operations"
-msgstr ""
-
-#. /ext:C
-#: modules/devices/riscv/riscv_data.c:44
-msgctxt "rv-ext"
-msgid "Compressed 16-bit instructions"
-msgstr ""
-
-#. /ext:F
-#: modules/devices/riscv/riscv_data.c:45
-msgctxt "rv-ext"
-msgid "Floating-point instructions, single-precision"
-msgstr ""
-
-#. /ext:D
-#: modules/devices/riscv/riscv_data.c:46
-msgctxt "rv-ext"
-msgid "Floating-point instructions, double-precision"
-msgstr ""
-
-#. /ext:Q
-#: modules/devices/riscv/riscv_data.c:47
-msgctxt "rv-ext"
-msgid "Floating-point instructions, quad-precision"
-msgstr ""
-
-#. /ext:B
-#: modules/devices/riscv/riscv_data.c:48
-msgctxt "rv-ext"
-msgid "Bit manipulation instructions"
-msgstr ""
-
-#. /ext:V
-#: modules/devices/riscv/riscv_data.c:49
-msgctxt "rv-ext"
-msgid "Vector operations"
-msgstr ""
-
-#. /ext:T
-#: modules/devices/riscv/riscv_data.c:50
-msgctxt "rv-ext"
-msgid "Transactional memory"
-msgstr ""
-
-#. /ext:P
-#: modules/devices/riscv/riscv_data.c:51
-msgctxt "rv-ext"
-msgid "Packed SIMD instructions"
-msgstr ""
-
-#. /ext:L
-#: modules/devices/riscv/riscv_data.c:52
-msgctxt "rv-ext"
-msgid "Decimal floating-point instructions"
-msgstr ""
-
-#. /ext:J
-#: modules/devices/riscv/riscv_data.c:53
-msgctxt "rv-ext"
-msgid "Dynamically translated languages"
-msgstr ""
-
-#. /ext:N
-#: modules/devices/riscv/riscv_data.c:54
-msgctxt "rv-ext"
-msgid "User-level interrupts"
-msgstr ""
-
-#: modules/devices/s390/processor.c:92
-msgid "S390 Processor"
-msgstr ""
-
-#: modules/devices/s390/processor.c:133
-msgid "ID String"
-msgstr ""
-
-#: modules/devices/sh/processor.c:55
-msgid "SuperH Processor"
-msgstr ""
-
-#: modules/devices/sh/processor.c:88
-msgid "Bus Frequency"
-msgstr ""
-
-#: modules/devices/sh/processor.c:89
-msgid "Module Frequency"
-msgstr ""
-
-#: modules/devices/spd-decode.c:306
-msgid "Row address bits"
-msgstr ""
-
-#: modules/devices/spd-decode.c:307
-msgid "Column address bits"
-msgstr ""
-
-#: modules/devices/spd-decode.c:308
-msgid "Number of rows"
-msgstr ""
-
-#: modules/devices/spd-decode.c:309
-msgid "Data width"
-msgstr ""
-
-#: modules/devices/spd-decode.c:310
-msgid "Interface signal levels"
-msgstr ""
-
-#: modules/devices/spd-decode.c:311
-msgid "Configuration type"
-msgstr ""
-
-#: modules/devices/spd-decode.c:312
-msgid "Refresh"
-msgstr ""
-
-#: modules/devices/spd-decode.c:313 modules/devices/spd-decode.c:397
-#: modules/devices/spd-decode.c:687
-msgid "Timings"
-msgstr ""
-
-#: modules/devices/spd-decode.c:550 modules/devices/spd-decode.c:941
-#: modules/devices/spd-decode.c:983 modules/devices/x86/processor.c:717
-msgid "Voltage"
-msgstr ""
-
-#: modules/devices/spd-decode.c:551 modules/devices/spd-decode.c:985
-msgid "JEDEC Timings"
-msgstr ""
-
-#: modules/devices/spd-decode.c:663
-msgid "Ranks"
-msgstr ""
-
-#: modules/devices/spd-decode.c:664
-msgid "IO Pins per Chip"
-msgstr ""
-
-#: modules/devices/spd-decode.c:665
-msgid "Die count"
-msgstr ""
-
-#: modules/devices/spd-decode.c:666
-msgid "Thermal Sensor"
-msgstr ""
-
-#: modules/devices/spd-decode.c:666
-msgid "Present"
-msgstr ""
-
-#: modules/devices/spd-decode.c:666
-msgid "Not present"
-msgstr ""
-
-#: modules/devices/spd-decode.c:667
-msgid "Supported Voltages"
-msgstr ""
-
-#: modules/devices/spd-decode.c:671
-msgid "Supported CAS Latencies"
-msgstr ""
-
-#: modules/devices/spd-decode.c:708
-msgid "Invalid"
-msgstr ""
-
-#: modules/devices/spd-decode.c:939
-msgid "XMP Profile"
-msgstr ""
-
-#: modules/devices/spd-decode.c:940 modules/devices/usb.c:176
-msgid "Speed"
-msgstr ""
-
-#: modules/devices/spd-decode.c:942
-msgid "XMP Timings"
-msgstr ""
-
-#: modules/devices/spd-decode.c:984
-msgid "XMP"
-msgstr ""
-
-#: modules/devices/storage.c:46 modules/devices/storage.c:55
-msgid "NVMe Controller"
-msgstr ""
-
-#: modules/devices/storage.c:138
-msgid "Read Error Rate"
-msgstr ""
-
-#: modules/devices/storage.c:139
-msgid "Throughput Performance"
-msgstr ""
-
-#: modules/devices/storage.c:140
-msgid "Spin-Up Time"
-msgstr ""
-
-#: modules/devices/storage.c:141
-msgid "Start/Stop Count"
-msgstr ""
-
-#: modules/devices/storage.c:142
-msgid "Reallocated Sector Count"
-msgstr ""
-
-#: modules/devices/storage.c:143
-msgid "Read Channel Margin"
-msgstr ""
-
-#: modules/devices/storage.c:144
-msgid "Seek Error Rate"
-msgstr ""
-
-#: modules/devices/storage.c:145
-msgid "Seek Timer Performance"
-msgstr ""
-
-#: modules/devices/storage.c:146 modules/devices/storage.c:185
-msgid "Power-On Hours"
-msgstr ""
-
-#: modules/devices/storage.c:147
-msgid "Spin Retry Count"
-msgstr ""
-
-#: modules/devices/storage.c:148
-msgid "Calibration Retry Count"
-msgstr ""
-
-#: modules/devices/storage.c:149
-msgid "Power Cycle Count"
-msgstr ""
-
-#: modules/devices/storage.c:150 modules/devices/storage.c:167
-msgid "Soft Read Error Rate"
-msgstr ""
-
-#: modules/devices/storage.c:151
-msgid "Runtime Bad Block"
-msgstr ""
-
-#: modules/devices/storage.c:152
-msgid "End-to-End error"
-msgstr ""
-
-#: modules/devices/storage.c:153
-msgid "Reported Uncorrectable Errors"
-msgstr ""
-
-#: modules/devices/storage.c:154
-msgid "Command Timeout"
-msgstr ""
-
-#: modules/devices/storage.c:155
-msgid "High Fly Writes"
-msgstr ""
-
-#: modules/devices/storage.c:156
-msgid "Airflow Temperature"
-msgstr ""
-
-#: modules/devices/storage.c:157
-msgid "G-sense Error Rate"
-msgstr ""
-
-#: modules/devices/storage.c:158
-msgid "Power-off Retract Count"
-msgstr ""
-
-#: modules/devices/storage.c:159
-msgid "Load Cycle Count"
-msgstr ""
-
-#: modules/devices/storage.c:160 modules/devices/storage.c:183
-msgid "Temperature"
-msgstr ""
-
-#: modules/devices/storage.c:161
-msgid "Hardware ECC Recovered"
-msgstr ""
-
-#: modules/devices/storage.c:162
-msgid "Reallocation Event Count"
-msgstr ""
-
-#: modules/devices/storage.c:163
-msgid "Current Pending Sector Count"
-msgstr ""
-
-#: modules/devices/storage.c:164
-msgid "Uncorrectable Sector Count"
-msgstr ""
-
-#: modules/devices/storage.c:165
-msgid "UltraDMA CRC Error Count"
-msgstr ""
-
-#: modules/devices/storage.c:166
-msgid "Multi-Zone Error Rate"
-msgstr ""
-
-#: modules/devices/storage.c:168
-msgid "Run Out Cancel"
-msgstr ""
-
-#: modules/devices/storage.c:169
-msgid "Flying Height"
-msgstr ""
-
-#: modules/devices/storage.c:170
-msgid "Spin High Current"
-msgstr ""
-
-#: modules/devices/storage.c:171
-msgid "Spin Buzz"
-msgstr ""
-
-#: modules/devices/storage.c:172
-msgid "Offline Seek Performance"
-msgstr ""
-
-#: modules/devices/storage.c:173
-msgid "Disk Shift"
-msgstr ""
-
-#: modules/devices/storage.c:174
-msgid "G-Sense Error Rate"
-msgstr ""
-
-#: modules/devices/storage.c:175
-msgid "Loaded Hours"
-msgstr ""
-
-#: modules/devices/storage.c:176
-msgid "Load/Unload Retry Count"
-msgstr ""
-
-#: modules/devices/storage.c:177
-msgid "Load Friction"
-msgstr ""
-
-#: modules/devices/storage.c:178
-msgid "Load/Unload Cycle Count"
-msgstr ""
-
-#: modules/devices/storage.c:179
-msgid "Load-in time"
-msgstr ""
-
-#: modules/devices/storage.c:180
-msgid "Torque Amplification Count"
-msgstr ""
-
-#: modules/devices/storage.c:181
-msgid "Power-Off Retract Count"
-msgstr ""
-
-#: modules/devices/storage.c:182
-msgid "GMR Head Amplitude"
-msgstr ""
-
-#: modules/devices/storage.c:184
-msgid "Endurance Remaining"
-msgstr ""
-
-#: modules/devices/storage.c:186
-msgid "Good Block Rate"
-msgstr ""
-
-#: modules/devices/storage.c:187
-msgid "Head Flying Hours"
-msgstr ""
-
-#: modules/devices/storage.c:188
-msgid "Read Error Retry Rate"
-msgstr ""
-
-#: modules/devices/storage.c:189
-msgid "Total LBAs Written"
-msgstr ""
-
-#: modules/devices/storage.c:190
-msgid "Total LBAs Read"
-msgstr ""
-
-#: modules/devices/storage.c:191
-msgid "Wear leveling Count"
-msgstr ""
-
-#: modules/devices/storage.c:192
-msgid "Total Used Reserved Block Count"
-msgstr ""
-
-#: modules/devices/storage.c:193
-msgid "Total Program Fail Count"
-msgstr ""
-
-#: modules/devices/storage.c:194
-msgid "Total Erase Fail Count"
-msgstr ""
-
-#: modules/devices/storage.c:195
-msgid "Available Reserved Space"
-msgstr ""
-
-#: modules/devices/storage.c:196
-msgid "Program Fail Count"
-msgstr ""
-
-#: modules/devices/storage.c:197
-msgid "Erase Fail Count"
-msgstr ""
-
-#: modules/devices/storage.c:198
-msgid "TA Counter Increased"
-msgstr ""
-
-#: modules/devices/storage.c:199
-msgid "Total Unused Reserved Block Count"
-msgstr ""
-
-#: modules/devices/storage.c:204
-msgid ""
-"\n"
-"[UDisks2]\n"
-msgstr ""
-
-#: modules/devices/storage.c:257
-msgid "Removable"
-msgstr ""
-
-#: modules/devices/storage.c:257
-msgid "Fixed"
-msgstr ""
-
-#: modules/devices/storage.c:260
-msgid "Ejectable"
-msgstr ""
-
-#: modules/devices/storage.c:263
-msgid "Self-monitoring (S.M.A.R.T.)"
-msgstr ""
-
-#: modules/devices/storage.c:266 modules/devices/x86/processor.c:665
-msgid "Power Management"
-msgstr ""
-
-#: modules/devices/storage.c:269
-msgid "Advanced Power Management"
-msgstr ""
-
-#: modules/devices/storage.c:272
-msgid "Automatic Acoustic Management"
-msgstr ""
-
-#: modules/devices/storage.c:275
-#, c-format
-msgid ""
-"[Drive Information]\n"
-"Model=%s\n"
-msgstr ""
-
-#: modules/devices/storage.c:285
-#, c-format
-msgid ""
-"Revision=%s\n"
-"Block Device=%s\n"
-"Serial=%s\n"
-"Size=%s\n"
-"Features=%s\n"
-msgstr ""
-
-#: modules/devices/storage.c:300
-#, c-format
-msgid "Rotation Rate=%d RPM\n"
-msgstr ""
-
-#: modules/devices/storage.c:303
-#, c-format
-msgid ""
-"Media=%s\n"
-"Media compatibility=%s\n"
-msgstr ""
-
-#: modules/devices/storage.c:310
-#, c-format
-msgid "Connection bus=%s\n"
-msgstr ""
-
-#: modules/devices/storage.c:322
-msgid "WWN"
-msgstr ""
-
-#: modules/devices/storage.c:323
-msgid "EUI "
-msgstr ""
-
-#: modules/devices/storage.c:328
-msgid "WWN / EUI"
-msgstr ""
-
-#: modules/devices/storage.c:332
-#, c-format
-msgid "$^$%s=[%s] %s\n"
-msgstr ""
-
-#: modules/devices/storage.c:334
-msgid "IEEE OUI"
-msgstr ""
-
-#: modules/devices/storage.c:346
-msgid ""
-"[Self-monitoring (S.M.A.R.T.)]\n"
-"Status=%s\n"
-"Bad Sectors=%"
-msgstr ""
-
-#: modules/devices/storage.c:352
-msgid "Failing"
-msgstr ""
-
-#: modules/devices/storage.c:352
-msgid "OK"
-msgstr ""
-
-#: modules/devices/storage.c:358
-msgid ""
-"[S.M.A.R.T. Attributes]\n"
-"Attribute=<tt>Value / Normalized / Worst / Threshold</tt>\n"
-msgstr ""
-
-#: modules/devices/storage.c:381
-msgid "%"
-msgid_plural "%"
-msgstr[0] ""
-msgstr[1] ""
-
-#: modules/devices/storage.c:419
-#, c-format
-msgid "(%d) %s=<tt>%s</tt>\n"
-msgstr ""
-
-#: modules/devices/storage.c:428
-#, c-format
-msgid ""
-"[Partition table]\n"
-"Type=%s\n"
-msgstr ""
-
-#: modules/devices/storage.c:447
-#, c-format
-msgid "Partition %s=%s\n"
-msgstr ""
-
-#: modules/devices/storage.c:496
-msgid ""
-"\n"
-"[SCSI Disks]\n"
-msgstr ""
-
-#: modules/devices/storage.c:567 modules/devices/storage.c:767
-#, c-format
-msgid ""
-"[Device Information]\n"
-"Model=%s\n"
-msgstr ""
-
-#: modules/devices/storage.c:574
-#, c-format
-msgid ""
-"Type=%s\n"
-"Revision=%s\n"
-"[SCSI Controller]\n"
-"Controller=scsi%d\n"
-"Channel=%d\n"
-"ID=%d\n"
-"LUN=%d\n"
-msgstr ""
-
-#: modules/devices/storage.c:621
-msgid ""
-"\n"
-"[IDE Disks]\n"
-msgstr ""
-
-#: modules/devices/storage.c:704
-#, c-format
-msgid "Driver=%s\n"
-msgstr ""
-
-#: modules/devices/storage.c:773
-#, c-format
-msgid ""
-"Device Name=hd%c\n"
-"Media=%s\n"
-"Cache=%dkb\n"
-msgstr ""
-
-#: modules/devices/storage.c:783
-#, c-format
-msgid ""
-"[Geometry]\n"
-"Physical=%s\n"
-"Logical=%s\n"
-msgstr ""
-
-#: modules/devices/storage.c:793
-#, c-format
-msgid ""
-"[Capabilities]\n"
-"%s"
-msgstr ""
-
-#: modules/devices/storage.c:800
-#, c-format
-msgid ""
-"[Speeds]\n"
-"%s"
-msgstr ""
-
-#: modules/devices/usb.c:137 modules/devices/usb.c:178
-msgid "Sub-class"
-msgstr ""
-
-#: modules/devices/usb.c:138 modules/devices/usb.c:179 modules/network.c:347
-msgid "Protocol"
-msgstr ""
-
-#: modules/devices/usb.c:146 modules/network/net.c:451
-msgid "Mb/s"
-msgstr ""
-
-#: modules/devices/usb.c:174
-msgid "Max Current"
-msgstr ""
-
-#: modules/devices/usb.c:174
-msgid "mA"
-msgstr ""
-
-#: modules/devices/usb.c:175
-msgid "USB Version"
-msgstr ""
-
-#: modules/devices/usb.c:180
-msgid "Device Version"
-msgstr ""
-
-#: modules/devices/usb.c:222
-msgid "No USB devices found."
-msgstr ""
-
-#: modules/devices/x86/processor.c:649
-msgid "Model Name"
-msgstr ""
-
-#: modules/devices/x86/processor.c:650
-msgid "Family, model, stepping"
-msgstr ""
-
-#: modules/devices/x86/processor.c:656
-msgid "Microcode Version"
-msgstr ""
-
-#: modules/devices/x86/processor.c:657
-msgid "Configuration"
-msgstr ""
-
-#: modules/devices/x86/processor.c:658
-msgid "Cache Size"
-msgstr ""
-
-#: modules/devices/x86/processor.c:658
-msgid "kb"
-msgstr ""
-
-#: modules/devices/x86/processor.c:666
-msgid "Bug Workarounds"
-msgstr ""
-
-#: modules/devices/x86/processor.c:693
-msgid "Socket Information"
-msgstr ""
-
-#: modules/devices/x86/processor.c:714
-msgid "CPU Socket"
-msgstr ""
-
-#: modules/devices/x86/processor.c:718
-msgid "External Clock"
-msgstr ""
-
-#: modules/devices/x86/processor.c:719
-msgid "Max Frequency"
-msgstr ""
-
-#: modules/devices/x86/processor.c:750
-msgid "Package Information"
-msgstr ""
-
-#: modules/devices/x86/processor.c:812
-msgid "Socket:Core"
-msgstr ""
-
-#. /flag:fpu
-#: modules/devices/x86/x86_data.c:48
-msgctxt "x86-flag"
-msgid "Onboard FPU (floating point support)"
-msgstr ""
-
-#. /flag:vme
-#: modules/devices/x86/x86_data.c:49
-msgctxt "x86-flag"
-msgid "Virtual 8086 mode enhancements"
-msgstr ""
-
-#. /flag:de
-#: modules/devices/x86/x86_data.c:50
-msgctxt "x86-flag"
-msgid "Debugging Extensions (CR4.DE)"
-msgstr ""
-
-#. /flag:pse
-#: modules/devices/x86/x86_data.c:51
-msgctxt "x86-flag"
-msgid "Page Size Extensions (4MB memory pages)"
-msgstr ""
-
-#. /flag:tsc
-#: modules/devices/x86/x86_data.c:52
-msgctxt "x86-flag"
-msgid "Time Stamp Counter (RDTSC)"
-msgstr ""
-
-#. /flag:msr
-#: modules/devices/x86/x86_data.c:53
-msgctxt "x86-flag"
-msgid "Model-Specific Registers (RDMSR, WRMSR)"
-msgstr ""
-
-#. /flag:pae
-#: modules/devices/x86/x86_data.c:54
-msgctxt "x86-flag"
-msgid "Physical Address Extensions (support for more than 4GB of RAM)"
-msgstr ""
-
-#. /flag:mce
-#: modules/devices/x86/x86_data.c:55
-msgctxt "x86-flag"
-msgid "Machine Check Exception"
-msgstr ""
-
-#. /flag:cx8
-#: modules/devices/x86/x86_data.c:56
-msgctxt "x86-flag"
-msgid "CMPXCHG8 instruction (64-bit compare-and-swap)"
-msgstr ""
-
-#. /flag:apic
-#: modules/devices/x86/x86_data.c:57
-msgctxt "x86-flag"
-msgid "Onboard APIC"
-msgstr ""
-
-#. /flag:sep
-#: modules/devices/x86/x86_data.c:58
-msgctxt "x86-flag"
-msgid "SYSENTER/SYSEXIT"
-msgstr ""
-
-#. /flag:mtrr
-#: modules/devices/x86/x86_data.c:59
-msgctxt "x86-flag"
-msgid "Memory Type Range Registers"
-msgstr ""
-
-#. /flag:pge
-#: modules/devices/x86/x86_data.c:60
-msgctxt "x86-flag"
-msgid "Page Global Enable (global bit in PDEs and PTEs)"
-msgstr ""
-
-#. /flag:mca
-#: modules/devices/x86/x86_data.c:61
-msgctxt "x86-flag"
-msgid "Machine Check Architecture"
-msgstr ""
-
-#. /flag:cmov
-#: modules/devices/x86/x86_data.c:62
-msgctxt "x86-flag"
-msgid "CMOV instructions (conditional move) (also FCMOV)"
-msgstr ""
-
-#. /flag:pat
-#: modules/devices/x86/x86_data.c:63
-msgctxt "x86-flag"
-msgid "Page Attribute Table"
-msgstr ""
-
-#. /flag:pse36
-#: modules/devices/x86/x86_data.c:64
-msgctxt "x86-flag"
-msgid "36-bit PSEs (huge pages)"
-msgstr ""
-
-#. /flag:pn
-#: modules/devices/x86/x86_data.c:65
-msgctxt "x86-flag"
-msgid "Processor serial number"
-msgstr ""
-
-#. /flag:clflush
-#: modules/devices/x86/x86_data.c:66
-msgctxt "x86-flag"
-msgid "Cache Line Flush instruction"
-msgstr ""
-
-#. /flag:dts
-#: modules/devices/x86/x86_data.c:67
-msgctxt "x86-flag"
-msgid ""
-"Debug Store (buffer for debugging and profiling instructions), or "
-"alternately: digital thermal sensor"
-msgstr ""
-
-#. /flag:acpi
-#: modules/devices/x86/x86_data.c:68
-msgctxt "x86-flag"
-msgid "ACPI via MSR (temperature monitoring and clock speed modulation)"
-msgstr ""
-
-#. /flag:mmx
-#: modules/devices/x86/x86_data.c:69
-msgctxt "x86-flag"
-msgid "Multimedia Extensions"
-msgstr ""
-
-#. /flag:fxsr
-#: modules/devices/x86/x86_data.c:70
-msgctxt "x86-flag"
-msgid "FXSAVE/FXRSTOR, CR4.OSFXSR"
-msgstr ""
-
-#. /flag:sse
-#: modules/devices/x86/x86_data.c:71
-msgctxt "x86-flag"
-msgid "Intel SSE vector instructions"
-msgstr ""
-
-#. /flag:sse2
-#: modules/devices/x86/x86_data.c:72
-msgctxt "x86-flag"
-msgid "SSE2"
-msgstr ""
-
-#. /flag:ss
-#: modules/devices/x86/x86_data.c:73
-msgctxt "x86-flag"
-msgid "CPU self snoop"
-msgstr ""
-
-#. /flag:ht
-#: modules/devices/x86/x86_data.c:74
-msgctxt "x86-flag"
-msgid "Hyper-Threading"
-msgstr ""
-
-#. /flag:tm
-#: modules/devices/x86/x86_data.c:75
-msgctxt "x86-flag"
-msgid "Automatic clock control (Thermal Monitor)"
-msgstr ""
-
-#. /flag:ia64
-#: modules/devices/x86/x86_data.c:76
-msgctxt "x86-flag"
-msgid ""
-"Intel Itanium Architecture 64-bit (not to be confused with Intel's 64-bit "
-"x86 architecture with flag x86-64 or \"AMD64\" bit indicated by flag lm)"
-msgstr ""
-
-#. /flag:pbe
-#: modules/devices/x86/x86_data.c:77
-msgctxt "x86-flag"
-msgid "Pending Break Enable (PBE# pin) wakeup support"
-msgstr ""
-
-#. /flag:syscall
-#: modules/devices/x86/x86_data.c:80
-msgctxt "x86-flag"
-msgid "SYSCALL (Fast System Call) and SYSRET (Return From Fast System Call)"
-msgstr ""
-
-#. /flag:mp
-#: modules/devices/x86/x86_data.c:81
-msgctxt "x86-flag"
-msgid "Multiprocessing Capable."
-msgstr ""
-
-#. /flag:nx
-#: modules/devices/x86/x86_data.c:82
-msgctxt "x86-flag"
-msgid "Execute Disable"
-msgstr ""
-
-#. /flag:mmxext
-#: modules/devices/x86/x86_data.c:83
-msgctxt "x86-flag"
-msgid "AMD MMX extensions"
-msgstr ""
-
-#. /flag:fxsr_opt
-#: modules/devices/x86/x86_data.c:84
-msgctxt "x86-flag"
-msgid "FXSAVE/FXRSTOR optimizations"
-msgstr ""
-
-#. /flag:pdpe1gb
-#: modules/devices/x86/x86_data.c:85
-msgctxt "x86-flag"
-msgid "One GB pages (allows hugepagesz=1G)"
-msgstr ""
-
-#. /flag:rdtscp
-#: modules/devices/x86/x86_data.c:86
-msgctxt "x86-flag"
-msgid "Read Time-Stamp Counter and Processor ID"
-msgstr ""
-
-#. /flag:lm
-#: modules/devices/x86/x86_data.c:87
-msgctxt "x86-flag"
-msgid "Long Mode (x86-64: amd64, also known as Intel 64, i.e. 64-bit capable)"
-msgstr ""
-
-#. /flag:3dnow
-#: modules/devices/x86/x86_data.c:88
-msgctxt "x86-flag"
-msgid "3DNow! (AMD vector instructions, competing with Intel's SSE1)"
-msgstr ""
-
-#. /flag:3dnowext
-#: modules/devices/x86/x86_data.c:89
-msgctxt "x86-flag"
-msgid "AMD 3DNow! extensions"
-msgstr ""
-
-#. /flag:recovery
-#: modules/devices/x86/x86_data.c:91
-msgctxt "x86-flag"
-msgid "CPU in recovery mode"
-msgstr ""
-
-#. /flag:longrun
-#: modules/devices/x86/x86_data.c:92
-msgctxt "x86-flag"
-msgid "Longrun power control"
-msgstr ""
-
-#. /flag:lrti
-#: modules/devices/x86/x86_data.c:93
-msgctxt "x86-flag"
-msgid "LongRun table interface"
-msgstr ""
-
-#. /flag:cxmmx
-#: modules/devices/x86/x86_data.c:95
-msgctxt "x86-flag"
-msgid "Cyrix MMX extensions"
-msgstr ""
-
-#. /flag:k6_mtrr
-#: modules/devices/x86/x86_data.c:96
-msgctxt "x86-flag"
-msgid "AMD K6 nonstandard MTRRs"
-msgstr ""
-
-#. /flag:cyrix_arr
-#: modules/devices/x86/x86_data.c:97
-msgctxt "x86-flag"
-msgid "Cyrix ARRs (= MTRRs)"
-msgstr ""
-
-#. /flag:centaur_mcr
-#: modules/devices/x86/x86_data.c:98
-msgctxt "x86-flag"
-msgid "Centaur MCRs (= MTRRs)"
-msgstr ""
-
-#. /flag:constant_tsc
-#: modules/devices/x86/x86_data.c:99
-msgctxt "x86-flag"
-msgid "TSC ticks at a constant rate"
-msgstr ""
-
-#. /flag:up
-#: modules/devices/x86/x86_data.c:100
-msgctxt "x86-flag"
-msgid "SMP kernel running on UP"
-msgstr ""
-
-#. /flag:art
-#: modules/devices/x86/x86_data.c:101
-msgctxt "x86-flag"
-msgid "Always-Running Timer"
-msgstr ""
-
-#. /flag:arch_perfmon
-#: modules/devices/x86/x86_data.c:102
-msgctxt "x86-flag"
-msgid "Intel Architectural PerfMon"
-msgstr ""
-
-#. /flag:pebs
-#: modules/devices/x86/x86_data.c:103
-msgctxt "x86-flag"
-msgid "Precise-Event Based Sampling"
-msgstr ""
-
-#. /flag:bts
-#: modules/devices/x86/x86_data.c:104
-msgctxt "x86-flag"
-msgid "Branch Trace Store"
-msgstr ""
-
-#. /flag:rep_good
-#: modules/devices/x86/x86_data.c:105
-msgctxt "x86-flag"
-msgid "rep microcode works well"
-msgstr ""
-
-#. /flag:acc_power
-#: modules/devices/x86/x86_data.c:106
-msgctxt "x86-flag"
-msgid "AMD accumulated power mechanism"
-msgstr ""
-
-#. /flag:nopl
-#: modules/devices/x86/x86_data.c:107
-msgctxt "x86-flag"
-msgid "The NOPL (0F 1F) instructions"
-msgstr ""
-
-#. /flag:xtopology
-#: modules/devices/x86/x86_data.c:108
-msgctxt "x86-flag"
-msgid "cpu topology enum extensions"
-msgstr ""
-
-#. /flag:tsc_reliable
-#: modules/devices/x86/x86_data.c:109
-msgctxt "x86-flag"
-msgid "TSC is known to be reliable"
-msgstr ""
-
-#. /flag:nonstop_tsc
-#: modules/devices/x86/x86_data.c:110
-msgctxt "x86-flag"
-msgid "TSC does not stop in C states"
-msgstr ""
-
-#. /flag:extd_apicid
-#: modules/devices/x86/x86_data.c:111
-msgctxt "x86-flag"
-msgid "has extended APICID (8 bits)"
-msgstr ""
-
-#. /flag:amd_dcm
-#: modules/devices/x86/x86_data.c:112
-msgctxt "x86-flag"
-msgid "multi-node processor"
-msgstr ""
-
-#. /flag:aperfmperf
-#: modules/devices/x86/x86_data.c:113
-msgctxt "x86-flag"
-msgid "APERFMPERF"
-msgstr ""
-
-#. /flag:eagerfpu
-#: modules/devices/x86/x86_data.c:114
-msgctxt "x86-flag"
-msgid "Non lazy FPU restore"
-msgstr ""
-
-#. /flag:nonstop_tsc_s3
-#: modules/devices/x86/x86_data.c:115
-msgctxt "x86-flag"
-msgid "TSC doesn't stop in S3 state"
-msgstr ""
-
-#. /flag:mce_recovery
-#: modules/devices/x86/x86_data.c:116
-msgctxt "x86-flag"
-msgid "CPU has recoverable machine checks"
-msgstr ""
-
-#. /flag:pni
-#: modules/devices/x86/x86_data.c:119
-msgctxt "x86-flag"
-msgid "SSE-3 (\"Prescott New Instructions\")"
-msgstr ""
-
-#. /flag:pclmulqdq
-#: modules/devices/x86/x86_data.c:120
-msgctxt "x86-flag"
-msgid ""
-"Perform a Carry-Less Multiplication of Quadword instruction - accelerator "
-"for GCM)"
-msgstr ""
-
-#. /flag:dtes64
-#: modules/devices/x86/x86_data.c:121
-msgctxt "x86-flag"
-msgid "64-bit Debug Store"
-msgstr ""
-
-#. /flag:monitor
-#: modules/devices/x86/x86_data.c:122
-msgctxt "x86-flag"
-msgid "Monitor/Mwait support (Intel SSE3 supplements)"
-msgstr ""
-
-#. /flag:ds_cpl
-#: modules/devices/x86/x86_data.c:123
-msgctxt "x86-flag"
-msgid "CPL Qual. Debug Store"
-msgstr ""
-
-#. /flag:vmx
-#: modules/devices/x86/x86_data.c:124
-msgctxt "x86-flag"
-msgid "Hardware virtualization, Intel VMX"
-msgstr ""
-
-#. /flag:smx
-#: modules/devices/x86/x86_data.c:125
-msgctxt "x86-flag"
-msgid "Safer mode TXT (TPM support)"
-msgstr ""
-
-#. /flag:est
-#: modules/devices/x86/x86_data.c:126
-msgctxt "x86-flag"
-msgid "Enhanced SpeedStep"
-msgstr ""
-
-#. /flag:tm2
-#: modules/devices/x86/x86_data.c:127
-msgctxt "x86-flag"
-msgid "Thermal Monitor 2"
-msgstr ""
-
-#. /flag:ssse3
-#: modules/devices/x86/x86_data.c:128
-msgctxt "x86-flag"
-msgid "Supplemental SSE-3"
-msgstr ""
-
-#. /flag:cid
-#: modules/devices/x86/x86_data.c:129
-msgctxt "x86-flag"
-msgid "Context ID"
-msgstr ""
-
-#. /flag:sdbg
-#: modules/devices/x86/x86_data.c:130
-msgctxt "x86-flag"
-msgid "silicon debug"
-msgstr ""
-
-#. /flag:fma
-#: modules/devices/x86/x86_data.c:131
-msgctxt "x86-flag"
-msgid "Fused multiply-add"
-msgstr ""
-
-#. /flag:cx16
-#: modules/devices/x86/x86_data.c:132
-msgctxt "x86-flag"
-msgid "CMPXCHG16B"
-msgstr ""
-
-#. /flag:xtpr
-#: modules/devices/x86/x86_data.c:133
-msgctxt "x86-flag"
-msgid "Send Task Priority Messages"
-msgstr ""
-
-#. /flag:pdcm
-#: modules/devices/x86/x86_data.c:134
-msgctxt "x86-flag"
-msgid "Performance Capabilities"
-msgstr ""
-
-#. /flag:pcid
-#: modules/devices/x86/x86_data.c:135
-msgctxt "x86-flag"
-msgid "Process Context Identifiers"
-msgstr ""
-
-#. /flag:dca
-#: modules/devices/x86/x86_data.c:136
-msgctxt "x86-flag"
-msgid "Direct Cache Access"
-msgstr ""
-
-#. /flag:sse4_1
-#: modules/devices/x86/x86_data.c:137
-msgctxt "x86-flag"
-msgid "SSE-4.1"
-msgstr ""
-
-#. /flag:sse4_2
-#: modules/devices/x86/x86_data.c:138
-msgctxt "x86-flag"
-msgid "SSE-4.2"
-msgstr ""
-
-#. /flag:x2apic
-#: modules/devices/x86/x86_data.c:139
-msgctxt "x86-flag"
-msgid "x2APIC"
-msgstr ""
-
-#. /flag:movbe
-#: modules/devices/x86/x86_data.c:140
-msgctxt "x86-flag"
-msgid "Move Data After Swapping Bytes instruction"
-msgstr ""
-
-#. /flag:popcnt
-#: modules/devices/x86/x86_data.c:141
-msgctxt "x86-flag"
-msgid ""
-"Return the Count of Number of Bits Set to 1 instruction (Hamming weight, i."
-"e. bit count)"
-msgstr ""
-
-#. /flag:tsc_deadline_timer
-#: modules/devices/x86/x86_data.c:142
-msgctxt "x86-flag"
-msgid "Tsc deadline timer"
-msgstr ""
-
-#. /flag:aes/aes-ni
-#: modules/devices/x86/x86_data.c:143
-msgctxt "x86-flag"
-msgid "Advanced Encryption Standard (New Instructions)"
-msgstr ""
-
-#. /flag:xsave
-#: modules/devices/x86/x86_data.c:144
-msgctxt "x86-flag"
-msgid "Save Processor Extended States: also provides XGETBY,XRSTOR,XSETBY"
-msgstr ""
-
-#. /flag:avx
-#: modules/devices/x86/x86_data.c:145
-msgctxt "x86-flag"
-msgid "Advanced Vector Extensions"
-msgstr ""
-
-#. /flag:f16c
-#: modules/devices/x86/x86_data.c:146
-msgctxt "x86-flag"
-msgid "16-bit fp conversions (CVT16)"
-msgstr ""
-
-#. /flag:rdrand
-#: modules/devices/x86/x86_data.c:147
-msgctxt "x86-flag"
-msgid "Read Random Number from hardware random number generator instruction"
-msgstr ""
-
-#. /flag:hypervisor
-#: modules/devices/x86/x86_data.c:148
-msgctxt "x86-flag"
-msgid "Running on a hypervisor"
-msgstr ""
-
-#. /Cyrix/Centaur-defined CPU features, CPUID level 0xC0000001
-#. /flag:rng
-#: modules/devices/x86/x86_data.c:150
-msgctxt "x86-flag"
-msgid "Random Number Generator present (xstore)"
-msgstr ""
-
-#. /flag:rng_en
-#: modules/devices/x86/x86_data.c:151
-msgctxt "x86-flag"
-msgid "Random Number Generator enabled"
-msgstr ""
-
-#. /flag:ace
-#: modules/devices/x86/x86_data.c:152
-msgctxt "x86-flag"
-msgid "on-CPU crypto (xcrypt)"
-msgstr ""
-
-#. /flag:ace_en
-#: modules/devices/x86/x86_data.c:153
-msgctxt "x86-flag"
-msgid "on-CPU crypto enabled"
-msgstr ""
-
-#. /flag:ace2
-#: modules/devices/x86/x86_data.c:154
-msgctxt "x86-flag"
-msgid "Advanced Cryptography Engine v2"
-msgstr ""
-
-#. /flag:ace2_en
-#: modules/devices/x86/x86_data.c:155
-msgctxt "x86-flag"
-msgid "ACE v2 enabled"
-msgstr ""
-
-#. /flag:phe
-#: modules/devices/x86/x86_data.c:156
-msgctxt "x86-flag"
-msgid "PadLock Hash Engine"
-msgstr ""
-
-#. /flag:phe_en
-#: modules/devices/x86/x86_data.c:157
-msgctxt "x86-flag"
-msgid "PHE enabled"
-msgstr ""
-
-#. /flag:pmm
-#: modules/devices/x86/x86_data.c:158
-msgctxt "x86-flag"
-msgid "PadLock Montgomery Multiplier"
-msgstr ""
-
-#. /flag:pmm_en
-#: modules/devices/x86/x86_data.c:159
-msgctxt "x86-flag"
-msgid "PMM enabled"
-msgstr ""
-
-#. /flag:lahf_lm
-#: modules/devices/x86/x86_data.c:161
-msgctxt "x86-flag"
-msgid "Load AH from Flags (LAHF) and Store AH into Flags (SAHF) in long mode"
-msgstr ""
-
-#. /flag:cmp_legacy
-#: modules/devices/x86/x86_data.c:162
-msgctxt "x86-flag"
-msgid "If yes HyperThreading not valid"
-msgstr ""
-
-#. /flag:svm
-#: modules/devices/x86/x86_data.c:163
-msgctxt "x86-flag"
-msgid "\"Secure virtual machine\": AMD-V"
-msgstr ""
-
-#. /flag:extapic
-#: modules/devices/x86/x86_data.c:164
-msgctxt "x86-flag"
-msgid "Extended APIC space"
-msgstr ""
-
-#. /flag:cr8_legacy
-#: modules/devices/x86/x86_data.c:165
-msgctxt "x86-flag"
-msgid "CR8 in 32-bit mode"
-msgstr ""
-
-#. /flag:abm
-#: modules/devices/x86/x86_data.c:166
-msgctxt "x86-flag"
-msgid "Advanced Bit Manipulation"
-msgstr ""
-
-#. /flag:sse4a
-#: modules/devices/x86/x86_data.c:167
-msgctxt "x86-flag"
-msgid "SSE-4A"
-msgstr ""
-
-#. /flag:misalignsse
-#: modules/devices/x86/x86_data.c:168
-msgctxt "x86-flag"
-msgid ""
-"indicates if a general-protection exception (#GP) is generated when some "
-"legacy SSE instructions operate on unaligned data. Also depends on CR0 and "
-"Alignment Checking bit"
-msgstr ""
-
-#. /flag:3dnowprefetch
-#: modules/devices/x86/x86_data.c:169
-msgctxt "x86-flag"
-msgid "3DNow prefetch instructions"
-msgstr ""
-
-#. /flag:osvw
-#: modules/devices/x86/x86_data.c:170
-msgctxt "x86-flag"
-msgid ""
-"indicates OS Visible Workaround, which allows the OS to work around "
-"processor errata."
-msgstr ""
-
-#. /flag:ibs
-#: modules/devices/x86/x86_data.c:171
-msgctxt "x86-flag"
-msgid "Instruction Based Sampling"
-msgstr ""
-
-#. /flag:xop
-#: modules/devices/x86/x86_data.c:172
-msgctxt "x86-flag"
-msgid "extended AVX instructions"
-msgstr ""
-
-#. /flag:skinit
-#: modules/devices/x86/x86_data.c:173
-msgctxt "x86-flag"
-msgid "SKINIT/STGI instructions"
-msgstr ""
-
-#. /flag:wdt
-#: modules/devices/x86/x86_data.c:174
-msgctxt "x86-flag"
-msgid "Watchdog timer"
-msgstr ""
-
-#. /flag:lwp
-#: modules/devices/x86/x86_data.c:175
-msgctxt "x86-flag"
-msgid "Light Weight Profiling"
-msgstr ""
-
-#. /flag:fma4
-#: modules/devices/x86/x86_data.c:176
-msgctxt "x86-flag"
-msgid "4 operands MAC instructions"
-msgstr ""
-
-#. /flag:tce
-#: modules/devices/x86/x86_data.c:177
-msgctxt "x86-flag"
-msgid "translation cache extension"
-msgstr ""
-
-#. /flag:nodeid_msr
-#: modules/devices/x86/x86_data.c:178
-msgctxt "x86-flag"
-msgid "NodeId MSR"
-msgstr ""
-
-#. /flag:tbm
-#: modules/devices/x86/x86_data.c:179
-msgctxt "x86-flag"
-msgid "Trailing Bit Manipulation"
-msgstr ""
-
-#. /flag:topoext
-#: modules/devices/x86/x86_data.c:180
-msgctxt "x86-flag"
-msgid "Topology Extensions CPUID leafs"
-msgstr ""
-
-#. /flag:perfctr_core
-#: modules/devices/x86/x86_data.c:181
-msgctxt "x86-flag"
-msgid "Core Performance Counter Extensions"
-msgstr ""
-
-#. /flag:perfctr_nb
-#: modules/devices/x86/x86_data.c:182
-msgctxt "x86-flag"
-msgid "NB Performance Counter Extensions"
-msgstr ""
-
-#. /flag:bpext
-#: modules/devices/x86/x86_data.c:183
-msgctxt "x86-flag"
-msgid "data breakpoint extension"
-msgstr ""
-
-#. /flag:ptsc
-#: modules/devices/x86/x86_data.c:184
-msgctxt "x86-flag"
-msgid "performance time-stamp counter"
-msgstr ""
-
-#. /flag:perfctr_l2
-#: modules/devices/x86/x86_data.c:185
-msgctxt "x86-flag"
-msgid "L2 Performance Counter Extensions"
-msgstr ""
-
-#. /flag:mwaitx
-#: modules/devices/x86/x86_data.c:186
-msgctxt "x86-flag"
-msgid "MWAIT extension (MONITORX/MWAITX)"
-msgstr ""
-
-#. /flag:cpb
-#: modules/devices/x86/x86_data.c:188
-msgctxt "x86-flag"
-msgid "AMD Core Performance Boost"
-msgstr ""
-
-#. /flag:epb
-#: modules/devices/x86/x86_data.c:189
-msgctxt "x86-flag"
-msgid "IA32_ENERGY_PERF_BIAS support"
-msgstr ""
-
-#. /flag:hw_pstate
-#: modules/devices/x86/x86_data.c:190
-msgctxt "x86-flag"
-msgid "AMD HW-PState"
-msgstr ""
-
-#. /flag:proc_feedback
-#: modules/devices/x86/x86_data.c:191
-msgctxt "x86-flag"
-msgid "AMD ProcFeedbackInterface"
-msgstr ""
-
-#. /flag:intel_pt
-#: modules/devices/x86/x86_data.c:192
-msgctxt "x86-flag"
-msgid "Intel Processor Tracing"
-msgstr ""
-
-#. /flag:tpr_shadow
-#: modules/devices/x86/x86_data.c:194
-msgctxt "x86-flag"
-msgid "Intel TPR Shadow"
-msgstr ""
-
-#. /flag:vnmi
-#: modules/devices/x86/x86_data.c:195
-msgctxt "x86-flag"
-msgid "Intel Virtual NMI"
-msgstr ""
-
-#. /flag:flexpriority
-#: modules/devices/x86/x86_data.c:196
-msgctxt "x86-flag"
-msgid "Intel FlexPriority"
-msgstr ""
-
-#. /flag:ept
-#: modules/devices/x86/x86_data.c:197
-msgctxt "x86-flag"
-msgid "Intel Extended Page Table"
-msgstr ""
-
-#. /flag:vpid
-#: modules/devices/x86/x86_data.c:198
-msgctxt "x86-flag"
-msgid "Intel Virtual Processor ID"
-msgstr ""
-
-#. /flag:vmmcall
-#: modules/devices/x86/x86_data.c:199
-msgctxt "x86-flag"
-msgid "prefer VMMCALL to VMCALL"
-msgstr ""
-
-#. /flag:fsgsbase
-#: modules/devices/x86/x86_data.c:201
-msgctxt "x86-flag"
-msgid "{RD/WR}{FS/GS}BASE instructions"
-msgstr ""
-
-#. /flag:tsc_adjust
-#: modules/devices/x86/x86_data.c:202
-msgctxt "x86-flag"
-msgid "TSC adjustment MSR"
-msgstr ""
-
-#. /flag:bmi1
-#: modules/devices/x86/x86_data.c:203
-msgctxt "x86-flag"
-msgid "1st group bit manipulation extensions"
-msgstr ""
-
-#. /flag:hle
-#: modules/devices/x86/x86_data.c:204
-msgctxt "x86-flag"
-msgid "Hardware Lock Elision"
-msgstr ""
-
-#. /flag:avx2
-#: modules/devices/x86/x86_data.c:205
-msgctxt "x86-flag"
-msgid "AVX2 instructions"
-msgstr ""
-
-#. /flag:smep
-#: modules/devices/x86/x86_data.c:206
-msgctxt "x86-flag"
-msgid "Supervisor Mode Execution Protection"
-msgstr ""
-
-#. /flag:bmi2
-#: modules/devices/x86/x86_data.c:207
-msgctxt "x86-flag"
-msgid "2nd group bit manipulation extensions"
-msgstr ""
-
-#. /flag:erms
-#: modules/devices/x86/x86_data.c:208
-msgctxt "x86-flag"
-msgid "Enhanced REP MOVSB/STOSB"
-msgstr ""
-
-#. /flag:invpcid
-#: modules/devices/x86/x86_data.c:209
-msgctxt "x86-flag"
-msgid "Invalidate Processor Context ID"
-msgstr ""
-
-#. /flag:rtm
-#: modules/devices/x86/x86_data.c:210
-msgctxt "x86-flag"
-msgid "Restricted Transactional Memory"
-msgstr ""
-
-#. /flag:cqm
-#: modules/devices/x86/x86_data.c:211
-msgctxt "x86-flag"
-msgid "Cache QoS Monitoring"
-msgstr ""
-
-#. /flag:mpx
-#: modules/devices/x86/x86_data.c:212
-msgctxt "x86-flag"
-msgid "Memory Protection Extension"
-msgstr ""
-
-#. /flag:avx512f
-#: modules/devices/x86/x86_data.c:213
-msgctxt "x86-flag"
-msgid "AVX-512 foundation"
-msgstr ""
-
-#. /flag:avx512dq
-#: modules/devices/x86/x86_data.c:214
-msgctxt "x86-flag"
-msgid "AVX-512 Double/Quad instructions"
-msgstr ""
-
-#. /flag:rdseed
-#: modules/devices/x86/x86_data.c:215
-msgctxt "x86-flag"
-msgid "The RDSEED instruction"
-msgstr ""
-
-#. /flag:adx
-#: modules/devices/x86/x86_data.c:216
-msgctxt "x86-flag"
-msgid "The ADCX and ADOX instructions"
-msgstr ""
-
-#. /flag:smap
-#: modules/devices/x86/x86_data.c:217
-msgctxt "x86-flag"
-msgid "Supervisor Mode Access Prevention"
-msgstr ""
-
-#. /flag:clflushopt
-#: modules/devices/x86/x86_data.c:218
-msgctxt "x86-flag"
-msgid "CLFLUSHOPT instruction"
-msgstr ""
-
-#. /flag:clwb
-#: modules/devices/x86/x86_data.c:219
-msgctxt "x86-flag"
-msgid "CLWB instruction"
-msgstr ""
-
-#. /flag:avx512pf
-#: modules/devices/x86/x86_data.c:220
-msgctxt "x86-flag"
-msgid "AVX-512 Prefetch"
-msgstr ""
-
-#. /flag:avx512er
-#: modules/devices/x86/x86_data.c:221
-msgctxt "x86-flag"
-msgid "AVX-512 Exponential and Reciprocal"
-msgstr ""
-
-#. /flag:avx512cd
-#: modules/devices/x86/x86_data.c:222
-msgctxt "x86-flag"
-msgid "AVX-512 Conflict Detection"
-msgstr ""
-
-#. /flag:sha_ni
-#: modules/devices/x86/x86_data.c:223
-msgctxt "x86-flag"
-msgid "SHA1/SHA256 Instruction Extensions"
-msgstr ""
-
-#. /flag:avx512bw
-#: modules/devices/x86/x86_data.c:224
-msgctxt "x86-flag"
-msgid "AVX-512 Byte/Word instructions"
-msgstr ""
-
-#. /flag:avx512vl
-#: modules/devices/x86/x86_data.c:225
-msgctxt "x86-flag"
-msgid "AVX-512 128/256 Vector Length extensions"
-msgstr ""
-
-#. /flag:xsaveopt
-#: modules/devices/x86/x86_data.c:227
-msgctxt "x86-flag"
-msgid "Optimized XSAVE"
-msgstr ""
-
-#. /flag:xsavec
-#: modules/devices/x86/x86_data.c:228
-msgctxt "x86-flag"
-msgid "XSAVEC"
-msgstr ""
-
-#. /flag:xgetbv1
-#: modules/devices/x86/x86_data.c:229
-msgctxt "x86-flag"
-msgid "XGETBV with ECX = 1"
-msgstr ""
-
-#. /flag:xsaves
-#: modules/devices/x86/x86_data.c:230
-msgctxt "x86-flag"
-msgid "XSAVES/XRSTORS"
-msgstr ""
-
-#. /flag:cqm_llc
-#: modules/devices/x86/x86_data.c:232
-msgctxt "x86-flag"
-msgid "LLC QoS"
-msgstr ""
-
-#. /flag:cqm_occup_llc
-#: modules/devices/x86/x86_data.c:234
-msgctxt "x86-flag"
-msgid "LLC occupancy monitoring"
-msgstr ""
-
-#. /flag:cqm_mbm_total
-#: modules/devices/x86/x86_data.c:235
-msgctxt "x86-flag"
-msgid "LLC total MBM monitoring"
-msgstr ""
-
-#. /flag:cqm_mbm_local
-#: modules/devices/x86/x86_data.c:236
-msgctxt "x86-flag"
-msgid "LLC local MBM monitoring"
-msgstr ""
-
-#. /flag:clzero
-#: modules/devices/x86/x86_data.c:238
-msgctxt "x86-flag"
-msgid "CLZERO instruction"
-msgstr ""
-
-#. /flag:irperf
-#: modules/devices/x86/x86_data.c:239
-msgctxt "x86-flag"
-msgid "instructions retired performance counter"
-msgstr ""
-
-#. /flag:dtherm
-#: modules/devices/x86/x86_data.c:241
-msgctxt "x86-flag"
-msgid "digital thermal sensor"
-msgstr ""
-
-#. /flag:ida
-#: modules/devices/x86/x86_data.c:242
-msgctxt "x86-flag"
-msgid "Intel Dynamic Acceleration"
-msgstr ""
-
-#. /flag:arat
-#: modules/devices/x86/x86_data.c:243
-msgctxt "x86-flag"
-msgid "Always Running APIC Timer"
-msgstr ""
-
-#. /flag:pln
-#: modules/devices/x86/x86_data.c:244
-msgctxt "x86-flag"
-msgid "Intel Power Limit Notification"
-msgstr ""
-
-#. /flag:pts
-#: modules/devices/x86/x86_data.c:245
-msgctxt "x86-flag"
-msgid "Intel Package Thermal Status"
-msgstr ""
-
-#. /flag:hwp
-#: modules/devices/x86/x86_data.c:246
-msgctxt "x86-flag"
-msgid "Intel Hardware P-states"
-msgstr ""
-
-#. /flag:hwp_notify
-#: modules/devices/x86/x86_data.c:247
-msgctxt "x86-flag"
-msgid "HWP notification"
-msgstr ""
-
-#. /flag:hwp_act_window
-#: modules/devices/x86/x86_data.c:248
-msgctxt "x86-flag"
-msgid "HWP Activity Window"
-msgstr ""
-
-#. /flag:hwp_epp
-#: modules/devices/x86/x86_data.c:249
-msgctxt "x86-flag"
-msgid "HWP Energy Performance Preference"
-msgstr ""
-
-#. /flag:hwp_pkg_req
-#: modules/devices/x86/x86_data.c:250
-msgctxt "x86-flag"
-msgid "HWP package-level request"
-msgstr ""
-
-#. /flag:npt
-#: modules/devices/x86/x86_data.c:252
-msgctxt "x86-flag"
-msgid "AMD Nested Page Table support"
-msgstr ""
-
-#. /flag:lbrv
-#: modules/devices/x86/x86_data.c:253
-msgctxt "x86-flag"
-msgid "AMD LBR Virtualization support"
-msgstr ""
-
-#. /flag:svm_lock
-#: modules/devices/x86/x86_data.c:254
-msgctxt "x86-flag"
-msgid "AMD SVM locking MSR"
-msgstr ""
-
-#. /flag:nrip_save
-#: modules/devices/x86/x86_data.c:255
-msgctxt "x86-flag"
-msgid "AMD SVM next_rip save"
-msgstr ""
-
-#. /flag:tsc_scale
-#: modules/devices/x86/x86_data.c:256
-msgctxt "x86-flag"
-msgid "AMD TSC scaling support"
-msgstr ""
-
-#. /flag:vmcb_clean
-#: modules/devices/x86/x86_data.c:257
-msgctxt "x86-flag"
-msgid "AMD VMCB clean bits support"
-msgstr ""
-
-#. /flag:flushbyasid
-#: modules/devices/x86/x86_data.c:258
-msgctxt "x86-flag"
-msgid "AMD flush-by-ASID support"
-msgstr ""
-
-#. /flag:decodeassists
-#: modules/devices/x86/x86_data.c:259
-msgctxt "x86-flag"
-msgid "AMD Decode Assists support"
-msgstr ""
-
-#. /flag:pausefilter
-#: modules/devices/x86/x86_data.c:260
-msgctxt "x86-flag"
-msgid "AMD filtered pause intercept"
-msgstr ""
-
-#. /flag:pfthreshold
-#: modules/devices/x86/x86_data.c:261
-msgctxt "x86-flag"
-msgid "AMD pause filter threshold"
-msgstr ""
-
-#. /flag:avic
-#: modules/devices/x86/x86_data.c:262
-msgctxt "x86-flag"
-msgid "Virtual Interrupt Controller"
-msgstr ""
-
-#. /flag:pku
-#: modules/devices/x86/x86_data.c:264
-msgctxt "x86-flag"
-msgid "Protection Keys for Userspace"
-msgstr ""
-
-#. /flag:ospke
-#: modules/devices/x86/x86_data.c:265
-msgctxt "x86-flag"
-msgid "OS Protection Keys Enable"
-msgstr ""
-
-#. /flag:overflow_recov
-#: modules/devices/x86/x86_data.c:267
-msgctxt "x86-flag"
-msgid "MCA overflow recovery support"
-msgstr ""
-
-#. /flag:succor
-#: modules/devices/x86/x86_data.c:268
-msgctxt "x86-flag"
-msgid "uncorrectable error containment and recovery"
-msgstr ""
-
-#. /flag:smca
-#: modules/devices/x86/x86_data.c:269
-msgctxt "x86-flag"
-msgid "Scalable MCA"
-msgstr ""
-
-#. /bug:f00f
-#: modules/devices/x86/x86_data.c:272
-msgctxt "x86-flag"
-msgid "Intel F00F bug"
-msgstr ""
-
-#. /bug:fdiv
-#: modules/devices/x86/x86_data.c:273
-msgctxt "x86-flag"
-msgid "FPU FDIV"
-msgstr ""
-
-#. /bug:coma
-#: modules/devices/x86/x86_data.c:274
-msgctxt "x86-flag"
-msgid "Cyrix 6x86 coma"
-msgstr ""
-
-#. /bug:tlb_mmatch
-#: modules/devices/x86/x86_data.c:275
-msgctxt "x86-flag"
-msgid "AMD Erratum 383"
-msgstr ""
-
-#. /bug:apic_c1e
-#. /bug:amd_e400
-#: modules/devices/x86/x86_data.c:276 modules/devices/x86/x86_data.c:285
-msgctxt "x86-flag"
-msgid "AMD Erratum 400"
-msgstr ""
-
-#. /bug:11ap
-#: modules/devices/x86/x86_data.c:277
-msgctxt "x86-flag"
-msgid "Bad local APIC aka 11AP"
-msgstr ""
-
-#. /bug:fxsave_leak
-#: modules/devices/x86/x86_data.c:278
-msgctxt "x86-flag"
-msgid "FXSAVE leaks FOP/FIP/FOP"
-msgstr ""
-
-#. /bug:clflush_monitor
-#: modules/devices/x86/x86_data.c:279
-msgctxt "x86-flag"
-msgid "AAI65, CLFLUSH required before MONITOR"
-msgstr ""
-
-#. /bug:sysret_ss_attrs
-#: modules/devices/x86/x86_data.c:280
-msgctxt "x86-flag"
-msgid "SYSRET doesn't fix up SS attrs"
-msgstr ""
-
-#. /bug:espfix
-#: modules/devices/x86/x86_data.c:281
-msgctxt "x86-flag"
-msgid "IRET to 16-bit SS corrupts ESP/RSP high bits"
-msgstr ""
-
-#. /bug:null_seg
-#: modules/devices/x86/x86_data.c:282
-msgctxt "x86-flag"
-msgid "Nulling a selector preserves the base"
-msgstr ""
-
-#. /bug:swapgs_fence
-#: modules/devices/x86/x86_data.c:283
-msgctxt "x86-flag"
-msgid "SWAPGS without input dep on GS"
-msgstr ""
-
-#. /bug:monitor
-#: modules/devices/x86/x86_data.c:284
-msgctxt "x86-flag"
-msgid "IPI required to wake up remote CPU"
-msgstr ""
-
-#. /bug:cpu_insecure & bug:cpu_meltdown
-#: modules/devices/x86/x86_data.c:286 modules/devices/x86/x86_data.c:287
-msgctxt "x86-flag"
-msgid ""
-"CPU is affected by meltdown attack and needs kernel page table isolation"
-msgstr ""
-
-#. /bug:spectre_v1
-#: modules/devices/x86/x86_data.c:288
-msgctxt "x86-flag"
-msgid "CPU is affected by Spectre variant 1 attack with conditional branches"
-msgstr ""
-
-#. /bug:spectre_v2
-#: modules/devices/x86/x86_data.c:289
-msgctxt "x86-flag"
-msgid "CPU is affected by Spectre variant 2 attack with indirect branches"
-msgstr ""
-
-#. /bug:spec_store_bypass
-#: modules/devices/x86/x86_data.c:290
-msgctxt "x86-flag"
-msgid "CPU is affected by speculative store bypass attack"
-msgstr ""
-
-#. /bug:l1tf
-#: modules/devices/x86/x86_data.c:291
-msgctxt "x86-flag"
-msgid "CPU is affected by L1 Terminal Fault"
-msgstr ""
-
-#. /x86/kernel/cpu/powerflags.h
-#. /flag:pm:ts
-#: modules/devices/x86/x86_data.c:294
-msgctxt "x86-flag"
-msgid "temperature sensor"
-msgstr ""
-
-#. /flag:pm:fid
-#: modules/devices/x86/x86_data.c:295
-msgctxt "x86-flag"
-msgid "frequency id control"
-msgstr ""
-
-#. /flag:pm:vid
-#: modules/devices/x86/x86_data.c:296
-msgctxt "x86-flag"
-msgid "voltage id control"
-msgstr ""
-
-#. /flag:pm:ttp
-#: modules/devices/x86/x86_data.c:297
-msgctxt "x86-flag"
-msgid "thermal trip"
-msgstr ""
-
-#. /flag:pm:tm
-#: modules/devices/x86/x86_data.c:298
-msgctxt "x86-flag"
-msgid "hardware thermal control"
-msgstr ""
-
-#. /flag:pm:stc
-#: modules/devices/x86/x86_data.c:299
-msgctxt "x86-flag"
-msgid "software thermal control"
-msgstr ""
-
-#. /flag:pm:100mhzsteps
-#: modules/devices/x86/x86_data.c:300
-msgctxt "x86-flag"
-msgid "100 MHz multiplier control"
-msgstr ""
-
-#. /flag:pm:hwpstate
-#: modules/devices/x86/x86_data.c:301
-msgctxt "x86-flag"
-msgid "hardware P-state control"
-msgstr ""
-
-#. /flag:pm:cpb
-#: modules/devices/x86/x86_data.c:302
-msgctxt "x86-flag"
-msgid "core performance boost"
-msgstr ""
-
-#. /flag:pm:eff_freq_ro
-#: modules/devices/x86/x86_data.c:303
-msgctxt "x86-flag"
-msgid "Readonly aperf/mperf"
-msgstr ""
-
-#. /flag:pm:proc_feedback
-#: modules/devices/x86/x86_data.c:304
-msgctxt "x86-flag"
-msgid "processor feedback interface"
-msgstr ""
-
-#. /flag:pm:acc_power
-#: modules/devices/x86/x86_data.c:305
-msgctxt "x86-flag"
-msgid "accumulated power mechanism"
-msgstr ""
-
-#: modules/network.c:61
-msgid "Interfaces"
-msgstr ""
-
-#: modules/network.c:62
-msgid "IP Connections"
-msgstr ""
-
-#: modules/network.c:63
-msgid "Routing Table"
-msgstr ""
-
-#: modules/network.c:64 modules/network.c:309
-msgid "ARP Table"
-msgstr ""
-
-#: modules/network.c:65
-msgid "DNS Servers"
-msgstr ""
-
-#: modules/network.c:66
-msgid "Statistics"
-msgstr ""
-
-#: modules/network.c:67
-msgid "Shared Directories"
-msgstr ""
-
-#: modules/network.c:310 modules/network.c:332 modules/network.c:363
-#: modules/network/net.c:472
-msgid "IP Address"
-msgstr ""
-
-#: modules/network.c:310
-msgid "MAC Address"
-msgstr ""
-
-#: modules/network.c:319
-msgid "SAMBA"
-msgstr ""
-
-#: modules/network.c:320
-msgid "NFS"
-msgstr ""
-
-#: modules/network.c:331
-msgid "Name Servers"
-msgstr ""
-
-#: modules/network.c:346
-msgid "Connections"
-msgstr ""
-
-#: modules/network.c:347
-msgid "Local Address"
-msgstr ""
-
-#: modules/network.c:347
-msgid "Foreign Address"
-msgstr ""
-
-#: modules/network.c:347
-msgid "State"
-msgstr ""
-
-#: modules/network.c:363
-msgid "Sent"
-msgstr ""
-
-#: modules/network.c:363
-msgid "Received"
-msgstr ""
-
-#: modules/network.c:379
-msgid "IP routing table"
-msgstr ""
-
-#: modules/network.c:380
-msgid "Destination/Gateway"
-msgstr ""
-
-#: modules/network.c:380 modules/network/net.c:473
-msgid "Mask"
-msgstr ""
-
-#: modules/network.c:408
-msgid "Network"
-msgstr ""
-
-#: modules/network.c:441
-msgid "Gathers information about this computer's network connection"
-msgstr ""
-
-#: modules/network/net.c:72
-msgctxt "wi-op-mode"
-msgid "Auto"
-msgstr ""
-
-#: modules/network/net.c:73
-msgctxt "wi-op-mode"
-msgid "Ad-Hoc"
-msgstr ""
-
-#: modules/network/net.c:74
-msgctxt "wi-op-mode"
-msgid "Managed"
-msgstr ""
-
-#: modules/network/net.c:75
-msgctxt "wi-op-mode"
-msgid "Master"
-msgstr ""
-
-#: modules/network/net.c:76
-msgctxt "wi-op-mode"
-msgid "Repeater"
-msgstr ""
-
-#: modules/network/net.c:77
-msgctxt "wi-op-mode"
-msgid "Secondary"
-msgstr ""
-
-#: modules/network/net.c:78
-msgctxt "wi-op-mode"
-msgid "(Unknown)"
-msgstr ""
-
-#: modules/network/net.c:242 modules/network/net.c:262
-#: modules/network/net.c:270
-msgctxt "net-if-type"
-msgid "Ethernet"
-msgstr ""
-
-#: modules/network/net.c:243
-msgctxt "net-if-type"
-msgid "Loopback"
-msgstr ""
-
-#: modules/network/net.c:244
-msgctxt "net-if-type"
-msgid "Point-to-Point"
-msgstr ""
-
-#: modules/network/net.c:245 modules/network/net.c:246
-#: modules/network/net.c:247 modules/network/net.c:248
-#: modules/network/net.c:272
-msgctxt "net-if-type"
-msgid "Wireless"
-msgstr ""
-
-#: modules/network/net.c:249
-msgctxt "net-if-type"
-msgid "Virtual Point-to-Point (TUN)"
-msgstr ""
-
-#: modules/network/net.c:250
-msgctxt "net-if-type"
-msgid "Ethernet (TAP)"
-msgstr ""
-
-#: modules/network/net.c:251
-msgctxt "net-if-type"
-msgid "Parallel Line Internet Protocol"
-msgstr ""
-
-#: modules/network/net.c:252
-msgctxt "net-if-type"
-msgid "Infrared"
-msgstr ""
-
-#: modules/network/net.c:253 modules/network/net.c:271
-msgctxt "net-if-type"
-msgid "Serial Line Internet Protocol"
-msgstr ""
-
-#: modules/network/net.c:254
-msgctxt "net-if-type"
-msgid "Integrated Services Digital Network"
-msgstr ""
-
-#: modules/network/net.c:255
-msgctxt "net-if-type"
-msgid "IPv6-over-IPv4 Tunnel"
-msgstr ""
-
-#: modules/network/net.c:256
-msgctxt "net-if-type"
-msgid "VMWare Virtual Network Interface (NAT)"
-msgstr ""
-
-#: modules/network/net.c:257
-msgctxt "net-if-type"
-msgid "VMWare Virtual Network Interface"
-msgstr ""
-
-#: modules/network/net.c:258
-msgctxt "net-if-type"
-msgid "Personal Area Network (PAN)"
-msgstr ""
-
-#: modules/network/net.c:259
-msgctxt "net-if-type"
-msgid "Bluetooth"
-msgstr ""
-
-#: modules/network/net.c:260
-msgctxt "net-if-type"
-msgid "Bridge Interface"
-msgstr ""
-
-#: modules/network/net.c:261
-msgctxt "net-if-type"
-msgid "Hamachi Virtual Personal Network"
-msgstr ""
-
-#: modules/network/net.c:263
-msgctxt "net-if-type"
-msgid "Intermediate Functional Block"
-msgstr ""
-
-#: modules/network/net.c:264
-msgctxt "net-if-type"
-msgid "GRE Network Tunnel"
-msgstr ""
-
-#: modules/network/net.c:265
-msgctxt "net-if-type"
-msgid "Mesh Network"
-msgstr ""
-
-#: modules/network/net.c:266
-msgctxt "net-if-type"
-msgid "Wireless Master Interface"
-msgstr ""
-
-#: modules/network/net.c:267
-msgctxt "net-if-type"
-msgid "VirtualBox Virtual Network Interface"
-msgstr ""
-
-#: modules/network/net.c:273
-msgctxt "net-if-type"
-msgid "Wireless (WAN)"
-msgstr ""
-
-#: modules/network/net.c:275
-msgctxt "net-if-type"
-msgid "(Unknown)"
-msgstr ""
-
-#: modules/network/net.c:343 modules/network/net.c:353
-msgid "Network Interfaces"
-msgstr ""
-
-#: modules/network/net.c:343
-msgid "None Found"
-msgstr ""
-
-#: modules/network/net.c:409
-msgid "Network Adapter Properties"
-msgstr ""
-
-#: modules/network/net.c:410
-msgid "Interface Type"
-msgstr ""
-
-#: modules/network/net.c:411
-msgid "Hardware Address (MAC)"
-msgstr ""
-
-#: modules/network/net.c:415
-msgid "MTU"
-msgstr ""
-
-#: modules/network/net.c:416
-msgid "Transfer Details"
-msgstr ""
-
-#: modules/network/net.c:417
-msgid "Bytes Received"
-msgstr ""
-
-#: modules/network/net.c:418
-msgid "Bytes Sent"
-msgstr ""
-
-#: modules/network/net.c:435 modules/network/net.c:457
-#: modules/network/net.c:458
-msgid "dBm"
-msgstr ""
-
-#: modules/network/net.c:435
-msgid "mW"
-msgstr ""
-
-#: modules/network/net.c:449
-msgid "Wireless Properties"
-msgstr ""
-
-#: modules/network/net.c:450
-msgid "Network Name (SSID)"
-msgstr ""
-
-#: modules/network/net.c:451
-msgid "Bit Rate"
-msgstr ""
-
-#: modules/network/net.c:452
-msgid "Transmission Power"
-msgstr ""
-
-#: modules/network/net.c:455
-msgid "Link Quality"
-msgstr ""
-
-#: modules/network/net.c:456
-msgid "Signal / Noise"
-msgstr ""
-
-#: modules/network/net.c:471
-msgid "Internet Protocol (IPv4)"
-msgstr ""
-
-#: modules/network/net.c:472 modules/network/net.c:473
-#: modules/network/net.c:475
-msgid "(Not set)"
-msgstr ""
-
-#: modules/network/net.c:474
-msgid "Broadcast Address"
-msgstr ""
diff --git a/po/README.md b/po/README.md
index ee1c513b..08760154 100644
--- a/po/README.md
+++ b/po/README.md
@@ -40,7 +40,7 @@ NOTE: In poedit please only do translation and use find, validate and save.
New Language
------------
- - cp NEW.po xx.po (xx=LANGUAGE-2LETTER-SMALL-CAPS)
+ - cp NEW xx.po (xx=LANGUAGE-2LETTER-SMALL-CAPS)
- emacs ./xx.po (edit the empty po and change all CHANGE-* accordingly)
- ./updatepo.sh (updates the po with all the words/text we have in the program and shows status)
- ready to edit - see above
diff --git a/shell/callbacks.c b/shell/callbacks.c
index e7808471..c60487d9 100644
--- a/shell/callbacks.c
+++ b/shell/callbacks.c
@@ -138,63 +138,6 @@ void cb_toolbar()
shell_ui_manager_set_visible("/MainMenuBarAction", visible);
}
-void cb_about_module(GtkAction * action)
-{
- Shell *shell = shell_get_main_shell();
- GSList *modules = shell->tree->modules;
- const ModuleAbout *ma;
- gchar *name;
-
- g_object_get(G_OBJECT(action), "tooltip", &name, NULL);
-
- for (; modules; modules = modules->next) {
- ShellModule *sm = (ShellModule *) modules->data;
-
- if (!g_str_equal(sm->name, name))
- continue;
-
- if ((ma = module_get_about(sm))) {
- GtkWidget *about;
- gchar *text;
-
- about = gtk_about_dialog_new();
-
- gtk_window_set_transient_for(GTK_WINDOW(about), GTK_WINDOW(shell->window));
-
- text = g_strdup(sm->name);
-#if GTK_CHECK_VERSION(2, 12, 0)
- gtk_about_dialog_set_program_name(GTK_ABOUT_DIALOG(about), text);
-#else
- gtk_about_dialog_set_name(GTK_ABOUT_DIALOG(about), text);
-#endif
- g_free(text);
-
- gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(about),
- ma->version);
-
- text = g_strdup_printf(_("Written by %s\nLicensed under %s"),
- ma->author, ma->license);
- gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(about), text);
- g_free(text);
-
- if (ma->description)
- gtk_about_dialog_set_comments(GTK_ABOUT_DIALOG(about),
- _(ma->description));
-
- gtk_about_dialog_set_logo(GTK_ABOUT_DIALOG(about), sm->icon);
- gtk_dialog_run(GTK_DIALOG(about));
- gtk_widget_destroy(about);
- } else {
- g_warning
- (_("No about information is associated with the %s module."),
- name);
- }
-
- break;
- }
-
- g_free(name);
-}
void cb_about()
{
diff --git a/shell/report.c b/shell/report.c
index 25b73beb..d264128e 100644
--- a/shell/report.c
+++ b/shell/report.c
@@ -289,7 +289,7 @@ void report_details(ReportContext *ctx, gchar *key, gchar *value, gchar *details
static void report_table_shell_dump(ReportContext *ctx, gchar *key_file_str, int level)
{
- gchar *text, *p, *next_nl, *eq, *indent;
+ gchar *text=NULL, *p, *next_nl, *eq, *indent;
gchar *key, *value;
indent = g_strnfill(level * 4, ' ');
diff --git a/shell/shell.c b/shell/shell.c
index e74486f2..e3f64891 100644
--- a/shell/shell.c
+++ b/shell/shell.c
@@ -523,63 +523,6 @@ static void menu_item_set_icon_always_visible(Shell *shell,
g_free(path);
}
-static void add_module_to_menu(gchar * name, GdkPixbuf * pixbuf)
-{
- GtkAction *action;
- GtkWidget *menuitem;
- gchar *about_module = g_strdup_printf("AboutModule%s", name);
- gchar *path;
- gint merge_id;
-
- GtkActionEntry entries[] = {
- {
- name, /* name */
- name, /* stockid */
- name, /* label */
- NULL, /* accelerator */
- NULL, /* tooltip */
- NULL, /* callback */
- },
- {
- about_module,
- name,
- name,
- NULL,
- name,
- (GCallback) cb_about_module,
- },
- };
-
- stock_icon_register_pixbuf(pixbuf, name);
-
- if ((action = gtk_action_group_get_action(shell->action_group, name))) {
- gtk_action_group_remove_action(shell->action_group, action);
- }
-
- if ((action = gtk_action_group_get_action(shell->action_group, about_module))) {
- gtk_action_group_remove_action(shell->action_group, action);
- }
-
- gtk_action_group_add_actions(shell->action_group, entries, 2, NULL);
-
- merge_id = gtk_ui_manager_new_merge_id(shell->ui_manager);
- gtk_ui_manager_add_ui(shell->ui_manager,
- merge_id,
- "/menubar/ViewMenu/LastSep",
- name, name, GTK_UI_MANAGER_MENU, TRUE);
- shell->merge_ids = g_slist_prepend(shell->merge_ids, GINT_TO_POINTER(merge_id));
-
- merge_id = gtk_ui_manager_new_merge_id(shell->ui_manager);
- gtk_ui_manager_add_ui(shell->ui_manager,
- merge_id,
- // "/menubar/HelpMenu/HelpMenuModules/LastSep",
- "/menubar/HelpMenu/LastSep",
- about_module, about_module, GTK_UI_MANAGER_AUTO,
- TRUE);
- shell->merge_ids = g_slist_prepend(shell->merge_ids, GINT_TO_POINTER(merge_id));
-
- menu_item_set_icon_always_visible(shell, "/menubar/ViewMenu", name);
-}
static void
add_module_entry_to_view_menu(gchar * module, gchar * name,
@@ -643,8 +586,6 @@ void shell_add_modules_to_gui(gpointer _shell_module, gpointer _shell_tree)
-1);
}
- //add_module_to_menu(module->name, module->icon);
-
if (module->entries) {
ShellModuleEntry *entry;
GSList *p;
diff --git a/tools/create_debian_source.sh b/tools/create_debian_source.sh
index a267d1f9..3c7ae780 100755
--- a/tools/create_debian_source.sh
+++ b/tools/create_debian_source.sh
@@ -1,38 +1,75 @@
#!/bin/bash
-VERSION=2.0.12
+VERSION=$(cat ../CMakeLists.txt |grep set\(HARDINFO2_VERSION|cut -d '"' -f 2)
cd ..
rm -rf build
+sudo apt -y remove hardinfo
+sudo apt -y remove hardinfo2
+
mkdir build
cd build
-cmake ..
+cmake -DDISTRO=src ..
make package_source
-tar -xzf hardinfo-$VERSION.tar.gz
-cd hardinfo-$VERSION
+#rename cpack file
+mv hardinfo2-$VERSION.deb hardinfo2-$VERSION.src.deb
+
+#extract CPack source package
+mkdir cpacksrc
+dpkg-deb -R hardinfo2-$VERSION.src.deb cpacksrc
+
+#extract source
+tar -xzf hardinfo2-$VERSION.tar.gz
+cd hardinfo2-$VERSION
debmake
-tar -czf ../hardinfo-$VERSION.debian.tar.gz debian
+#fixup
+cd debian
+grep Maintainer ../../cpacksrc/DEBIAN/control >control.fixed
+grep -v Homepage control |grep -v Description|grep -v auto-gen|grep -v Section|grep -v debmake |grep -v Maintainer >>control.fixed
+echo "Homepage: https://hardinfo2.org">>control.fixed
+echo "Description: Hardinfo2 - System Information and Benchmark" >>control.fixed
+grep Recommends ../../cpacksrc/DEBIAN/control >>control.fixed
+grep Section ../../cpacksrc/DEBIAN/control >>control.fixed
+rm -f control
+mv control.fixed control
cd ..
-mv hardinfo-$VERSION.tar.gz hardinfo-$VERSION.orig.tar.gz
+#create debian tar.gz
+tar -czf ../hardinfo2-$VERSION.debian.tar.gz debian
+cd ..
+#rename cpack file
+mv hardinfo2-$VERSION.tar.gz hardinfo2-$VERSION.orig.tar.gz
+
+#create dsc
echo "Format: 3.0 (quilt)
-Source: hardinfo
-Binary: hardinfo
+Source: hardinfo2
+Binary: hardinfo2
Architecture: any
-Version: $VERSION
-Maintainer: hwspeedy <hardinfo2@bigbear.dk>
-Homepage: https://hardinfo2.org
+Version: $VERSION">./hardinfo2-$VERSION.dsc
+grep Maintainer ./cpacksrc/DEBIAN/control >>./hardinfo2-$VERSION.dsc
+echo "Homepage: https://hardinfo2.org
Standards-Version: 4.1.3
Vcs-Browser: https://salsa.debian.org/hwspeedy/hardinfo2
Vcs-Git: https://salsa.debian.org/hwspeedy/hardinfo2.git
-Build-Depends: cmake, debhelper (>= 11), libjson-glib-dev, zlib1g-dev, libsoup2.4-dev, libgtk-3-dev
+Build-Depends: cmake, debhelper (>= 11)
Package-List:
- hardinfo deb x11 optional arch=any
-Checksums-Sha1:" >./hardinfo-$VERSION.dsc
-sha1sum hardinfo-$VERSION.*.tar.gz >>./hardinfo-$VERSION.dsc
+ hardinfo2 deb x11 optional arch=any
+Checksums-Sha1:" >./hardinfo2-$VERSION.dsc
+sha1sum hardinfo2-$VERSION.*.tar.gz >>./hardinfo2-$VERSION.dsc
echo "Checksums-Sha256:">>./hardinfo-$VERSION.dsc
-sha256sum hardinfo-$VERSION.*.tar.gz >>./hardinfo-$VERSION.dsc
-echo "Files:">>./hardinfo-$VERSION.dsc
-md5sum hardinfo-$VERSION.*.tar.gz >>./hardinfo-$VERSION.dsc
+sha256sum hardinfo2-$VERSION.*.tar.gz >>./hardinfo2-$VERSION.dsc
+echo "Files:">>./hardinfo2-$VERSION.dsc
+md5sum hardinfo2-$VERSION.*.tar.gz >>./hardinfo2-$VERSION.dsc
echo "Debian Source Package Files ready in build:"
-ls -l hardinfo-$VERSION.*.tar.gz
-ls -l hardinfo-$VERSION.dsc
+ls -l hardinfo2-$VERSION.src.deb
+ls -l hardinfo2-$VERSION.*.tar.gz
+ls -l hardinfo2-$VERSION.dsc
+
+#build from source
+sudo apt install debhelper
+cd hardinfo2-$VERSION
+debuild -b -uc -us
+
+#test package
+ls ../hardinfo_*.deb
+sudo apt -y install ../hardinfo2_*.deb
+apt info hardinfo2
diff --git a/tools/create_fedora_source.sh b/tools/create_fedora_source.sh
new file mode 100755
index 00000000..6dc1f860
--- /dev/null
+++ b/tools/create_fedora_source.sh
@@ -0,0 +1,39 @@
+#!/bin/bash
+VERSION=$(cat ../CMakeLists.txt |grep set\(HARDINFO2_VERSION|cut -d '"' -f 2)
+ARCH=$(uname -m)
+DIST=$(uname -r|cut -d '.' -f 4)
+
+#clean and prep
+yum -y install ninja-build
+cd ..
+rm -rf build
+sudo yum -y remove hardinfo2
+rm -rf ~/rpmbuild
+
+#build source
+mkdir build
+cd build
+cmake -DDISTRO=src ..
+#fix for local build
+cat ../tools/hardinfo2.spec |grep -v Patch|sed '/URL:/c\URL: ./'|sed '/Source0:/c\Source0: hardinfo2-%{version}.tar.gz' |sed 's/hardinfo2-release/hardinfo2/g' >./hardinfo2.spec
+make package_source
+
+cp -f ../tools/hardinfo2.spec .
+
+echo "Fedora Source Package Files ready in build:"
+ls -l hardinfo2-$VERSION*.src.rpm
+ls -l hardinfo2.spec
+
+sleep 3
+
+#install src package
+sudo rpm --nomd5 -i ./hardinfo2-$VERSION-1.$DIST.src.rpm
+
+#create package from srpm
+cd ~/rpmbuild/SPECS
+rpmbuild -ba hardinfo2.spec
+
+echo "Fedora binary build from Source Package Files ready:"
+ls -l ~/rpmbuild/RPMS/$ARCH/*
+sudo yum -y install ~/rpmbuild/RPMS/$ARCH/hardinfo2-$VERSION*
+yum info hardinfo2
diff --git a/tools/hardinfo2.spec b/tools/hardinfo2.spec
new file mode 100644
index 00000000..8f235f64
--- /dev/null
+++ b/tools/hardinfo2.spec
@@ -0,0 +1,112 @@
+Name: hardinfo2
+Version: 2.0.12
+Release: %autorelease
+Summary: System Information and Benchmark for Linux Systems
+
+# most of the source code is GPL-2.0-or-later license, except:
+# includes/blowfish.h - LGPL-2.1-or-later
+# includes/loadgraph.h - LGPL-2.0-only
+# deps/uber-graph/g-ring.c: LGPL-2.1-or-later
+# deps/uber-graph/g-ring.h: LGPL-2.1-or-later
+# deps/uber-graph/uber-graph.c: GPL-3.0-or-later
+# deps/uber-graph/uber-graph.h: GPL-3.0-or-later
+# deps/uber-graph/uber-heat-map.c: GPL-3.0-or-later
+# deps/uber-graph/uber-heat-map.h: GPL-3.0-or-later
+# deps/uber-graph/uber-label.c: GPL-3.0-or-later
+# deps/uber-graph/uber-label.h: GPL-3.0-or-later
+# deps/uber-graph/uber-line-graph.c: GPL-3.0-or-later
+# deps/uber-graph/uber-line-graph.h: GPL-3.0-or-later
+# deps/uber-graph/uber-range.c: GPL-3.0-or-later
+# deps/uber-graph/uber-range.h: GPL-3.0-or-later
+# deps/uber-graph/uber-scale.c: GPL-3.0-or-later
+# deps/uber-graph/uber-scale.h: GPL-3.0-or-later
+# deps/uber-graph/uber-scatter.c: GPL-3.0-or-later
+# deps/uber-graph/uber-scatter.h: GPL-3.0-or-later
+# deps/uber-graph/uber-window.c: GPL-3.0-or-later
+# deps/uber-graph/uber-window.h: GPL-3.0-or-later
+# deps/uber-graph/uber.h: GPL-3.0-or-later
+# modules/benchmark/blowfish.c - LGPL-2.1-or-later
+License: GPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-2.0-only AND GPL-3.0-or-later
+URL: https://github.com/hardinfo2/hardinfo2
+Source0: %{url}/archive/release-%{version}/hardinfo2-release-%{version}.tar.gz
+
+Patch0: https://github.com/hardinfo2/hardinfo2/pull/14.patch
+
+BuildRequires: gcc-c++
+BuildRequires: cmake
+BuildRequires: ninja-build
+
+BuildRequires: pkgconfig(gtk+-3.0)
+BuildRequires: pkgconfig(cairo)
+BuildRequires: pkgconfig(cairo-png)
+BuildRequires: pkgconfig(gthread-2.0)
+BuildRequires: pkgconfig(gmodule-export-2.0)
+# BuildRequires: pkgconfig(libsoup-3.0)
+BuildRequires: pkgconfig(libsoup-2.4)
+BuildRequires: pkgconfig(glib-2.0)
+BuildRequires: pkgconfig(json-glib-1.0)
+BuildRequires: pkgconfig(x11)
+
+BuildRequires: desktop-file-utils
+
+Obsoletes: hardinfo
+
+Recommends: lm_sensors
+Recommends: sysbench
+Recommends: lsscsi
+Recommends: glx-utils
+Recommends: dmidecode
+Recommends: udisks2
+Recommends: xdg-utils
+Recommends: iperf3
+
+%description
+Hardinfo2 is based on hardinfo, which have not been released >10 years.
+Hardinfo2 is the reboot that was needed.
+
+Hardinfo2 offers System Information and Benchmark for Linux Systems. It is able
+to obtain information from both hardware and basic software. It can benchmark
+your system and compare to other machines online.
+
+Features include:
+- Report generation (in either HTML or plain text)
+- Online Benchmarking - compare your machine against other machines
+
+%prep
+%autosetup -p1 -n hardinfo2-release-%{version}
+
+%build
+%cmake \
+ -GNinja \
+ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+
+%cmake_build
+
+%install
+%cmake_install
+
+%find_lang %{name}
+
+%check
+desktop-file-validate %{buildroot}/%{_datadir}/applications/*.desktop
+
+%files -f %{name}.lang
+%license
+%doc README.md
+%{_bindir}/hardinfo2
+%dir %{_libdir}/hardinfo2
+%dir %{_libdir}/hardinfo2/modules
+%{_libdir}/hardinfo2/modules/benchmark.so
+%{_libdir}/hardinfo2/modules/computer.so
+%{_libdir}/hardinfo2/modules/devices.so
+%{_libdir}/hardinfo2/modules/network.so
+%{_datadir}/applications/hardinfo2.desktop
+%{_datadir}/hardinfo2/*.ids
+%{_datadir}/hardinfo2/benchmark.data
+%{_datadir}/hardinfo2/*.json
+%{_datadir}/hardinfo2/pixmaps/
+%{_datadir}/icons/hicolor/256x256/apps/hardinfo2.png
+%{_mandir}/man1/hardinfo2.1*
+
+%changelog
+%autochangelog