Skip to content

Commit 5eece95

Browse files
committed
f
1 parent 1e2a57e commit 5eece95

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

src/Library/Library.blp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ Adw.Window window {
115115
}
116116

117117
Label {
118-
label: _("All examples are dedicated to the public domain\nand <b>can be used freely</b> under the terms of <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0 1.0</a>");
118+
label: _(
119+
"All examples are dedicated to the public domain\nand <b>can be used freely</b> under the terms of <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0 1.0</a>"
120+
);
119121
use-markup: true;
120122

121123
styles [

src/Permissions/Permissions.blp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ Adw.Dialog dialog {
4242
}
4343

4444
Label {
45-
label: _("Workbench needs additional permissions. Please run the following command in a terminal and restart Workbench.");
45+
label: _(
46+
"Workbench needs additional permissions. Please run the following command in a terminal and restart Workbench."
47+
);
4648
wrap: true;
4749
justify: center;
4850
}

src/window.blp

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,9 @@ Adw.ApplicationWindow window {
414414

415415
child: Adw.StatusPage {
416416
title: _("Windowed Preview");
417-
description: _("This interface can only be previewed as a separate window.\nWe recommend using “Always on Top”.");
417+
description: _(
418+
"This interface can only be previewed as a separate window.\nWe recommend using “Always on Top”."
419+
);
418420
icon-name: "re.sonny.Workbench-multitasking-windows-symbolic";
419421

420422
Box {
@@ -437,7 +439,9 @@ Adw.ApplicationWindow window {
437439

438440
child: Adw.StatusPage {
439441
title: _("Windowed Preview");
440-
description: _("This interface can only be previewed as a separate window.\nWe recommend using “Always on Top”.");
442+
description: _(
443+
"This interface can only be previewed as a separate window.\nWe recommend using “Always on Top”."
444+
);
441445
icon-name: "re.sonny.Workbench-multitasking-windows-symbolic";
442446

443447
Box {

0 commit comments

Comments
 (0)