summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authorGravatar default2025-03-08 07:26:02 +0100
committerGravatar default2025-03-08 07:26:02 +0100
commit2ca1bfae79dcb613840a48ced14bd683b4235712 (patch)
tree8b3d8ceecaa432900a08d92efc5d84893df29da0 /html.c
parentUpdated fr.po. (diff)
downloadpenes-snac2-2ca1bfae79dcb613840a48ced14bd683b4235712.tar.gz
penes-snac2-2ca1bfae79dcb613840a48ced14bd683b4235712.tar.xz
penes-snac2-2ca1bfae79dcb613840a48ced14bd683b4235712.zip
Fixed some stray translatable strings.
Diffstat (limited to 'html.c')
-rw-r--r--html.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/html.c b/html.c
index 8ffa2be..a90a51f 100644
--- a/html.c
+++ b/html.c
@@ -416,7 +416,7 @@ xs_html *html_note(snac *user, const char *summary,
416 xs_html_sctag("input", 416 xs_html_sctag("input",
417 xs_html_attr("type", "url"), 417 xs_html_attr("type", "url"),
418 xs_html_attr("name", "in_reply_to"), 418 xs_html_attr("name", "in_reply_to"),
419 xs_html_attr("placeholder", "Optional URL to reply to"))); 419 xs_html_attr("placeholder", L("Optional URL to reply to"))));
420 420
421 xs_html_add(form, 421 xs_html_add(form,
422 xs_html_tag("p", NULL), 422 xs_html_tag("p", NULL),
@@ -523,7 +523,7 @@ xs_html *html_note(snac *user, const char *summary,
523 xs_html_attr("name", "poll_options"), 523 xs_html_attr("name", "poll_options"),
524 xs_html_attr("rows", "4"), 524 xs_html_attr("rows", "4"),
525 xs_html_attr("wrap", "virtual"), 525 xs_html_attr("wrap", "virtual"),
526 xs_html_attr("placeholder", "Option 1...\nOption 2...\nOption 3...\n..."))), 526 xs_html_attr("placeholder", L("Option 1...\nOption 2...\nOption 3...\n...")))),
527 xs_html_tag("select", 527 xs_html_tag("select",
528 xs_html_attr("name", "poll_multiple"), 528 xs_html_attr("name", "poll_multiple"),
529 xs_html_tag("option", 529 xs_html_tag("option",
@@ -1342,13 +1342,13 @@ xs_html *html_top_controls(snac *user)
1342 xs_html_attr("type", "text"), 1342 xs_html_attr("type", "text"),
1343 xs_html_attr("name", "telegram_bot"), 1343 xs_html_attr("name", "telegram_bot"),
1344 xs_html_attr("value", telegram_bot), 1344 xs_html_attr("value", telegram_bot),
1345 xs_html_attr("placeholder", "Bot API key")), 1345 xs_html_attr("placeholder", L("Bot API key"))),
1346 xs_html_text(" "), 1346 xs_html_text(" "),
1347 xs_html_sctag("input", 1347 xs_html_sctag("input",
1348 xs_html_attr("type", "text"), 1348 xs_html_attr("type", "text"),
1349 xs_html_attr("name", "telegram_chat_id"), 1349 xs_html_attr("name", "telegram_chat_id"),
1350 xs_html_attr("value", telegram_chat_id), 1350 xs_html_attr("value", telegram_chat_id),
1351 xs_html_attr("placeholder", "Chat id"))), 1351 xs_html_attr("placeholder", L("Chat id")))),
1352 xs_html_tag("p", 1352 xs_html_tag("p",
1353 xs_html_text(L("ntfy notifications (ntfy server and token):")), 1353 xs_html_text(L("ntfy notifications (ntfy server and token):")),
1354 xs_html_sctag("br", NULL), 1354 xs_html_sctag("br", NULL),
@@ -1356,13 +1356,13 @@ xs_html *html_top_controls(snac *user)
1356 xs_html_attr("type", "text"), 1356 xs_html_attr("type", "text"),
1357 xs_html_attr("name", "ntfy_server"), 1357 xs_html_attr("name", "ntfy_server"),
1358 xs_html_attr("value", ntfy_server), 1358 xs_html_attr("value", ntfy_server),
1359 xs_html_attr("placeholder", "ntfy server - full URL (example: https://ntfy.sh/YourTopic)")), 1359 xs_html_attr("placeholder", L("ntfy server - full URL (example: https://ntfy.sh/YourTopic)"))),
1360 xs_html_text(" "), 1360 xs_html_text(" "),
1361 xs_html_sctag("input", 1361 xs_html_sctag("input",
1362 xs_html_attr("type", "text"), 1362 xs_html_attr("type", "text"),
1363 xs_html_attr("name", "ntfy_token"), 1363 xs_html_attr("name", "ntfy_token"),
1364 xs_html_attr("value", ntfy_token), 1364 xs_html_attr("value", ntfy_token),
1365 xs_html_attr("placeholder", "ntfy token - if needed"))), 1365 xs_html_attr("placeholder", L("ntfy token - if needed")))),
1366 xs_html_tag("p", 1366 xs_html_tag("p",
1367 xs_html_text(L("Maximum days to keep posts (0: server settings):")), 1367 xs_html_text(L("Maximum days to keep posts (0: server settings):")),
1368 xs_html_sctag("br", NULL), 1368 xs_html_sctag("br", NULL),
@@ -2762,7 +2762,7 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
2762 xs_html_attr("href", url), 2762 xs_html_attr("href", url),
2763 xs_html_attr("class", "snac-list-link"), 2763 xs_html_attr("class", "snac-list-link"),
2764 xs_html_attr("title", L("Pinned posts")), 2764 xs_html_attr("title", L("Pinned posts")),
2765 xs_html_text("pinned")))); 2765 xs_html_text(L("pinned")))));
2766 } 2766 }
2767 2767
2768 { 2768 {
@@ -2774,7 +2774,7 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
2774 xs_html_attr("href", url), 2774 xs_html_attr("href", url),
2775 xs_html_attr("class", "snac-list-link"), 2775 xs_html_attr("class", "snac-list-link"),
2776 xs_html_attr("title", L("Bookmarked posts")), 2776 xs_html_attr("title", L("Bookmarked posts")),
2777 xs_html_text("bookmarks")))); 2777 xs_html_text(L("bookmarks")))));
2778 } 2778 }
2779 2779
2780 { 2780 {
@@ -2786,7 +2786,7 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
2786 xs_html_attr("href", url), 2786 xs_html_attr("href", url),
2787 xs_html_attr("class", "snac-list-link"), 2787 xs_html_attr("class", "snac-list-link"),
2788 xs_html_attr("title", L("Post drafts")), 2788 xs_html_attr("title", L("Post drafts")),
2789 xs_html_text("drafts")))); 2789 xs_html_text(L("drafts")))));
2790 } 2790 }
2791 2791
2792 /* the list of followed hashtags */ 2792 /* the list of followed hashtags */