diff options
author | zhuyaliang <[email protected]> | 2023-10-16 16:17:40 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2023-10-24 09:20:03 +0200 |
commit | 9a8cfd772538539776654401d7a1293595405c90 (patch) | |
tree | 88d775507986d0f0f3b6eb41f5fd4a86bfa3d85e /help | |
parent | 2561c8ad2c0f4168c6021172095fe40aa789deb7 (diff) | |
download | mate-power-manager-9a8cfd772538539776654401d7a1293595405c90.tar.bz2 mate-power-manager-9a8cfd772538539776654401d7a1293595405c90.tar.xz |
Add meson build support
Diffstat (limited to 'help')
-rw-r--r-- | help/LINGUAS | 117 | ||||
-rw-r--r-- | help/meson.build | 24 |
2 files changed, 141 insertions, 0 deletions
diff --git a/help/LINGUAS b/help/LINGUAS new file mode 100644 index 0000000..d47dd48 --- /dev/null +++ b/help/LINGUAS @@ -0,0 +1,117 @@ +af +am +ar +as +ast +az +be +bg +bn +bn_IN +br +bs +ca +ca@valencia +cmn +crh +cs +cy +da +de +dz +el +en_AU +en_CA +en_GB +eo +es +es_AR +es_CL +es_CO +es_ES +es_MX +es_PR +et +eu +fa +fi +fr +frp +fur +fy +ga +gl +gu +ha +he +hi +hr +hu +hy +ia +id +ie +ig +is +it +ja +jv +ka +kab +kk +kn +ko +ku +ku_IQ +ky +la +lt +lv +mai +mg +mi +mk +ml +mn +mr +ms +nb +nds +ne +nl +nn +nso +oc +or +pa +pl +ps +pt +pt_BR +ro +ru +si +sk +sl +sq +sr +sr@latin +sv +ta +te +th +tk +tr +ug +uk +ur +uz +vi +wa +xh +yo +zh_CN +zh-Hans +zh_HK +zh_TW +zu diff --git a/help/meson.build b/help/meson.build new file mode 100644 index 0000000..8069950 --- /dev/null +++ b/help/meson.build @@ -0,0 +1,24 @@ +mps_help_sources = [ + 'index.docbook', + 'legal.xml', +] + +gnome.yelp( + 'mate-power-manager', + sources: mps_help_sources, + media: [ + 'figures/applet-brightness.png', + 'figures/applet-inhibit.png', + 'figures/gpm-cell-capacity.png', + 'figures/gpm-charged.png', + 'figures/gpm-critical.png', + 'figures/gpm-low.png', + 'figures/gpm-prefs-ac.png', + 'figures/gpm-prefs-battery.png', + 'figures/gpm-prefs-general.png', + 'figures/gpm-stats-graph.png', + 'figures/gpm-suspend-problem.png', + 'figures/gpm-unplugged.png', + 'figures/gs-prefs.png', + ], +) |