[tracker-miners/sam/test-runner-fix: 31/31] Remove intltool translation from settings schemas
- From: Sam Thursfield <sthursfield src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker-miners/sam/test-runner-fix: 31/31] Remove intltool translation from settings schemas
- Date: Mon, 14 Jan 2019 12:35:13 +0000 (UTC)
commit 76c9052709c2aa9bfd077b312da678f44e216341
Author: Sam Thursfield <sam afuera me uk>
Date: Mon Jan 14 13:13:27 2019 +0100
Remove intltool translation from settings schemas
We don't need to translate the strings in these files, and this
functionality is going to be removed anyway as part of
https://gitlab.gnome.org/GNOME/tracker-miners/merge_requests/29
data/meson.build | 18 ++---
...=> org.freedesktop.Tracker.Extract.gschema.xml} | 22 +++---
...rg.freedesktop.Tracker.Miner.Files.gschema.xml} | 84 +++++++++++-----------
... org.freedesktop.Tracker.Writeback.gschema.xml} | 4 +-
4 files changed, 59 insertions(+), 69 deletions(-)
---
diff --git a/data/meson.build b/data/meson.build
index 09f7cd4fe..f064e43dd 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -4,16 +4,13 @@ schemas = [
'org.freedesktop.Tracker.Writeback.gschema.xml',
]
-compile_schema_deps = []
-
foreach schema : schemas
- schema_target = custom_target(schema,
- input: schema + '.in',
+ schema_target = configure_file(
+ input: schema,
output: schema,
- command: ['intltool-merge', '--quiet', '--xml-style', '--utf8', join_paths(meson.source_root(), 'po'),
'@INPUT@', '@OUTPUT@'],
+ copy:true,
install: true,
install_dir: gsettings_schema_dir)
- compile_schema_deps += schema_target
endforeach
tracker_miners_settings_enums = custom_target('tracker-miners-common-settings-enums',
@@ -30,11 +27,4 @@ tracker_miners_settings_enums = custom_target('tracker-miners-common-settings-en
install: true,
install_dir: gsettings_schema_dir)
-compile_schema_deps += [tracker_miners_settings_enums]
-
-# for unit tests
-custom_target('tracker-miners-compile-schemas',
- output: 'gschemas.compiled',
- command: [find_program('glib-compile-schemas'), meson.current_build_dir()],
- build_by_default: true,
- depends: compile_schema_deps)
+gnome.compile_schemas()
diff --git a/data/org.freedesktop.Tracker.Extract.gschema.xml.in
b/data/org.freedesktop.Tracker.Extract.gschema.xml
similarity index 64%
rename from data/org.freedesktop.Tracker.Extract.gschema.xml.in
rename to data/org.freedesktop.Tracker.Extract.gschema.xml
index 591194f2b..e1449e747 100644
--- a/data/org.freedesktop.Tracker.Extract.gschema.xml.in
+++ b/data/org.freedesktop.Tracker.Extract.gschema.xml
@@ -21,37 +21,37 @@ Boston, MA 02110-1301, USA.
<schema id="org.freedesktop.Tracker.Extract" path="/org/freedesktop/tracker/extract/"
gettext-domain="tracker-miners">
<key name="verbosity" enum="org.freedesktop.TrackerMiners.TrackerVerbosity">
<default>'errors'</default>
- <_summary>Log verbosity</_summary>
- <_description>Log verbosity.</_description>
+ <summary>Log verbosity</summary>
+ <description>Log verbosity.</description>
</key>
<key name="sched-idle" enum="org.freedesktop.TrackerMiners.TrackerSchedIdle">
<default>'first-index'</default>
- <_summary>Scheduler priority when idle</_summary>
- <_description>
+ <summary>Scheduler priority when idle</summary>
+ <description>
The scheduler is the kernel component that decides which
runnable application will be executed by the CPU next. Each
application has an associated scheduling policy and priority.
- </_description>
+ </description>
</key>
<key name="max-bytes" type="i">
- <_summary>Max bytes to extract</_summary>
- <_description>Maximum number of UTF-8 bytes to extract.</_description>
+ <summary>Max bytes to extract</summary>
+ <description>Maximum number of UTF-8 bytes to extract.</description>
<range min="0" max="10485760"/>
<default>1048576</default>
</key>
<key name="max-media-art-width" type="i">
- <_summary>Max media art width</_summary>
- <_description>Maximum width in pixels for any media art extracted. Anything bigger is resized. Set to
-1 to disable saving media art from files. Setting to 0 sets no limit on the media art width.</_description>
+ <summary>Max media art width</summary>
+ <description>Maximum width in pixels for any media art extracted. Anything bigger is resized. Set to
-1 to disable saving media art from files. Setting to 0 sets no limit on the media art width.</description>
<range min="-1" max="2048"/>
<default>0</default>
</key>
<key name="wait-for-miner-fs" type="b">
- <_summary>Wait for FS miner to be done before extracting</_summary>
- <_description>When true, tracker-extract will wait for tracker-miner-fs to be done crawling before
extracting meta-data. This option is useful on constrained environment where it is important to list files as
fast as possible and can wait to get meta-data later.</_description>
+ <summary>Wait for FS miner to be done before extracting</summary>
+ <description>When true, tracker-extract will wait for tracker-miner-fs to be done crawling before
extracting meta-data. This option is useful on constrained environment where it is important to list files as
fast as possible and can wait to get meta-data later.</description>
<default>false</default>
</key>
</schema>
diff --git a/data/org.freedesktop.Tracker.Miner.Files.gschema.xml.in
b/data/org.freedesktop.Tracker.Miner.Files.gschema.xml
similarity index 68%
rename from data/org.freedesktop.Tracker.Miner.Files.gschema.xml.in
rename to data/org.freedesktop.Tracker.Miner.Files.gschema.xml
index 9254cfe5d..d66ff97d7 100644
--- a/data/org.freedesktop.Tracker.Miner.Files.gschema.xml.in
+++ b/data/org.freedesktop.Tracker.Miner.Files.gschema.xml
@@ -21,141 +21,141 @@ Boston, MA 02110-1301, USA.
<schema id="org.freedesktop.Tracker.Miner.Files" path="/org/freedesktop/tracker/miner/files/"
gettext-domain="tracker-miners">
<key name="verbosity" enum="org.freedesktop.TrackerMiners.TrackerVerbosity">
<default>'errors'</default>
- <_summary>Log verbosity</_summary>
- <_description>Log verbosity.</_description>
+ <summary>Log verbosity</summary>
+ <description>Log verbosity.</description>
</key>
<key name="initial-sleep" type="i">
- <_summary>Initial sleep</_summary>
- <_description>Initial sleep time, in seconds.</_description>
+ <summary>Initial sleep</summary>
+ <description>Initial sleep time, in seconds.</description>
<range min="0" max="1000"/>
<default>15</default>
</key>
<key name="sched-idle" enum="org.freedesktop.TrackerMiners.TrackerSchedIdle">
<default>'first-index'</default>
- <_summary>Scheduler priority when idle</_summary>
- <_description>
+ <summary>Scheduler priority when idle</summary>
+ <description>
The scheduler is the kernel component that decides which
runnable application will be executed by the CPU next. Each
application has an associated scheduling policy and priority.
- </_description>
+ </description>
</key>
<key name="throttle" type="i">
- <_summary>Throttle</_summary>
- <_description>Indexing speed, the higher the slower.</_description>
+ <summary>Throttle</summary>
+ <description>Indexing speed, the higher the slower.</description>
<range min="0" max="20"/>
<default>0</default>
</key>
<key name="low-disk-space-limit" type="i">
- <_summary>Low disk space limit</_summary>
- <_description>Disk space threshold in percent at which to pause indexing, or -1 to
disable.</_description>
+ <summary>Low disk space limit</summary>
+ <description>Disk space threshold in percent at which to pause indexing, or -1 to
disable.</description>
<range min="-1" max="100"/>
<default>-1</default>
</key>
<key name="crawling-interval" type="i">
- <_summary>Crawling interval</_summary>
- <_description>
+ <summary>Crawling interval</summary>
+ <description>
Interval in days to check whether the filesystem is up to date in the database.
0 forces crawling anytime, -1 forces it only after unclean shutdowns, and -2
disables it entirely.
- </_description>
+ </description>
<range min="-2" max="365"/>
<default>-1</default>
</key>
<key name="removable-days-threshold" type="i">
- <_summary>Removable devices’ data permanence threshold</_summary>
- <_description>
+ <summary>Removable devices’ data permanence threshold</summary>
+ <description>
Threshold in days after which files from removables devices
will be removed from database if not mounted. 0 means never,
maximum is 365.
- </_description>
+ </description>
<range min="0" max="365"/>
<default>3</default>
</key>
<key name="enable-monitors" type="b">
- <_summary>Enable monitors</_summary>
- <_description>Set to false to completely disable any file monitoring</_description>
+ <summary>Enable monitors</summary>
+ <description>Set to false to completely disable any file monitoring</description>
<default>true</default>
</key>
<key name="enable-writeback" type="b">
- <_summary>Enable writeback</_summary>
- <_description>Set to false to completely disable any file writeback</_description>
+ <summary>Enable writeback</summary>
+ <description>Set to false to completely disable any file writeback</description>
<default>true</default>
</key>
<key name="index-removable-devices" type="b">
- <_summary>Index removable devices</_summary>
- <_description>Set to true to enable indexing mounted directories for removable devices.</_description>
+ <summary>Index removable devices</summary>
+ <description>Set to true to enable indexing mounted directories for removable devices.</description>
<default>false</default>
</key>
<key name="index-optical-discs" type="b">
- <_summary>Index optical discs</_summary>
- <_description>
+ <summary>Index optical discs</summary>
+ <description>
Set to true to enable indexing CDs, DVDs, and generally optical media
(if removable devices are not indexed, optical discs won’t be either)
- </_description>
+ </description>
<default>false</default>
</key>
<key name="index-on-battery" type="b">
- <_summary>Index when running on battery</_summary>
- <_description>Set to true to index while running on battery</_description>
+ <summary>Index when running on battery</summary>
+ <description>Set to true to index while running on battery</description>
<default>true</default>
</key>
<key name="index-on-battery-first-time" type="b">
- <_summary>Perform initial indexing when running on battery</_summary>
- <_description>Set to true to index while running on battery for the first time only</_description>
+ <summary>Perform initial indexing when running on battery</summary>
+ <description>Set to true to index while running on battery for the first time only</description>
<default>true</default>
</key>
<key name="index-recursive-directories" type="as">
- <_summary>Directories to index recursively</_summary>
- <_description>
+ <summary>Directories to index recursively</summary>
+ <description>
List of directories to index recursively, Special values include:
&DESKTOP, &DOCUMENTS, &DOWNLOAD, &MUSIC, &PICTURES,
&PUBLIC_SHARE, &TEMPLATES, &VIDEOS.
See /etc/xdg/user-dirs.defaults and $HOME/.config/user-dirs.default
- </_description>
+ </description>
<default>[ '&DESKTOP', '&DOCUMENTS', '&DOWNLOAD', '&MUSIC', '&PICTURES',
'&VIDEOS' ]</default>
</key>
<key name="index-single-directories" type="as">
- <_summary>Directories to index non-recursively</_summary>
- <_description>
+ <summary>Directories to index non-recursively</summary>
+ <description>
List of directories to index without inspecting subfolders, Special values include:
&DESKTOP, &DOCUMENTS, &DOWNLOAD, &MUSIC, &PICTURES,
&PUBLIC_SHARE, &TEMPLATES, &VIDEOS.
See /etc/xdg/user-dirs.defaults and $HOME/.config/user-dirs.default
- </_description>
+ </description>
<default>[ '$HOME' ]</default>
</key>
<key name="ignored-files" type="as">
- <_summary>Ignored files</_summary>
- <_description>List of file patterns to avoid</_description>
+ <summary>Ignored files</summary>
+ <description>List of file patterns to avoid</description>
<default>[ '*~', '*.o', '*.la', '*.lo' , '*.loT', '*.in', '*.csproj', '*.m4', '*.rej', '*.gmo',
'*.orig', '*.pc', '*.omf', '*.aux', '*.tmp', '*.vmdk', '*.vm*', '*.nvram', '*.part', '*.rcore', '*.lzo',
'autom4te', 'conftest', 'confstat', 'Makefile', 'SCCS', 'ltmain.sh', 'libtool', 'config.status',
'confdefs.h', 'configure', '#*#', '~$*.doc?', '~$*.dot?', '~$*.xls?', '~$*.xlt?', '~$*.xlam', '~$*.ppt?',
'~$*.pot?', '~$*.ppam', '~$*.ppsm', '~$*.ppsx', '~$*.vsd?', '~$*.vss?', '~$*.vst?', 'mimeapps.list',
'mimeinfo.cache', 'gnome-mimeapps.list', 'kde-mimeapps.list', '*.directory' ]</default>
</key>
<key name="ignored-directories" type="as">
- <_summary>Ignored directories</_summary>
- <_description>List of directories to avoid</_description>
+ <summary>Ignored directories</summary>
+ <description>List of directories to avoid</description>
<default>[ 'po', 'CVS', 'core-dumps', 'lost+found' ]</default>
</key>
<key name="ignored-directories-with-content" type="as">
- <_summary>Ignored directories with content</_summary>
- <_description>Avoid any directory containing a file blacklisted here</_description>
+ <summary>Ignored directories with content</summary>
+ <description>Avoid any directory containing a file blacklisted here</description>
<default>[ '.trackerignore', '.git', '.hg' ]</default>
</key>
</schema>
diff --git a/data/org.freedesktop.Tracker.Writeback.gschema.xml.in
b/data/org.freedesktop.Tracker.Writeback.gschema.xml
similarity index 92%
rename from data/org.freedesktop.Tracker.Writeback.gschema.xml.in
rename to data/org.freedesktop.Tracker.Writeback.gschema.xml
index ba6b0e143..597bd8df4 100644
--- a/data/org.freedesktop.Tracker.Writeback.gschema.xml.in
+++ b/data/org.freedesktop.Tracker.Writeback.gschema.xml
@@ -21,8 +21,8 @@ Boston, MA 02110-1301, USA.
<schema id="org.freedesktop.Tracker.Writeback" path="/org/freedesktop/tracker/writeback/"
gettext-domain="tracker-miners">
<key name="verbosity" enum="org.freedesktop.TrackerMiners.TrackerVerbosity">
<default>'errors'</default>
- <_summary>Log verbosity</_summary>
- <_description>Log verbosity.</_description>
+ <summary>Log verbosity</summary>
+ <description>Log verbosity.</description>
</key>
</schema>
</schemalist>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]