You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 20, 2023. It is now read-only.
name:NSLocalizedString("Message Preview", comment:"The name of the action for previewing a message from the markdown actions bar")),
32
+
name:NSLocalizedString(
33
+
"Message Preview",
34
+
comment:"The name of the action for previewing a message from the markdown actions bar"
35
+
)
36
+
),
33
37
IssueTextActionOperation(
34
38
icon:UIImage(named:"bar-mention"),
35
39
operation:.wrap("@",""),
36
-
name:NSLocalizedString("Add mention to text", comment:"The name of the action for making text a mention from the markdown actions bar")),
40
+
name:NSLocalizedString(
41
+
"Add mention to text",
42
+
comment:"The name of the action for making text a mention from the markdown actions bar"
43
+
)
44
+
),
37
45
IssueTextActionOperation(
38
46
icon:UIImage(named:"bar-bold"),
39
47
operation:.wrap("**","**"),
40
-
name:NSLocalizedString("Make text bold", comment:"The name of the action for making text bold from the markdown actions bar")),
48
+
name:NSLocalizedString(
49
+
"Make text bold",
50
+
comment:"The name of the action for making text bold from the markdown actions bar"
51
+
)
52
+
),
41
53
IssueTextActionOperation(
42
54
icon:UIImage(named:"bar-italic"),
43
55
operation:.wrap("_","_"),
44
-
name:NSLocalizedString("Make text italic", comment:"The name of the action for making text italic from the markdown actions bar")),
56
+
name:NSLocalizedString(
57
+
"Make text italic",
58
+
comment:"The name of the action for making text italic from the markdown actions bar"
59
+
)
60
+
),
45
61
IssueTextActionOperation(
46
62
icon:UIImage(named:"bar-code"),
47
63
operation:.wrap("`","`"),
48
-
name:NSLocalizedString("Make text monospaced", comment:"The name of the action for making text monospaced / appear as code from the markdown actions bar")),
64
+
name:NSLocalizedString(
65
+
"Make text monospaced",
66
+
comment:"The name of the action for making text monospaced / appear as code from the markdown actions bar"
67
+
)
68
+
),
49
69
IssueTextActionOperation(
50
70
icon:UIImage(named:"bar-code-block"),
51
71
operation:.wrap("```\n","\n```"),
52
-
name:NSLocalizedString("Make text appear as code", comment:"The name of the action for making text appear as code from the markdown actions bar")),
72
+
name:NSLocalizedString(
73
+
"Make text appear as code",
74
+
comment:"The name of the action for making text appear as code from the markdown actions bar"
75
+
)
76
+
),
53
77
IssueTextActionOperation(
54
78
icon:UIImage(named:"bar-strikethrough"),
55
79
operation:.wrap("~~","~~"),
56
-
name:NSLocalizedString("Strikethrough text", comment:"The name of the action for making text strikethrough from the markdown actions bar")),
80
+
name:NSLocalizedString(
81
+
"Strikethrough text",
82
+
comment:"The name of the action for making text strikethrough from the markdown actions bar"
83
+
)
84
+
),
57
85
IssueTextActionOperation(
58
86
icon:UIImage(named:"bar-header"),
59
87
operation:.line("#"),
60
-
name:NSLocalizedString("Add header to text", comment:"The name of the action for making text a header from the markdown actions bar")),
88
+
name:NSLocalizedString(
89
+
"Add header to text",
90
+
comment:"The name of the action for making text a header from the markdown actions bar"
91
+
)
92
+
),
61
93
IssueTextActionOperation(
62
94
icon:UIImage(named:"bar-ul"),
63
95
operation:.line("- "),
64
-
name:NSLocalizedString("Make text a list item", comment:"The name of the action for making text a list item from the markdown actions bar")),
96
+
name:NSLocalizedString(
97
+
"Make text a list item",
98
+
comment:"The name of the action for making text a list item from the markdown actions bar"
99
+
)
100
+
),
65
101
IssueTextActionOperation(
66
102
icon:UIImage(named:"bar-indent"),
67
103
operation:.line(""),
68
-
name:NSLocalizedString("Make text indented", comment:"The name of the action for making text indented from the markdown actions bar")),
104
+
name:NSLocalizedString(
105
+
"Make text indented",
106
+
comment:"The name of the action for making text indented from the markdown actions bar"
0 commit comments