1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of Dconf Editor
Dconf Editor is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Dconf Editor is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Dconf Editor. If not, see <https://www.gnu.org/licenses/>.
-->
<interface domain="dconf-editor">
<requires lib="gtk+" version="3.12"/>
<object class="GtkShortcutsWindow" id="help_overlay">
<child>
<object class="GtkShortcutsSection">
<property name="visible">True</property>
<property name="max-height">11</property>
<child>
<object class="GtkShortcutsGroup">
<property name="visible">True</property>
<!-- Translators: header in the shortcut window, for usual headerbar menus actions -->
<property name="title" translatable="yes" context="shortcut window">Actions</property>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-B action -->
<property name="title" translatable="yes" context="shortcut window">Bookmarks menu</property>
<property name="accelerator"><Primary>b</property> <!-- <Primary><Shift>b does the same -->
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-D action -->
<property name="title" translatable="yes" context="shortcut window">Bookmark this path</property>
<property name="accelerator"><Primary>d</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-Shift-D action -->
<property name="title" translatable="yes" context="shortcut window">Unbookmark this path</property>
<property name="accelerator"><Primary><Shift>d</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: F10 key action -->
<property name="title" translatable="yes" context="shortcut window">Actions menu</property>
<property name="accelerator">F10</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Shift-F10 action -->
<property name="title" translatable="yes" context="shortcut window">Path bar menu</property>
<property name="accelerator"><Shift>F10</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkShortcutsGroup">
<property name="visible">True</property>
<!-- Translators: header in the shortcut window, for moving to paths known by the headerbar -->
<property name="title" translatable="yes" context="shortcut window">Path bar navigation</property>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Alt-Shift-Up action; browse to the '/' folder -->
<property name="title" translatable="yes" context="shortcut window">Open root folder</property>
<property name="accelerator"><Alt><Shift>Up</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Alt-Up action; browse to the parent folder -->
<property name="title" translatable="yes" context="shortcut window">Open parent folder</property>
<property name="accelerator"><Alt>Up</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Alt-Down action; browse to the child of the current path displayed in the headerbar, if any -->
<property name="title" translatable="yes" context="shortcut window">Open active direct child</property>
<property name="accelerator"><Alt>Down</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Alt-Shift-Down action; browse to the complete path of the headerbar -->
<property name="title" translatable="yes" context="shortcut window">Open active last child</property>
<property name="accelerator"><Alt><Shift>Down</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkShortcutsGroup">
<property name="visible">True</property>
<!-- Translators: header in the shortcut window, for the various ways of opening search -->
<property name="title" translatable="yes" context="shortcut window">Search options</property>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-F action; opens search, searching everywhere -->
<property name="title" translatable="yes" context="shortcut window">Toggle search</property>
<property name="accelerator"><Primary>f</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-Alt-F action; does the same thing as "Toggle search", but loads the search entry with the last searched text -->
<property name="title" translatable="yes" context="shortcut window">Search again</property>
<property name="accelerator"><Primary><Alt>f</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-Shift-F action; opens search, searching only from current folder -->
<property name="title" translatable="yes" context="shortcut window">Toggle local search</property>
<property name="accelerator"><Primary><Shift>f</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-Shift-Alt-F action; does the same thing as "Toggle local search", but loads the search entry with the last searched text -->
<property name="title" translatable="yes" context="shortcut window">Search again, locally</property>
<property name="accelerator"><Primary><Shift><Alt>f</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-V action; open search with clipboard content -->
<property name="title" translatable="yes" context="shortcut window">Paste as search</property>
<property name="accelerator"><Primary>v</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">False</property>
<!-- Translators: Ctrl-Shift-V action; does the same thing as "Paste as search", but works even if an entry or textview is selected; entry hidden for now -->
<property name="title" translatable="yes" context="shortcut window">Paste as search (force)</property>
<property name="accelerator"><Primary><Shift>v</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-L action when browsing; opens search on current path -->
<property name="title" translatable="yes" context="shortcut window">Edit path</property>
<property name="accelerator"><Primary>l</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-Shift-L action when browsing; opens search on parent path -->
<property name="title" translatable="yes" context="shortcut window">Edit parent path</property>
<property name="accelerator"><Primary><Shift>l</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: '/' key action when browsing; opens search on root path -->
<property name="title" translatable="yes" context="shortcut window">Edit root path</property>
<property name="accelerator">slash</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Escape key action, when searching; cancels search -->
<property name="title" translatable="yes" context="shortcut window">Browse keys tree</property>
<property name="accelerator">Escape</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkShortcutsGroup">
<property name="visible">True</property>
<!-- Translators: header in the shortcut window, for when browsing -->
<property name="title" translatable="yes" context="shortcut window">Keys list actions</property>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Menu key action, when browsing -->
<property name="title" translatable="yes" context="shortcut window">Contextual menu</property>
<property name="accelerator">Menu</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-Shift-G action, when browsing -->
<property name="title" translatable="yes" context="shortcut window">Previous line</property>
<property name="accelerator"><Primary><Shift>g</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-G action, when browsing -->
<property name="title" translatable="yes" context="shortcut window">Next line</property>
<property name="accelerator"><Primary>g</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">False</property>
<!-- Translators: entry disabled for now; Ctrl-I action, when browsing; displays information on selected folder -->
<property name="title" translatable="yes" context="shortcut window">Toggle folder properties</property>
<property name="accelerator"><Primary>i</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-Delete action, when browsing; sets the selected key to its default value -->
<property name="title" translatable="yes" context="shortcut window">Set to default</property>
<property name="accelerator"><Primary>Delete</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-Return action, when browsing; does nothing if the selection is not a boolean key -->
<property name="title" translatable="yes" context="shortcut window">Toggle boolean value</property>
<property name="accelerator"><Primary>Return</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkShortcutsGroup">
<property name="visible">True</property>
<!-- Translators: header in the shortcut window, for when there are pending changes -->
<property name="title" translatable="yes" context="shortcut window">Modifications list actions</property>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Alt-I action if there are pending changes; the modifications list is either a popover, or an in-window panel -->
<property name="title" translatable="yes" context="shortcut window">Toggle modifications list</property>
<property name="accelerator"><Alt>i</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Return/Enter keys action in the list of pending modifications; go to the key with pending modification -->
<property name="title" translatable="yes" context="shortcut window">Open selected row key</property>
<property name="accelerator">Return</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-Delete action in the list of pending modifications; dismisses the selected modification -->
<property name="title" translatable="yes" context="shortcut window">Dismiss modification</property>
<property name="accelerator"><Primary>Delete</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkShortcutsGroup">
<property name="visible">True</property>
<!-- Translators: header in the shortcut window, for opening the usual helpful dialogs -->
<property name="title" translatable="yes" context="shortcut window">Generic</property>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-F1 action; opens the Keyboard shortcuts dialog -->
<property name="title" translatable="yes" context="shortcut window">Show this help</property>
<property name="accelerator"><Primary>question <Primary>F1</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Shift-F1 action; opens the About dialog -->
<property name="title" translatable="yes" context="shortcut window">About</property>
<property name="accelerator"><Shift>F1</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkShortcutsGroup">
<property name="visible">True</property>
<!-- Translators: header in the shortcut window, for the copy-to-clipboard actions -->
<property name="title" translatable="yes" context="shortcut window">Clipboard</property>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<!-- Translators: Ctrl-C action; copies to clipboard something that identifies the current selection (schema, name and value, for a gsettings key) -->
<property name="title" translatable="yes" context="shortcut window">Copy descriptor</property>
<property name="accelerator"><Primary>c</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>sss
<!-- Translators: Ctrl-Shift-C action; copies to clipboard the path of the currently browsed key or folder -->
<property name="title" translatable="yes" context="shortcut window">Copy path</property>
<property name="accelerator"><Primary><Shift>c</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkShortcutsGroup">
<property name="visible">True</property>
<!-- Translators: header in the shortcut window, for the various ways of quitting the application -->
<property name="title" translatable="yes" context="shortcut window">Quit</property>
<!-- TODO rething "discard and quit", as <alt>F4 has a different behaviour when a dialog is opened, and is WM-specific -->
<child>
<object class="GtkShortcutsShortcut"> <!-- TODO doesn't quit if a dialog is opened -->
<property name="visible">True</property>
<!-- Translators: Ctrl-Q action; displays a notification if there are pending changes -->
<property name="title" translatable="yes" context="shortcut window">Quit if there’s no pending changes</property>
<property name="accelerator"><Primary>q</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut"> <!-- TODO doesn't quit if a dialog is opened -->
<property name="visible">True</property>
<!-- Translators: Ctrl-Shift-Q action -->
<property name="title" translatable="yes" context="shortcut window">Apply pending changes and quit</property>
<property name="accelerator"><Primary><Shift>q</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut"> <!-- TODO doesn't quit if a dialog is opened, but closes the dialog -->
<property name="visible">True</property>
<!-- Translators: Alt-F4 action -->
<property name="title" translatable="yes" context="shortcut window">Dismiss pending changes and quit</property>
<property name="accelerator"><Alt>F4</property>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</interface>
|