gnome-control-center/panels/search/cc-search-locations-dialog.ui
Jake Dane 37a579b6b0 Replace "application" with "app"
This is part of an initiative to use "app" instead of "applications",
see: https://gitlab.gnome.org/Teams/Design/initiatives/-/issues/123

Redo of !1539 that was closed by a ghosting user.

Replaces "application" with "app" in user facing strings in these
panels:

- applications
- camera, location, microphone
- default-apps
- multitasking
- notifications
- removable-media
- search
- usage
- user-accounts

Fixes: #2208.
2023-01-23 11:10:28 +00:00

85 lines
3.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<template class="CcSearchLocationsDialog" parent="AdwPreferencesWindow">
<property name="modal">True</property>
<property name="hide-on-close">True</property>
<property name="search-enabled">False</property>
<property name="title" translatable="yes">Search Locations</property>
<child>
<object class="AdwPreferencesPage">
<child>
<object class="AdwPreferencesGroup">
<property name="description" translatable="yes">Folders which are searched by system apps, such as Files, Photos and Videos.</property>
</object>
</child>
<child>
<object class="AdwPreferencesGroup" id="places_group">
<property name="title" translatable="yes">Places</property>
<child>
<object class="GtkListBox" id="places_list">
<property name="selection-mode">none</property>
<signal name="keynav-failed" handler="keynav_failed_cb" object="CcSearchLocationsDialog" swapped="yes"/>
<accessibility>
<relation name="labelled-by">places_group</relation>
</accessibility>
<style>
<class name="boxed-list"/>
</style>
</object>
</child>
</object>
</child>
<child>
<object class="AdwPreferencesGroup" id="bookmarks_group">
<property name="title" translatable="yes">Bookmarks</property>
<child>
<object class="GtkListBox" id="bookmarks_list">
<property name="selection-mode">none</property>
<signal name="keynav-failed" handler="keynav_failed_cb" object="CcSearchLocationsDialog" swapped="yes"/>
<accessibility>
<relation name="labelled-by">bookmarks_group</relation>
</accessibility>
<style>
<class name="boxed-list"/>
</style>
</object>
</child>
</object>
</child>
<child>
<object class="AdwPreferencesGroup" id="others_group">
<property name="title" translatable="yes">Others</property>
<property name="header-suffix">
<object class="GtkButton" id="locations_add">
<property name="valign">center</property>
<property name="child">
<object class="AdwButtonContent">
<property name="icon-name">list-add-symbolic</property>
<property name="label" translatable="yes">Add Location</property>
</object>
</property>
<signal name="clicked" handler="add_button_clicked" object="CcSearchLocationsDialog" swapped="yes"/>
<style>
<class name="flat"/>
</style>
</object>
</property>
<child>
<object class="GtkListBox" id="others_list">
<property name="selection-mode">none</property>
<signal name="keynav-failed" handler="keynav_failed_cb" object="CcSearchLocationsDialog" swapped="yes"/>
<accessibility>
<relation name="labelled-by">others_group</relation>
</accessibility>
<style>
<class name="boxed-list"/>
</style>
</object>
</child>
</object>
</child>
</object>
</child>
</template>
</interface>