diff options
author | Robert Tari <robert@tari.in> | 2023-09-07 11:43:47 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-09-09 13:55:07 +0200 |
commit | cfde53e29ada7a375b48d9254c26ebff0ab40cf7 (patch) | |
tree | 98e23f78f05c8c83d8b50a3083388cab5a41c387 /data | |
parent | 99055f62e6874a8a56aed858ef1effc7abe2f994 (diff) | |
download | ayatana-indicator-bluetooth-cfde53e29ada7a375b48d9254c26ebff0ab40cf7.tar.gz ayatana-indicator-bluetooth-cfde53e29ada7a375b48d9254c26ebff0ab40cf7.tar.bz2 ayatana-indicator-bluetooth-cfde53e29ada7a375b48d9254c26ebff0ab40cf7.zip |
Fix gschema file translation
fixes https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/issues/39
Diffstat (limited to 'data')
-rw-r--r-- | data/CMakeLists.txt | 12 | ||||
-rw-r--r-- | data/org.ayatana.indicator.bluetooth.gschema.xml (renamed from data/org.ayatana.indicator.bluetooth.gschema.xml.in) | 4 |
2 files changed, 3 insertions, 13 deletions
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt index d3eae13..49ea20c 100644 --- a/data/CMakeLists.txt +++ b/data/CMakeLists.txt @@ -63,14 +63,4 @@ install( # GSettings ########################### -set (SCHEMA_NAME "org.ayatana.indicator.bluetooth.gschema.xml") -set (SCHEMA_FILE "${CMAKE_CURRENT_BINARY_DIR}/${SCHEMA_NAME}") -set (SCHEMA_FILE_IN "${CMAKE_CURRENT_SOURCE_DIR}/${SCHEMA_NAME}.in") - -# generate the .xml file using intltool -find_package(Intltool REQUIRED) -set (ENV{LC_ALL} "C") -intltool_merge_translations("${SCHEMA_FILE_IN}" "${SCHEMA_FILE}" ALL UTF8 STYLE "xml" NO_TRANSLATIONS) - -# let UseGSettings do the rest -add_schema (${SCHEMA_NAME}) +add_schema ("org.ayatana.indicator.bluetooth.gschema.xml") diff --git a/data/org.ayatana.indicator.bluetooth.gschema.xml.in b/data/org.ayatana.indicator.bluetooth.gschema.xml index 67eb604..7862d03 100644 --- a/data/org.ayatana.indicator.bluetooth.gschema.xml.in +++ b/data/org.ayatana.indicator.bluetooth.gschema.xml @@ -2,8 +2,8 @@ <schema id="org.ayatana.indicator.bluetooth" path="/org/ayatana/indicator/bluetooth/"> <key name="visible" type="b"> <default>true</default> - <_summary>Bluetooth indicator in the menu bar.</_summary> - <_description>Whether or not to show the Bluetooth indicator in the menu bar.</_description> + <summary>Bluetooth indicator in the menu bar.</summary> + <description>Whether or not to show the Bluetooth indicator in the menu bar.</description> </key> </schema> </schemalist> |