diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-09-09 13:56:12 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-09-09 13:56:12 +0200 |
commit | 33d4e8174fec5b0f51560c0328bcc282a4597739 (patch) | |
tree | 98e23f78f05c8c83d8b50a3083388cab5a41c387 | |
parent | 99055f62e6874a8a56aed858ef1effc7abe2f994 (diff) | |
parent | cfde53e29ada7a375b48d9254c26ebff0ab40cf7 (diff) | |
download | ayatana-indicator-bluetooth-33d4e8174fec5b0f51560c0328bcc282a4597739.tar.gz ayatana-indicator-bluetooth-33d4e8174fec5b0f51560c0328bcc282a4597739.tar.bz2 ayatana-indicator-bluetooth-33d4e8174fec5b0f51560c0328bcc282a4597739.zip |
Merge branch 'tari01-pr/fix-schema-translation'
Attributes GH PR #51: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/51
-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 | ||||
-rw-r--r-- | po/POTFILES.in | 2 |
3 files changed, 4 insertions, 14 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> diff --git a/po/POTFILES.in b/po/POTFILES.in index 6f4337a..6178427 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,7 +1,7 @@ # List of source files containing translatable strings. # Please keep this file in alphabetical order. [encoding: UTF-8] -data/org.ayatana.indicator.bluetooth.gschema.xml.in +data/org.ayatana.indicator.bluetooth.gschema.xml src/bluetooth.vala src/bluez.vala src/desktop.vala |