25af7953f740623154b5a121c6d35c7626f76cac
[srvgit] / installer / data / mysql / mandatory / keyboard_shortcuts.sql
1 --
2 -- Default keyboard shortcuts
3 -- for Koha.
4 --
5 -- Copyright 2019 Koha Development Team
6 --
7 -- This file is part of Koha.
8 --
9 -- Koha is free software; you can redistribute it and/or modify it under the
10 -- terms of the GNU General Public License as published by the Free Software
11 -- Foundation; either version 2 of the License, or (at your option) any later
12 -- version.
13 --
14 -- Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 -- A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 --
18 -- You should have received a copy of the GNU General Public License along
19 -- with Koha; if not, write to the Free Software Foundation, Inc.,
20 -- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22 -- keyboard shortcuts
23 INSERT INTO keyboard_shortcuts (shortcut_name, shortcut_keys) VALUES
24     ("insert_copyright","Alt-C"),
25     ("insert_copyright_sound","Alt-P"),
26     ("insert_delimiter","Ctrl-D"),
27     ("subfield_help","Ctrl-H"),
28     ("link_authorities","Shift-Ctrl-L"),
29     ("delete_field","Ctrl-X"),
30     ("delete_subfield","Shift-Ctrl-X"),
31     ("new_line","Enter"),
32     ("line_break","Shift-Enter"),
33     ("next_position","Tab"),
34     ("prev_position","Shift-Tab"),
35     ("toggle_keyboard", "Shift-Ctrl-K"),
36     ("copy_line","Ctrl-C"),
37     ("copy_subfield","Shift-Ctrl-C"),
38     ("paste_line","Ctrl-P"),
39     ("insert_line","Ctrl-I");