mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-06 16:19:07 -04:00
decompiler: Use single quotes
This commit is contained in:
parent
ea92838cf3
commit
3d5a5521aa
15 changed files with 49 additions and 41 deletions
|
@ -3,26 +3,26 @@ using Gtk 4.0;
|
|||
menu my-menu {
|
||||
submenu {
|
||||
section {
|
||||
label: "test section";
|
||||
label: 'test section';
|
||||
}
|
||||
|
||||
item {
|
||||
label: C_("context", "test translated item");
|
||||
label: C_('context', 'test translated item');
|
||||
}
|
||||
|
||||
item {
|
||||
label: "test item shorthand 1";
|
||||
label: 'test item shorthand 1';
|
||||
}
|
||||
|
||||
item {
|
||||
label: "test item shorthand 2";
|
||||
action: "app.test-action";
|
||||
label: 'test item shorthand 2';
|
||||
action: 'app.test-action';
|
||||
}
|
||||
|
||||
item {
|
||||
label: "test item shorthand 3";
|
||||
action: "app.test-action";
|
||||
icon: "test-symbolic";
|
||||
label: 'test item shorthand 3';
|
||||
action: 'app.test-action';
|
||||
icon: 'test-symbolic';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue