-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathshortcuts-dialog.blp
More file actions
99 lines (79 loc) · 2.69 KB
/
shortcuts-dialog.blp
File metadata and controls
99 lines (79 loc) · 2.69 KB
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
using Gtk 4.0;
using Adw 1;
Adw.ShortcutsDialog shortcuts_dialog {
Adw.ShortcutsSection translation_section {
title: C_("shortcuts window", "Translator");
Adw.ShortcutsItem translate_shortcut {
title: C_("shortcuts window", "Translate");
}
Adw.ShortcutsItem switch_shortcut {
title: C_("shortcuts window", "Switch Languages");
action-name: "win.switch";
}
Adw.ShortcutsItem from_shortcut {
title: C_("shortcuts window", "Select source language");
action-name: "win.from";
}
Adw.ShortcutsItem to_shortcut {
title: C_("shortcuts window", "Select destination language");
action-name: "win.to";
}
Adw.ShortcutsItem {
title: C_("shortcuts window", "Clear source text");
action-name: "win.clear";
}
Adw.ShortcutsItem {
title: C_("shortcuts window", "Copy translation");
action-name: "win.copy";
}
Adw.ShortcutsItem {
title: C_("shortcuts window", "Show Pronunciation");
action-name: "app.pronunciation";
}
Adw.ShortcutsItem {
title: C_("shortcuts window", "Increase font size");
action-name: "win.font-size-inc";
}
Adw.ShortcutsItem {
title: C_("shortcuts window", "Decrease font size");
action-name: "win.font-size-dec";
}
}
Adw.ShortcutsSection {
title: C_("shortcuts window", "Text-to-Speech");
Adw.ShortcutsItem {
title: C_("shortcuts window", "Listen to source text");
action-name: "win.listen-src";
}
Adw.ShortcutsItem {
title: C_("shortcuts window", "Listen to translation");
action-name: "win.listen-dest";
}
}
Adw.ShortcutsSection {
title: C_("shortcuts window", "Navigation");
Adw.ShortcutsItem {
title: C_("shortcuts window", "Go back in history");
action-name: "win.back";
}
Adw.ShortcutsItem {
title: C_("shortcuts window", "Go forward in history");
action-name: "win.forward";
}
}
Adw.ShortcutsSection {
title: C_("shortcuts window", "General");
Adw.ShortcutsItem {
title: C_("shortcuts window", "Preferences");
action-name: "app.preferences";
}
Adw.ShortcutsItem {
title: C_("shortcuts window", "Shortcuts");
action-name: "app.shortcuts";
}
Adw.ShortcutsItem {
title: C_("shortcuts window", "Quit");
action-name: "app.quit";
}
}
}