1
0
Эх сурвалжийг харах

Merge pull request 'updates holen' (#10) from grunfink/snac2:master into master

Reviewed-on: https://codeberg.org/zen/snac2/pulls/10
Oliver 11 сар өмнө
parent
commit
eecfeec374
29 өөрчлөгдсөн 4654 нэмэгдсэн , 2566 устгасан
  1. 1 0
      README.md
  2. 19 1
      RELEASE_NOTES.md
  3. 2 2
      TODO.md
  4. 29 1
      activitypub.c
  5. 18 0
      artwork/susie.pbm
  6. 52 1
      data.c
  7. 3 1
      doc/snac.1
  8. 3 0
      doc/snac.8
  9. 71 8
      html.c
  10. 17 3
      httpd.c
  11. 11 0
      main.c
  12. 39 6
      mastoapi.c
  13. 201 181
      po/cs.po
  14. 201 181
      po/de_DE.po
  15. 201 181
      po/el_GR.po
  16. 201 181
      po/en.po
  17. 201 181
      po/es.po
  18. 201 181
      po/es_AR.po
  19. 201 181
      po/es_UY.po
  20. 201 181
      po/fi.po
  21. 201 181
      po/fr.po
  22. 782 0
      po/fy_NL.po
  23. 201 181
      po/it.po
  24. 781 0
      po/nl_NL.po
  25. 210 189
      po/pt_BR.po
  26. 201 181
      po/ru.po
  27. 201 181
      po/uk.po
  28. 201 181
      po/zh.po
  29. 3 1
      snac.h

+ 1 - 0
README.md

@@ -111,6 +111,7 @@ This will:
 - [How to run your own social network with snac (by Giacomo Tesio)](https://encrypted.tesio.it/2024/12/18/how-to-run-your-own-social-network.html). Includes information on how to run snac as a CGI.
 - [How to run your own social network with snac (by Giacomo Tesio)](https://encrypted.tesio.it/2024/12/18/how-to-run-your-own-social-network.html). Includes information on how to run snac as a CGI.
 - [Improving snac Performance with Nginx Proxy Cache (by Stefano Marinelli)](https://it-notes.dragas.net/2025/01/29/improving-snac-performance-with-nginx-proxy-cache/).
 - [Improving snac Performance with Nginx Proxy Cache (by Stefano Marinelli)](https://it-notes.dragas.net/2025/01/29/improving-snac-performance-with-nginx-proxy-cache/).
 - [Caching Snac Proxied Media With Nginx (by Stefano Marinelli)](https://it-notes.dragas.net/2025/02/08/caching-snac-proxied-media-with-nginx/).
 - [Caching Snac Proxied Media With Nginx (by Stefano Marinelli)](https://it-notes.dragas.net/2025/02/08/caching-snac-proxied-media-with-nginx/).
+- [A bit of lore about Susie, snac's default avatar](https://comam.es/snac/grunfink/p/1754553922.333170).
 
 
 ## Incredibly awesome CSS themes for snac
 ## Incredibly awesome CSS themes for snac
 
 

+ 19 - 1
RELEASE_NOTES.md

@@ -2,10 +2,28 @@
 
 
 ## UNRELEASED
 ## UNRELEASED
 
 
-Included a small tweak to avoid being confused by implementations that return valid webfinger queries for non-account URLs (like i.e. the Wordpress ActivityPub plugin in some configurations).
+The language in which a post is written can now be set from the UI; you must configure the list of languages you usually post in in the User Settings.
+
+Added Dutch (nl_NL) translation (contributed by martijndeb).
+
+Added Western Frisian (fy_NL) translation (contributed by martijndeb).
+
+Mastodon API: Fixed repeated entries in timelines.
+
+Added nodeinfo 2.1 support.
+
+## 2.81
+
+If the `propagate_local_purge` configuration variable is set to `true` in `server.json`, purged local posts generate a `Delete` activity that is sent everywhere, instead of only deleted from the filesystem.
+
+Included a small tweak to avoid being confused by implementations that return valid webfinger queries for non-account URLs (like i.e. the Wordpress ActivityPub plugin in some configurations). This helps in searching by URL.
 
 
 Added Ukrainian translation (contributed by wincentbalin).
 Added Ukrainian translation (contributed by wincentbalin).
 
 
+New command-line option `muted`, to list all MUTEd actors.
+
+Mastodon API: Fixed metadata and follower approval flag when editing the account.
+
 ## 2.80
 ## 2.80
 
 
 Mastodon API: fixed a regression (introduced in previous version in the "boosts disappear in Tusky" fix) that interrupted timelines.
 Mastodon API: fixed a regression (introduced in previous version in the "boosts disappear in Tusky" fix) that interrupted timelines.

+ 2 - 2
TODO.md

@@ -14,8 +14,6 @@ Important: deleting a follower should do more that just delete the object, see h
 
 
 ## Wishlist
 ## Wishlist
 
 
-The local purge should generate `Delete` activities for local posts.
-
 Add account reporting.
 Add account reporting.
 
 
 Add a list option to hide member posts from the main timeline, see https://codeberg.org/grunfink/snac2/issues/383
 Add a list option to hide member posts from the main timeline, see https://codeberg.org/grunfink/snac2/issues/383
@@ -381,3 +379,5 @@ The actual storage system wastes too much disk space (lots of small files that r
 Add command-line tools for creating and manipulating lists (2025-04-18T10:04:41+0200).
 Add command-line tools for creating and manipulating lists (2025-04-18T10:04:41+0200).
 
 
 Do a [Webmention](https://www.w3.org/TR/webmention/) to every link written in a post (2025-05-04T11:16:21+0200).
 Do a [Webmention](https://www.w3.org/TR/webmention/) to every link written in a post (2025-05-04T11:16:21+0200).
+
+The local purge should generate `Delete` activities for local posts (2025-07-25T18:55:16+0200).

+ 29 - 1
activitypub.c

@@ -1518,7 +1518,35 @@ xs_dict *msg_delete(snac *snac, const char *id)
     /* now create the Delete */
     /* now create the Delete */
     msg = msg_base(snac, "Delete", "@object", snac->actor, "@now", tomb);
     msg = msg_base(snac, "Delete", "@object", snac->actor, "@now", tomb);
 
 
-    msg = xs_dict_append(msg, "to", public_address);
+    xs *to = xs_list_new();
+    xs *involved = object_likes(id);
+    xs *boosts = object_announces(id);
+    xs *children = object_children(id);
+    const char *md5;
+
+    involved = xs_list_cat(involved, boosts);
+    involved = xs_list_cat(involved, children);
+
+    /* add everybody */
+    to = xs_list_append(to, public_address);
+
+    /* add actors that liked, boosted or replied to this */
+    xs_list_foreach(involved, md5) {
+        xs *actor = NULL;
+
+        if (valid_status(object_get_by_md5(md5, &actor))) {
+            const char *id = xs_dict_get(actor, "id");
+            const char *atto = get_atto(actor);
+
+            if (xs_is_string(atto))
+                to = xs_list_append(to, atto);
+            else
+            if (xs_is_string(id))
+                to = xs_list_append(to, id);
+        }
+    }
+
+    msg = xs_dict_append(msg, "to", to);
 
 
     return msg;
     return msg;
 }
 }

+ 18 - 0
artwork/susie.pbm

@@ -0,0 +1,18 @@
+P1
+16 16
+1111100110011111
+1111100011001111
+1111000000000111
+1111110000011011
+1110001000100011
+1111110000011111
+0101101000110111
+0101100000110111
+1000000000000011
+1100000000000011
+1100001111000011
+1110000110000101
+1111000000001001
+1011110000010010
+0011001111100000
+0001000001000000

+ 52 - 1
data.c

@@ -2041,7 +2041,7 @@ xs_str *_hidden_fn(snac *snac, const char *id)
 
 
 
 
 void hide(snac *snac, const char *id)
 void hide(snac *snac, const char *id)
-/* hides a message tree */
+/* hides an object and its children (if it's a post) */
 {
 {
     xs *fn = _hidden_fn(snac, id);
     xs *fn = _hidden_fn(snac, id);
     FILE *f;
     FILE *f;
@@ -2081,6 +2081,14 @@ int is_hidden(snac *snac, const char *id)
 }
 }
 
 
 
 
+int unhide(snac *user, const char *id)
+/* unhides an object */
+{
+    xs *fn = _hidden_fn(user, id);
+    return unlink(fn);
+}
+
+
 int actor_add(const char *actor, const xs_dict *msg)
 int actor_add(const char *actor, const xs_dict *msg)
 /* adds an actor */
 /* adds an actor */
 {
 {
@@ -2976,11 +2984,14 @@ xs_list *content_search(snac *user, const char *regex,
         xs *c = xs_str_new(NULL);
         xs *c = xs_str_new(NULL);
         const char *content = xs_dict_get(post, "content");
         const char *content = xs_dict_get(post, "content");
         const char *name    = xs_dict_get(post, "name");
         const char *name    = xs_dict_get(post, "name");
+        const char *atto    = get_atto(post);
 
 
         if (!xs_is_null(content))
         if (!xs_is_null(content))
             c = xs_str_cat(c, content);
             c = xs_str_cat(c, content);
         if (!xs_is_null(name))
         if (!xs_is_null(name))
             c = xs_str_cat(c, " ", name);
             c = xs_str_cat(c, " ", name);
+        if (!xs_is_null(atto))
+            c = xs_str_cat(c, " ", atto);
 
 
         /* add alt-texts from attachments */
         /* add alt-texts from attachments */
         const xs_list *atts = xs_dict_get(post, "attachment");
         const xs_list *atts = xs_dict_get(post, "attachment");
@@ -3840,6 +3851,43 @@ void purge_server(void)
 }
 }
 
 
 
 
+void delete_purged_posts(snac *user, int days)
+/* enqueues Delete activities for local purged messages */
+{
+    if (days == 0)
+        return;
+
+    time_t mt = time(NULL) - days * 24 * 3600;
+    xs *spec  = xs_fmt("%s/public/" "*.json", user->basedir);
+    xs *list  = xs_glob(spec, 0, 0);
+    const char *v;
+
+    xs_list_foreach(list, v) {
+        if (mtime(v) < mt) {
+            /* to be purged; is it a Note by us? */
+            FILE *f;
+
+            if ((f = fopen(v, "r")) != NULL) {
+                xs *msg = xs_json_load(f);
+                fclose(f);
+
+                if (xs_is_dict(msg)) {
+                    const char *id = xs_dict_get(msg, "id");
+
+                    if (xs_is_string(id) && xs_startswith(id, user->actor)) {
+                        xs *d_msg = msg_delete(user, id);
+
+                        enqueue_message(user, d_msg);
+
+                        snac_log(user, xs_fmt("enqueued Delete for purged message %s", id));
+                    }
+                }
+            }
+        }
+    }
+}
+
+
 void purge_user(snac *snac)
 void purge_user(snac *snac)
 /* do the purge for this user */
 /* do the purge for this user */
 {
 {
@@ -3863,6 +3911,9 @@ void purge_user(snac *snac)
             pub_days = user_days;
             pub_days = user_days;
     }
     }
 
 
+    if (xs_is_true(xs_dict_get(srv_config, "propagate_local_purge")))
+        delete_purged_posts(snac, pub_days);
+
     _purge_user_subdir(snac, "hidden",  priv_days);
     _purge_user_subdir(snac, "hidden",  priv_days);
     _purge_user_subdir(snac, "private", priv_days);
     _purge_user_subdir(snac, "private", priv_days);
 
 

+ 3 - 1
doc/snac.1

@@ -152,7 +152,9 @@ what the administrator defined in the global server settings
 only if it's lesser (i.e. you cannot keep posts for longer
 only if it's lesser (i.e. you cannot keep posts for longer
 than what the admin desires). A value of 0 (the default) means
 than what the admin desires). A value of 0 (the default) means
 that the global server settings will apply to the posts in your
 that the global server settings will apply to the posts in your
-timeline.
+timeline. Also, if the administrator has configured it,
+purged local posts generate a Delete activity that is sent
+everywhere.
 .It Drop direct messages from people you don't follow
 .It Drop direct messages from people you don't follow
 Just what it says in the tin. This is to mitigate spammers
 Just what it says in the tin. This is to mitigate spammers
 coming from Fediverse instances with lax / open registration
 coming from Fediverse instances with lax / open registration

+ 3 - 0
doc/snac.8

@@ -169,6 +169,9 @@ fill up with old crap and finally burst in flames, you can disable
 purging by setting this to 0.
 purging by setting this to 0.
 .It Ic local_purge_days
 .It Ic local_purge_days
 Same as before, but for the user-generated entries in the local timeline.
 Same as before, but for the user-generated entries in the local timeline.
+.It Ic propagate_local_purge
+If this value is set to true, a Delete activity is generated for every
+purged local post and sent everywhere.
 .It Ic cssurls
 .It Ic cssurls
 This is a list of URLs to CSS files that will be inserted, in this order,
 This is a list of URLs to CSS files that will be inserted, in this order,
 in the HTML before the user CSS. Use these files to configure the global
 in the HTML before the user CSS. Use these files to configure the global

+ 71 - 8
html.c

@@ -368,7 +368,8 @@ xs_html *html_note(snac *user, const char *summary,
                    const xs_val *mnt_only, const char *redir,
                    const xs_val *mnt_only, const char *redir,
                    const char *in_reply_to, int poll,
                    const char *in_reply_to, int poll,
                    const xs_list *att_files, const xs_list *att_alt_texts,
                    const xs_list *att_files, const xs_list *att_alt_texts,
-                   int is_draft, const char *published)
+                   int is_draft, const char *published,
+                   const char *note_lang)
 /* Yes, this is a FUCKTON of arguments and I'm a bit embarrased */
 /* Yes, this is a FUCKTON of arguments and I'm a bit embarrased */
 {
 {
     xs *action = xs_fmt("%s/admin/note", user->actor);
     xs *action = xs_fmt("%s/admin/note", user->actor);
@@ -458,6 +459,40 @@ xs_html *html_note(snac *user, const char *summary,
                 xs_html_attr("name", "is_draft"),
                 xs_html_attr("name", "is_draft"),
                 xs_html_attr(is_draft ? "checked" : "", NULL))));
                 xs_html_attr(is_draft ? "checked" : "", NULL))));
 
 
+    const char *post_langs = xs_dict_get(user->config, "post_langs");
+
+    if (xs_is_string(post_langs) && *post_langs) {
+        xs *ll = xs_split(post_langs, " ");
+        const char *lang;
+
+        xs_html *post_lang = xs_html_tag("select",
+            xs_html_attr("name", "post_lang"));
+
+        xs_list_foreach(ll, lang) {
+            if (*lang) {
+                if (xs_is_string(note_lang) && strcmp(lang, note_lang) == 0) {
+                    xs_html_add(post_lang,
+                        xs_html_tag("option",
+                            xs_html_text(lang),
+                            xs_html_attr("selected", NULL),
+                            xs_html_attr("value", lang)));
+                }
+                else {
+                    xs_html_add(post_lang,
+                        xs_html_tag("option",
+                            xs_html_text(lang),
+                            xs_html_attr("value", lang)));
+                }
+            }
+        }
+
+        xs_html_add(form,
+            xs_html_tag("p", NULL),
+            xs_html_text(L("Language:")),
+            xs_html_text(" "),
+            post_lang);
+    }
+
     /* post date and time */
     /* post date and time */
     xs *post_date = NULL;
     xs *post_date = NULL;
     xs *post_time = NULL;
     xs *post_time = NULL;
@@ -1202,7 +1237,7 @@ xs_html *html_top_controls(snac *user)
             NULL, NULL,
             NULL, NULL,
             xs_stock(XSTYPE_FALSE), "",
             xs_stock(XSTYPE_FALSE), "",
             xs_stock(XSTYPE_FALSE), NULL,
             xs_stock(XSTYPE_FALSE), NULL,
-            NULL, 1, NULL, NULL, 0, NULL),
+            NULL, 1, NULL, NULL, 0, NULL, NULL),
 
 
         /** operations **/
         /** operations **/
         xs_html_tag("details",
         xs_html_tag("details",
@@ -1311,6 +1346,7 @@ xs_html *html_top_controls(snac *user)
     const char *latitude     = xs_dict_get_def(user->config, "latitude", "");
     const char *latitude     = xs_dict_get_def(user->config, "latitude", "");
     const char *longitude    = xs_dict_get_def(user->config, "longitude", "");
     const char *longitude    = xs_dict_get_def(user->config, "longitude", "");
     const char *webhook      = xs_dict_get_def(user->config, "notify_webhook", "");
     const char *webhook      = xs_dict_get_def(user->config, "notify_webhook", "");
+    const char *post_langs   = xs_dict_get_def(user->config, "post_langs", "");
 
 
     xs *metadata = NULL;
     xs *metadata = NULL;
     const xs_dict *md = xs_dict_get(user->config, "metadata");
     const xs_dict *md = xs_dict_get(user->config, "metadata");
@@ -1586,6 +1622,15 @@ xs_html *html_top_controls(snac *user)
                     xs_html_sctag("br", NULL),
                     xs_html_sctag("br", NULL),
                     tz_select),
                     tz_select),
 
 
+                xs_html_tag("p",
+                    xs_html_text(L("Languages you usually post in:")),
+                    xs_html_sctag("br", NULL),
+                    xs_html_sctag("input",
+                        xs_html_attr("type", "next"),
+                        xs_html_attr("name", "post_langs"),
+                        xs_html_attr("value", post_langs),
+                        xs_html_attr("placeholder", L("en fr es de_AT")))),
+
                 xs_html_tag("p",
                 xs_html_tag("p",
                     xs_html_text(L("New password:")),
                     xs_html_text(L("New password:")),
                     xs_html_sctag("br", NULL),
                     xs_html_sctag("br", NULL),
@@ -1888,6 +1933,15 @@ xs_html *html_entry_controls(snac *user, const char *actor,
             }
             }
         }
         }
 
 
+        const char *note_lang = NULL;
+        const xs_dict *cmap = xs_dict_get(msg, "contentMap");
+        if (xs_is_dict(cmap)) {
+            const char *dummy;
+            int c = 0;
+
+            xs_dict_next(cmap, &note_lang, &dummy, &c);
+        }
+
         xs_html_add(controls, xs_html_tag("div",
         xs_html_add(controls, xs_html_tag("div",
             xs_html_tag("p", NULL),
             xs_html_tag("p", NULL),
             html_note(user, L("Edit..."),
             html_note(user, L("Edit..."),
@@ -1897,7 +1951,7 @@ xs_html *html_entry_controls(snac *user, const char *actor,
                 xs_dict_get(msg, "sensitive"), xs_dict_get(msg, "summary"),
                 xs_dict_get(msg, "sensitive"), xs_dict_get(msg, "summary"),
                 xs_stock(is_msg_public(msg) ? XSTYPE_FALSE : XSTYPE_TRUE), redir,
                 xs_stock(is_msg_public(msg) ? XSTYPE_FALSE : XSTYPE_TRUE), redir,
                 NULL, 0, att_files, att_alt_texts, is_draft(user, id),
                 NULL, 0, att_files, att_alt_texts, is_draft(user, id),
-                xs_dict_get(msg, "published"))),
+                xs_dict_get(msg, "published"), note_lang)),
             xs_html_tag("p", NULL));
             xs_html_tag("p", NULL));
     }
     }
 
 
@@ -1916,7 +1970,7 @@ xs_html *html_entry_controls(snac *user, const char *actor,
                 NULL, NULL,
                 NULL, NULL,
                 xs_dict_get(msg, "sensitive"), xs_dict_get(msg, "summary"),
                 xs_dict_get(msg, "sensitive"), xs_dict_get(msg, "summary"),
                 xs_stock(is_msg_public(msg) ? XSTYPE_FALSE : XSTYPE_TRUE), redir,
                 xs_stock(is_msg_public(msg) ? XSTYPE_FALSE : XSTYPE_TRUE), redir,
-                id, 0, NULL, NULL, 0, NULL)),
+                id, 0, NULL, NULL, 0, NULL, NULL)),
             xs_html_tag("p", NULL));
             xs_html_tag("p", NULL));
     }
     }
 
 
@@ -2855,7 +2909,7 @@ xs_html *html_footer(const snac *user)
             xs_html_attr("href", WHAT_IS_SNAC_URL),
             xs_html_attr("href", WHAT_IS_SNAC_URL),
             xs_html_tag("abbr",
             xs_html_tag("abbr",
                 xs_html_attr("title", "Social Networks Are Crap"),
                 xs_html_attr("title", "Social Networks Are Crap"),
-                xs_html_text("snac"))));
+                xs_html_text(USER_AGENT))));
 }
 }
 
 
 
 
@@ -3002,7 +3056,13 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
             const char *ht;
             const char *ht;
 
 
             xs_list_foreach(followed_hashtags, ht) {
             xs_list_foreach(followed_hashtags, ht) {
-                xs *url = xs_fmt("%s/admin?q=%s", user->actor, ht);
+                xs *url = NULL;
+
+                if (!xs_startswith(ht, "https:/""/"))
+                    url = xs_fmt("%s/admin?q=%s", user->actor, ht);
+                else
+                    url = xs_dup(ht);
+
                 url = xs_replace_i(url, "#", "%23");
                 url = xs_replace_i(url, "#", "%23");
 
 
                 xs_html_add(loht,
                 xs_html_add(loht,
@@ -3298,7 +3358,7 @@ xs_html *html_people_list(snac *user, xs_list *list, const char *header, const c
                     NULL, actor_id,
                     NULL, actor_id,
                     xs_stock(XSTYPE_FALSE), "",
                     xs_stock(XSTYPE_FALSE), "",
                     xs_stock(XSTYPE_FALSE), NULL,
                     xs_stock(XSTYPE_FALSE), NULL,
-                    NULL, 0, NULL, NULL, 0, NULL),
+                    NULL, 0, NULL, NULL, 0, NULL, NULL),
                 xs_html_tag("p", NULL));
                 xs_html_tag("p", NULL));
 
 
             xs_html_add(snac_post, snac_controls);
             xs_html_add(snac_post, snac_controls);
@@ -4384,6 +4444,7 @@ int html_post_handler(const xs_dict *req, const char *q_path,
         const char *edit_id      = xs_dict_get(p_vars, "edit_id");
         const char *edit_id      = xs_dict_get(p_vars, "edit_id");
         const char *post_date    = xs_dict_get_def(p_vars, "post_date", "");
         const char *post_date    = xs_dict_get_def(p_vars, "post_date", "");
         const char *post_time    = xs_dict_get_def(p_vars, "post_time", "");
         const char *post_time    = xs_dict_get_def(p_vars, "post_time", "");
+        const char *post_lang    = xs_dict_get(p_vars, "post_lang");
         int priv             = !xs_is_null(xs_dict_get(p_vars, "mentioned_only"));
         int priv             = !xs_is_null(xs_dict_get(p_vars, "mentioned_only"));
         int store_as_draft   = !xs_is_null(xs_dict_get(p_vars, "is_draft"));
         int store_as_draft   = !xs_is_null(xs_dict_get(p_vars, "is_draft"));
         xs *attach_list      = xs_list_new();
         xs *attach_list      = xs_list_new();
@@ -4467,7 +4528,7 @@ int html_post_handler(const xs_dict *req, const char *q_path,
                 enqueue_close_question(&snac, xs_dict_get(msg, "id"), end_secs);
                 enqueue_close_question(&snac, xs_dict_get(msg, "id"), end_secs);
             }
             }
             else
             else
-                msg = msg_note(&snac, content_2, to, in_reply_to, attach_list, priv, NULL, NULL);
+                msg = msg_note(&snac, content_2, to, in_reply_to, attach_list, priv, post_lang, NULL);
 
 
             if (sensitive != NULL) {
             if (sensitive != NULL) {
                 msg = xs_dict_set(msg, "sensitive", xs_stock(XSTYPE_TRUE));
                 msg = xs_dict_set(msg, "sensitive", xs_stock(XSTYPE_TRUE));
@@ -4873,6 +4934,8 @@ int html_post_handler(const xs_dict *req, const char *q_path,
             snac.config = xs_dict_set(snac.config, "lang", v);
             snac.config = xs_dict_set(snac.config, "lang", v);
         if ((v = xs_dict_get(p_vars, "tz")) != NULL)
         if ((v = xs_dict_get(p_vars, "tz")) != NULL)
             snac.config = xs_dict_set(snac.config, "tz", v);
             snac.config = xs_dict_set(snac.config, "tz", v);
+        if ((v = xs_dict_get(p_vars, "post_langs")) != NULL)
+            snac.config = xs_dict_set(snac.config, "post_langs", v);
 
 
         snac.config = xs_dict_set(snac.config, "latitude", xs_dict_get_def(p_vars, "latitude", ""));
         snac.config = xs_dict_set(snac.config, "latitude", xs_dict_get_def(p_vars, "latitude", ""));
         snac.config = xs_dict_set(snac.config, "longitude", xs_dict_get_def(p_vars, "longitude", ""));
         snac.config = xs_dict_set(snac.config, "longitude", xs_dict_get_def(p_vars, "longitude", ""));

+ 17 - 3
httpd.c

@@ -283,9 +283,10 @@ int server_get_handler(xs_dict *req, const char *q_path,
         status = HTTP_STATUS_OK;
         status = HTTP_STATUS_OK;
         *ctype = "application/json; charset=utf-8";
         *ctype = "application/json; charset=utf-8";
         *body  = xs_fmt("{\"links\":["
         *body  = xs_fmt("{\"links\":["
-            "{\"rel\":\"http:/" "/nodeinfo.diaspora.software/ns/schema/2.0\","
-            "\"href\":\"%s/nodeinfo_2_0\"}]}",
-            srv_baseurl);
+            "{\"rel\":\"http:/" "/nodeinfo.diaspora.software/ns/schema/2.0\",\"href\":\"%s/nodeinfo_2_0\"},"
+            "{\"rel\":\"http:/" "/nodeinfo.diaspora.software/ns/schema/2.1\",\"href\":\"%s/nodeinfo_2_1\"}"
+            "]}",
+            srv_baseurl, srv_baseurl);
     }
     }
     else
     else
     if (strcmp(q_path, "/.well-known/host-meta") == 0) {
     if (strcmp(q_path, "/.well-known/host-meta") == 0) {
@@ -303,6 +304,19 @@ int server_get_handler(xs_dict *req, const char *q_path,
         *body  = nodeinfo_2_0();
         *body  = nodeinfo_2_0();
     }
     }
     else
     else
+    if (strcmp(q_path, "/nodeinfo_2_1") == 0) {
+        xs *s = nodeinfo_2_0();
+        xs *j = xs_json_loads(s);
+
+        j = xs_dict_set(j, "version", "2.1");
+        j = xs_dict_set_path(j, "software.repository", WHAT_IS_SNAC_URL);
+        j = xs_dict_set_path(j, "software.homepage", SNAC_DOC_URL);
+
+        status = HTTP_STATUS_OK;
+        *ctype = "application/json; charset=utf-8";
+        *body  = xs_json_dumps(j, 4);
+    }
+    else
     if (strcmp(q_path, "/robots.txt") == 0) {
     if (strcmp(q_path, "/robots.txt") == 0) {
         status = HTTP_STATUS_OK;
         status = HTTP_STATUS_OK;
         *ctype = "text/plain";
         *ctype = "text/plain";

+ 11 - 0
main.c

@@ -56,6 +56,7 @@ int usage(const char *cmd)
         "unblock {basedir} {instance_url}     Unblocks a full instance\n"
         "unblock {basedir} {instance_url}     Unblocks a full instance\n"
         "limit {basedir} {uid} {actor}        Limits an actor (drops their announces)\n"
         "limit {basedir} {uid} {actor}        Limits an actor (drops their announces)\n"
         "unlimit {basedir} {uid} {actor}      Unlimits an actor\n"
         "unlimit {basedir} {uid} {actor}      Unlimits an actor\n"
+        "muted {basedir} {uid}                Lists the muted actors\n"
         "unmute {basedir} {uid} {actor}       Unmutes a previously muted actor\n"
         "unmute {basedir} {uid} {actor}       Unmutes a previously muted actor\n"
         "verify_links {basedir} {uid}         Verifies a user's links (in the metadata)\n"
         "verify_links {basedir} {uid}         Verifies a user's links (in the metadata)\n"
         "search {basedir} {uid} {regex}       Searches posts by content\n"
         "search {basedir} {uid} {regex}       Searches posts by content\n"
@@ -335,6 +336,16 @@ int main(int argc, char *argv[])
         return 0;
         return 0;
     }
     }
 
 
+    if (strcmp(cmd, "muted") == 0) { /** **/
+        xs *l = muted_list(&snac);
+        const char *v;
+
+        xs_list_foreach(l, v)
+            printf("%s\n", v);
+
+        return 0;
+    }
+
     if ((url = GET_ARGV()) == NULL)
     if ((url = GET_ARGV()) == NULL)
         return usage(cmd);
         return usage(cmd);
 
 

+ 39 - 6
mastoapi.c

@@ -1271,8 +1271,31 @@ void credentials_get(char **body, char **ctype, int *status, snac snac)
     acct = xs_dict_append(acct, "header", header);
     acct = xs_dict_append(acct, "header", header);
     acct = xs_dict_append(acct, "header_static", header);
     acct = xs_dict_append(acct, "header_static", header);
 
 
-    const xs_dict *metadata = xs_dict_get(snac.config, "metadata");
-    if (xs_type(metadata) == XSTYPE_DICT) {
+    xs *metadata = NULL;
+    const xs_dict *md = xs_dict_get(snac.config, "metadata");
+
+    if (xs_is_dict(md))
+        metadata = xs_dup(md);
+    else
+    if (xs_is_string(md)) {
+        metadata = xs_dict_new();
+        xs *l = xs_split(md, "\n");
+        const char *ll;
+
+        xs_list_foreach(l, ll) {
+            xs *kv = xs_split_n(ll, "=", 1);
+            const char *k = xs_list_get(kv, 0);
+            const char *v = xs_list_get(kv, 1);
+
+            if (k && v) {
+                xs *kk = xs_strip_i(xs_dup(k));
+                xs *vv = xs_strip_i(xs_dup(v));
+                metadata = xs_dict_set(metadata, kk, vv);
+            }
+        }
+    }
+
+    if (xs_is_dict(metadata)) {
         xs *fields = xs_list_new();
         xs *fields = xs_list_new();
         const xs_str *k;
         const xs_str *k;
         const xs_str *v;
         const xs_str *v;
@@ -1374,6 +1397,9 @@ xs_list *mastoapi_timeline(snac *user, const xs_dict *args, const char *index_fn
         initial_status = index_desc_first(f, md5, 0);
         initial_status = index_desc_first(f, md5, 0);
     }
     }
 
 
+    xs_set entries;
+    xs_set_init(&entries);
+
     if (initial_status) {
     if (initial_status) {
         do {
         do {
             xs *msg = NULL;
             xs *msg = NULL;
@@ -1465,7 +1491,7 @@ xs_list *mastoapi_timeline(snac *user, const xs_dict *args, const char *index_fn
             /* convert the Note into a Mastodon status */
             /* convert the Note into a Mastodon status */
             xs *st = mastoapi_status(user, msg);
             xs *st = mastoapi_status(user, msg);
 
 
-            if (st != NULL) {
+            if (st != NULL && xs_set_add(&entries, md5) == 1) {
                 if (ascending)
                 if (ascending)
                     out = xs_list_insert(out, 0, st);
                     out = xs_list_insert(out, 0, st);
                 else
                 else
@@ -1476,6 +1502,8 @@ xs_list *mastoapi_timeline(snac *user, const xs_dict *args, const char *index_fn
         } while ((cnt < limit) && (*iterator)(f, md5));
         } while ((cnt < limit) && (*iterator)(f, md5));
     }
     }
 
 
+    xs_set_free(&entries);
+
     int more = index_desc_next(f, md5);
     int more = index_desc_next(f, md5);
 
 
     fclose(f);
     fclose(f);
@@ -2112,7 +2140,7 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
     }
     }
     else
     else
     if (strcmp(cmd, "/v1/scheduled_statuses") == 0) { /** **/
     if (strcmp(cmd, "/v1/scheduled_statuses") == 0) { /** **/
-        /* snac does not schedule notes */
+        /* TBD */
         *body  = xs_dup("[]");
         *body  = xs_dup("[]");
         *ctype = "application/json";
         *ctype = "application/json";
         status = HTTP_STATUS_OK;
         status = HTTP_STATUS_OK;
@@ -2477,6 +2505,7 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
     }
     }
     else
     else
     if (strcmp(cmd, "/v1/preferences") == 0) { /** **/
     if (strcmp(cmd, "/v1/preferences") == 0) { /** **/
+        /* TBD */
         *body  = xs_dup("{}");
         *body  = xs_dup("{}");
         *ctype = "application/json";
         *ctype = "application/json";
         status = HTTP_STATUS_OK;
         status = HTTP_STATUS_OK;
@@ -3689,7 +3718,7 @@ int mastoapi_patch_handler(const xs_dict *req, const char *q_path,
     snac snac = {0};
     snac snac = {0};
     int logged_in = process_auth_token(&snac, req);
     int logged_in = process_auth_token(&snac, req);
 
 
-    if (xs_startswith(cmd, "/v1/accounts/update_credentials")) {
+    if (xs_startswith(cmd, "/v1/accounts/update_credentials")) { /** **/
         /* Update user profile fields */
         /* Update user profile fields */
         if (logged_in) {
         if (logged_in) {
             int c = 0;
             int c = 0;
@@ -3745,9 +3774,13 @@ int mastoapi_patch_handler(const xs_dict *req, const char *q_path,
                         snac.config = xs_dict_set(snac.config, "metadata", new_fields);
                         snac.config = xs_dict_set(snac.config, "metadata", new_fields);
                     }
                     }
                 }
                 }
+                else
+                if (strcmp(k, "locked") == 0) {
+                    snac.config = xs_dict_set(snac.config, "approve_followers",
+                        xs_stock(strcmp(v, "true") == 0 ? XSTYPE_TRUE : XSTYPE_FALSE));
+                }
                 /* we don't have support for the following options, yet
                 /* we don't have support for the following options, yet
                    - discoverable (0/1)
                    - discoverable (0/1)
-                   - locked (0/1)
                  */
                  */
             }
             }
 
 

+ 201 - 181
po/cs.po

@@ -8,695 +8,695 @@ msgstr ""
 "Language: cs\n"
 "Language: cs\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Citlivý obsah: "
 msgstr "Citlivý obsah: "
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Varování k citlivému obsahu"
 msgstr "Varování k citlivému obsahu"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Pouze pro zmíněné osoby:"
 msgstr "Pouze pro zmíněné osoby:"
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Odpovědět na (URL):"
 msgstr "Odpovědět na (URL):"
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "Nesdílet, pouze uložit do rozepsaných"
 msgstr "Nesdílet, pouze uložit do rozepsaných"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Rozepsané:"
 msgstr "Rozepsané:"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Přílohy..."
 msgstr "Přílohy..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Soubor:"
 msgstr "Soubor:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Pro smazání přilohy vymažte toto pole"
 msgstr "Pro smazání přilohy vymažte toto pole"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Popisek přílohy"
 msgstr "Popisek přílohy"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Anketa..."
 msgstr "Anketa..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Možnosti ankety (jedna na řádek, max 8):"
 msgstr "Možnosti ankety (jedna na řádek, max 8):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Vyber jednu"
 msgstr "Vyber jednu"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Vyber více možností"
 msgstr "Vyber více možností"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Konec za 5 minut"
 msgstr "Konec za 5 minut"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Konec za 1 hodinu"
 msgstr "Konec za 1 hodinu"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Konec za 1 den"
 msgstr "Konec za 1 den"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Poslat"
 msgstr "Poslat"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Popisek stránky"
 msgstr "Popisek stránky"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Email administrátora"
 msgstr "Email administrátora"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Účet adminitrátora"
 msgstr "Účet adminitrátora"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d sledovaných, %d sledujících"
 msgstr "%d sledovaných, %d sledujících"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "soukromé"
 msgstr "soukromé"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "veřejné"
 msgstr "veřejné"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "upozornění"
 msgstr "upozornění"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "lidé"
 msgstr "lidé"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "instance"
 msgstr "instance"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
 msgstr ""
 msgstr ""
 "Vyhledejte příspěvek podle URL (regex), @uživatel@instance účtu, nebo #tagu"
 "Vyhledejte příspěvek podle URL (regex), @uživatel@instance účtu, nebo #tagu"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Hledání obsahu"
 msgstr "Hledání obsahu"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "ověřený odkaz"
 msgstr "ověřený odkaz"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Místo: "
 msgstr "Místo: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Nový příspěvek..."
 msgstr "Nový příspěvek..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "Co se vám honí hlavou?"
 msgstr "Co se vám honí hlavou?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Operace..."
 msgstr "Operace..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Sledovat"
 msgstr "Sledovat"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(podle URL nebo @uživatel@instance)"
 msgstr "(podle URL nebo @uživatel@instance)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Boostit"
 msgstr "Boostit"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(podle URL)"
 msgstr "(podle URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Líbí"
 msgstr "Líbí"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Nastavení..."
 msgstr "Nastavení..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Jméno:"
 msgstr "Jméno:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Vaše jméno"
 msgstr "Vaše jméno"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Avatar: "
 msgstr "Avatar: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Smazat současný avatar"
 msgstr "Smazat současný avatar"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Obrázek v záhlaví profilu: "
 msgstr "Obrázek v záhlaví profilu: "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Smazat současný obrázek v záhlaví"
 msgstr "Smazat současný obrázek v záhlaví"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Bio:"
 msgstr "Bio:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Napište sem něco o sobě..."
 msgstr "Napište sem něco o sobě..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Vždy zobrazit příspěvky s varováním o citlivém obsahu"
 msgstr "Vždy zobrazit příspěvky s varováním o citlivém obsahu"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Emailová adresa pro upozornění"
 msgstr "Emailová adresa pro upozornění"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Upozornění na Telegram (bot klíč a chat id):"
 msgstr "Upozornění na Telegram (bot klíč a chat id):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "ntfy notifikace (ntfy server a token):"
 msgstr "ntfy notifikace (ntfy server a token):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr "Životnost příspěvků ve dnech (0: nastavení serveru):"
 msgstr "Životnost příspěvků ve dnech (0: nastavení serveru):"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Zahodit soukromé zprávy od lidí, které nesledujete"
 msgstr "Zahodit soukromé zprávy od lidí, které nesledujete"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Tenhle účet je robot"
 msgstr "Tenhle účet je robot"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Automaticky boostovat všechny zmíňky o tomto účtu"
 msgstr "Automaticky boostovat všechny zmíňky o tomto účtu"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr ""
 msgstr ""
 "Tento účet je soukromý (příspěvky nejsou zobrazitelné napříč internetem)"
 "Tento účet je soukromý (příspěvky nejsou zobrazitelné napříč internetem)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Zobrazovat vlákna složená"
 msgstr "Zobrazovat vlákna složená"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Žádosti o sledování je nutno manuálně potvrdit"
 msgstr "Žádosti o sledování je nutno manuálně potvrdit"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Zobraz údaje o počtu sledovaných a sledujících"
 msgstr "Zobraz údaje o počtu sledovaných a sledujících"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Geolokace:"
 msgstr "Geolokace:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Metadata profilu (klíč=hodnota na jeden řádek):"
 msgstr "Metadata profilu (klíč=hodnota na jeden řádek):"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Jazyk rozhraní:"
 msgstr "Jazyk rozhraní:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Nové heslo:"
 msgstr "Nové heslo:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Zopakujte nové heslo:"
 msgstr "Zopakujte nové heslo:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Uložit"
 msgstr "Uložit"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Sledované hashtagy..."
 msgstr "Sledované hashtagy..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Jeden hashtag na řádek"
 msgstr "Jeden hashtag na řádek"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Aktualizovat hashtagy"
 msgstr "Aktualizovat hashtagy"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Dejte najevo, že se vám příspěvek líbí"
 msgstr "Dejte najevo, že se vám příspěvek líbí"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "Nelíbí"
 msgstr "Nelíbí"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Vlastně se mi to zas tak nelíbí"
 msgstr "Vlastně se mi to zas tak nelíbí"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Odepnout"
 msgstr "Odepnout"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Odepnout tento příspěvek z vaší osy"
 msgstr "Odepnout tento příspěvek z vaší osy"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Připnout"
 msgstr "Připnout"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Připnout tento příspěvěk na začátek vaší osy"
 msgstr "Připnout tento příspěvěk na začátek vaší osy"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Ukázat tenhle příspěvek vašim sledujícím"
 msgstr "Ukázat tenhle příspěvek vašim sledujícím"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Odboostit"
 msgstr "Odboostit"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Boostit to byl blbej nápad"
 msgstr "Boostit to byl blbej nápad"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Zahodit"
 msgstr "Zahodit"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Odstraň tenhle příspěvěk ze svých záložek"
 msgstr "Odstraň tenhle příspěvěk ze svých záložek"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Uložit"
 msgstr "Uložit"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Uložit tenhle příspěvek mezi záložky"
 msgstr "Uložit tenhle příspěvek mezi záložky"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Přestat sledovat"
 msgstr "Přestat sledovat"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Přestat sledovat tohoto uživatele"
 msgstr "Přestat sledovat tohoto uživatele"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Začít sledovat tohoto uživatele"
 msgstr "Začít sledovat tohoto uživatele"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Přestat Sledovat Skupinu"
 msgstr "Přestat Sledovat Skupinu"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Přestat sledovat tuto skupinu nebo kanál"
 msgstr "Přestat sledovat tuto skupinu nebo kanál"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Sledovat Skupinu"
 msgstr "Sledovat Skupinu"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Začít sledovat tuto skupinu nebo kanál"
 msgstr "Začít sledovat tuto skupinu nebo kanál"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "ZTIŠIT"
 msgstr "ZTIŠIT"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Jednou provždy zablokovat všechno od tohoto uživatele"
 msgstr "Jednou provždy zablokovat všechno od tohoto uživatele"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Smazat"
 msgstr "Smazat"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Smazat tento příspěvek"
 msgstr "Smazat tento příspěvek"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Schovat"
 msgstr "Schovat"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Schovat tento příspěvek a příspěvky pod ním"
 msgstr "Schovat tento příspěvek a příspěvky pod ním"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Editovat..."
 msgstr "Editovat..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Odpovědět..."
 msgstr "Odpovědět..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Ořezáno (moc hluboké)"
 msgstr "Ořezáno (moc hluboké)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "sleduje vás"
 msgstr "sleduje vás"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Připnuto"
 msgstr "Připnuto"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Zazáložkováno"
 msgstr "Zazáložkováno"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Anketa"
 msgstr "Anketa"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Odhlasováno"
 msgstr "Odhlasováno"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Událost"
 msgstr "Událost"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "boostuje"
 msgstr "boostuje"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "odpověď pro"
 msgstr "odpověď pro"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr "[CITLIVÝ OBSAH]"
 msgstr "[CITLIVÝ OBSAH]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Hlasuj"
 msgstr "Hlasuj"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Uzavřeno"
 msgstr "Uzavřeno"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Končí za"
 msgstr "Končí za"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Video"
 msgstr "Video"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Audio"
 msgstr "Audio"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Příloha"
 msgstr "Příloha"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Popisek..."
 msgstr "Popisek..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Čas:"
 msgstr "Čas:"
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Starší..."
 msgstr "Starší..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "o této stránce"
 msgstr "o této stránce"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "pohání "
 msgstr "pohání "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Zahodit"
 msgstr "Zahodit"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Časová osa pro seznam '%s'"
 msgstr "Časová osa pro seznam '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Připnuté příspěvky"
 msgstr "Připnuté příspěvky"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Záložky"
 msgstr "Záložky"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Rozepsané příspěky"
 msgstr "Rozepsané příspěky"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "Nic víc nového"
 msgstr "Nic víc nového"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Zpátky nahoru"
 msgstr "Zpátky nahoru"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Historie"
 msgstr "Historie"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Více..."
 msgstr "Více..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Povolit boosty"
 msgstr "Povolit boosty"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Zobrazovat boosty od tohoto uživatele"
 msgstr "Zobrazovat boosty od tohoto uživatele"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Skrýt boosty"
 msgstr "Skrýt boosty"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Ztišit boosty od tohoto uživatele"
 msgstr "Ztišit boosty od tohoto uživatele"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Smazat tohoto užiatele"
 msgstr "Smazat tohoto užiatele"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Schválit"
 msgstr "Schválit"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Schválit žádost o sledování"
 msgstr "Schválit žádost o sledování"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Zahodit"
 msgstr "Zahodit"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Zahodit žádost o sledování"
 msgstr "Zahodit žádost o sledování"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Zrušit ztišení"
 msgstr "Zrušit ztišení"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Přestat blokovat tohoto uživatele"
 msgstr "Přestat blokovat tohoto uživatele"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Zablokovat všechno od tohoto uživatele"
 msgstr "Zablokovat všechno od tohoto uživatele"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Soukomá zpráva..."
 msgstr "Soukomá zpráva..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Dosud nepotvrzené žádosti o sledování"
 msgstr "Dosud nepotvrzené žádosti o sledování"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Lidé, které sledujete"
 msgstr "Lidé, které sledujete"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Lidé, kteří vás sledují"
 msgstr "Lidé, kteří vás sledují"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Smazat vše"
 msgstr "Smazat vše"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Zmínil vás"
 msgstr "Zmínil vás"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Ukončená anketa"
 msgstr "Ukončená anketa"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Žádost o sledování"
 msgstr "Žádost o sledování"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Kontext"
 msgstr "Kontext"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Nové"
 msgstr "Nové"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Zobrazeno dříve"
 msgstr "Zobrazeno dříve"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Nic"
 msgstr "Nic"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Výsledky vyhledávání účtu %s"
 msgstr "Výsledky vyhledávání účtu %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "Účet %s nenalezen"
 msgstr "Účet %s nenalezen"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Výsledky k tagu %s"
 msgstr "Výsledky k tagu %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "Nic k tagu %s"
 msgstr "Nic k tagu %s"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Výsledky vyhledávání pro '%s' (může toho být víc)"
 msgstr "Výsledky vyhledávání pro '%s' (může toho být víc)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Výsledky vyhledávání pro '%s'"
 msgstr "Výsledky vyhledávání pro '%s'"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "Nic víc pro '%s'"
 msgstr "Nic víc pro '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "Žádný výsledek pro '%s'"
 msgstr "Žádný výsledek pro '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Časová osa místní instance"
 msgstr "Časová osa místní instance"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Časová osa pro seznam '%s'"
 msgstr "Časová osa pro seznam '%s'"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Výsledky vyhledávání tagu #%s"
 msgstr "Výsledky vyhledávání tagu #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Nedávné příspěvky od uživatelů této instance"
 msgstr "Nedávné příspěvky od uživatelů této instance"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Blokované hashtagy..."
 msgstr "Blokované hashtagy..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "URL adresa příspěvku, na který odpovědět"
 msgstr "URL adresa příspěvku, na který odpovědět"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -708,54 +708,74 @@ msgstr ""
 "Možnost 3...\n"
 "Možnost 3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "API klíč Bota"
 msgstr "API klíč Bota"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "Chat id"
 msgstr "Chat id"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "ntfy server - celá URL adresa (např: https://ntfy.sh/VaseTema)"
 msgstr "ntfy server - celá URL adresa (např: https://ntfy.sh/VaseTema)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "ntfy token - pokud je zapotřebí"
 msgstr "ntfy token - pokud je zapotřebí"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "připnuté"
 msgstr "připnuté"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "záložky"
 msgstr "záložky"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "rozepsané"
 msgstr "rozepsané"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr "Naplánovat příspěvek..."
 msgstr "Naplánovat příspěvek..."
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr "Den a čas:"
 msgstr "Den a čas:"
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr "Naplánované příspěvky"
 msgstr "Naplánované příspěvky"
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr "naplánované příspěvky"
 msgstr "naplánované příspěvky"
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr "Den a čas (časové pásmo: %s)"
 msgstr "Den a čas (časové pásmo: %s)"
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr "Časové pásmo:"
 msgstr "Časové pásmo:"
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/de_DE.po

@@ -7,120 +7,120 @@ msgstr ""
 "Language: de_DE\n"
 "Language: de_DE\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Sensibler Inhalt: "
 msgstr "Sensibler Inhalt: "
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Beschreibung des sensiblen Inhalts"
 msgstr "Beschreibung des sensiblen Inhalts"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Nur für erwähnte Personen: "
 msgstr "Nur für erwähnte Personen: "
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Antwort an (URL): "
 msgstr "Antwort an (URL): "
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "Nicht senden, aber als Entwurf speichern"
 msgstr "Nicht senden, aber als Entwurf speichern"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Entwurf: "
 msgstr "Entwurf: "
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Anhänge..."
 msgstr "Anhänge..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Datei:"
 msgstr "Datei:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Feld löschen, um den Anhang zu löschen"
 msgstr "Feld löschen, um den Anhang zu löschen"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Beschreibung des Anhangs"
 msgstr "Beschreibung des Anhangs"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Umfrage..."
 msgstr "Umfrage..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Umfrageoptionen (eine pro Zeile, bis zu 8):"
 msgstr "Umfrageoptionen (eine pro Zeile, bis zu 8):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Einfachauswahl"
 msgstr "Einfachauswahl"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Mehrfachauswahl"
 msgstr "Mehrfachauswahl"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Endet in 5 Minuten"
 msgstr "Endet in 5 Minuten"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Endet in 1 Stunde"
 msgstr "Endet in 1 Stunde"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Endet in 1 Tag"
 msgstr "Endet in 1 Tag"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Beitrag veröffentlichen"
 msgstr "Beitrag veröffentlichen"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Seitenbeschreibung"
 msgstr "Seitenbeschreibung"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Admin E-Mail"
 msgstr "Admin E-Mail"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Admin-Konto"
 msgstr "Admin-Konto"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d Gefolgte, %d Folgende"
 msgstr "%d Gefolgte, %d Folgende"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "Privat"
 msgstr "Privat"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "Öffentlich"
 msgstr "Öffentlich"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "Benachrichtigungen"
 msgstr "Benachrichtigungen"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "Personen"
 msgstr "Personen"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "Instanz"
 msgstr "Instanz"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -128,576 +128,576 @@ msgstr ""
 "Durchsuche Beiträge nach URL oder Inhalt (regulärer Ausdruck), @user@host "
 "Durchsuche Beiträge nach URL oder Inhalt (regulärer Ausdruck), @user@host "
 "Konten, oder #tag"
 "Konten, oder #tag"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Inhaltssuche"
 msgstr "Inhaltssuche"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "verifizierter Link"
 msgstr "verifizierter Link"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Standort: "
 msgstr "Standort: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Neuer Beitrag..."
 msgstr "Neuer Beitrag..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "Was beschäftigt dich?"
 msgstr "Was beschäftigt dich?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Aktionen..."
 msgstr "Aktionen..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Folgen"
 msgstr "Folgen"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(mit URL oder user@host)"
 msgstr "(mit URL oder user@host)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Boosten"
 msgstr "Boosten"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(mit URL)"
 msgstr "(mit URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Gefällt mir"
 msgstr "Gefällt mir"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Einstellungen..."
 msgstr "Einstellungen..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Anzeigename:"
 msgstr "Anzeigename:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Dein Name"
 msgstr "Dein Name"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Avatar: "
 msgstr "Avatar: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Aktuellen Avatar löschen"
 msgstr "Aktuellen Avatar löschen"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Titelbild (Banner): "
 msgstr "Titelbild (Banner): "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Aktuelles Titelbild löschen"
 msgstr "Aktuelles Titelbild löschen"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Über dich:"
 msgstr "Über dich:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Erzähle etwas von dir..."
 msgstr "Erzähle etwas von dir..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Sensible Inhalte immer anzeigen"
 msgstr "Sensible Inhalte immer anzeigen"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "E-Mail Adresse für Benachrichtigungen:"
 msgstr "E-Mail Adresse für Benachrichtigungen:"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Telegram Benachrichtigungen (Bot Schlüssel und Chat ID):"
 msgstr "Telegram Benachrichtigungen (Bot Schlüssel und Chat ID):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "NTFY Benachrichtigungen (ntfy Server und Token):"
 msgstr "NTFY Benachrichtigungen (ntfy Server und Token):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr "Aufbewahrungsfrist der Beiträge in Tagen (0 = Serverstandard):"
 msgstr "Aufbewahrungsfrist der Beiträge in Tagen (0 = Serverstandard):"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Blocke Direktnachrichten von Personen denen du nicht folgst"
 msgstr "Blocke Direktnachrichten von Personen denen du nicht folgst"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Dieses Konto ist ein Bot"
 msgstr "Dieses Konto ist ein Bot"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Automatisches Boosten bei Erwähnungen dieses Kontos"
 msgstr "Automatisches Boosten bei Erwähnungen dieses Kontos"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr ""
 msgstr ""
 "Dieses Konto ist privat (Beiträge werden nicht in der Weboberfläche "
 "Dieses Konto ist privat (Beiträge werden nicht in der Weboberfläche "
 "angezeigt)"
 "angezeigt)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Themen standardmäßig einklappen"
 msgstr "Themen standardmäßig einklappen"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Folgeanfragen müssen genehmigt werden"
 msgstr "Folgeanfragen müssen genehmigt werden"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Veröffentliche die Anzahl von Followern und Gefolgten."
 msgstr "Veröffentliche die Anzahl von Followern und Gefolgten."
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Standort:"
 msgstr "Standort:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Profil-Metadaten (Begriff=Wert Paare, einer pro Zeile):"
 msgstr "Profil-Metadaten (Begriff=Wert Paare, einer pro Zeile):"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Sprache der Weboberfläche:"
 msgstr "Sprache der Weboberfläche:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Neues Passwort:"
 msgstr "Neues Passwort:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Neues Passwort wiederholen:"
 msgstr "Neues Passwort wiederholen:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Benutzerinformationen aktualisieren"
 msgstr "Benutzerinformationen aktualisieren"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Gefolgte Hashtags..."
 msgstr "Gefolgte Hashtags..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Ein Hashtag pro Zeile"
 msgstr "Ein Hashtag pro Zeile"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Hashtags aktualisieren"
 msgstr "Hashtags aktualisieren"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Sag, dass dir dieser Beiträg gefällt"
 msgstr "Sag, dass dir dieser Beiträg gefällt"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "Gefällt mir zurücknehmen"
 msgstr "Gefällt mir zurücknehmen"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Nee, gefällt mir nicht so gut"
 msgstr "Nee, gefällt mir nicht so gut"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Pin entfernen"
 msgstr "Pin entfernen"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Pin für diesen Beitrag aus deiner Zeitleiste entfernen"
 msgstr "Pin für diesen Beitrag aus deiner Zeitleiste entfernen"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Anpinnen"
 msgstr "Anpinnen"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Pinne diesen Beitrag an den Anfang deiner Zeitleiste"
 msgstr "Pinne diesen Beitrag an den Anfang deiner Zeitleiste"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Diesen Beitrag an deine Follower weiterschicken"
 msgstr "Diesen Beitrag an deine Follower weiterschicken"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Boost zurücknehmen"
 msgstr "Boost zurücknehmen"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Ich bedauere, dass ich das weiterverschickt habe"
 msgstr "Ich bedauere, dass ich das weiterverschickt habe"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Lesezeichen entfernen"
 msgstr "Lesezeichen entfernen"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Diesen Beitrag aus den Lesezeichen entfernen"
 msgstr "Diesen Beitrag aus den Lesezeichen entfernen"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Lesezeichen"
 msgstr "Lesezeichen"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Diesen Beitrag zu deinen Lesezeichen hinzufügen"
 msgstr "Diesen Beitrag zu deinen Lesezeichen hinzufügen"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Nicht mehr folgen"
 msgstr "Nicht mehr folgen"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Aktivitäten dieses Benutzers nicht mehr folgen"
 msgstr "Aktivitäten dieses Benutzers nicht mehr folgen"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Folge den Aktivitäten dieses Benutzers"
 msgstr "Folge den Aktivitäten dieses Benutzers"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Der Gruppe nicht mehr folgen"
 msgstr "Der Gruppe nicht mehr folgen"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Der Gruppe oder dem Kanal nicht mehr folgen"
 msgstr "Der Gruppe oder dem Kanal nicht mehr folgen"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Der Gruppe folgen"
 msgstr "Der Gruppe folgen"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Der Gruppe oder dem Kanal folgen"
 msgstr "Der Gruppe oder dem Kanal folgen"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "Stummschalten"
 msgstr "Stummschalten"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Alle Aktivitäten dieses Benutzers für immer blockieren"
 msgstr "Alle Aktivitäten dieses Benutzers für immer blockieren"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Löschen"
 msgstr "Löschen"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Diesen Beitrag löschen"
 msgstr "Diesen Beitrag löschen"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Verstecken"
 msgstr "Verstecken"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Verstecke diesen Beitrag und seine Kommentare"
 msgstr "Verstecke diesen Beitrag und seine Kommentare"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Bearbeiten..."
 msgstr "Bearbeiten..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Antworten..."
 msgstr "Antworten..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Abgeschnitten (zu tief)"
 msgstr "Abgeschnitten (zu tief)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "folgt dir"
 msgstr "folgt dir"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Angeheftet"
 msgstr "Angeheftet"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Lesezeichen gesetzt"
 msgstr "Lesezeichen gesetzt"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Umfrage"
 msgstr "Umfrage"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Abgestimmt"
 msgstr "Abgestimmt"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Ereignis"
 msgstr "Ereignis"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "teilte"
 msgstr "teilte"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "als Antwort auf"
 msgstr "als Antwort auf"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [SENSIBLER INHALT]"
 msgstr " [SENSIBLER INHALT]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Abstimmen"
 msgstr "Abstimmen"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Geschlossen"
 msgstr "Geschlossen"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Beendet in"
 msgstr "Beendet in"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Video"
 msgstr "Video"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Audio"
 msgstr "Audio"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Anhang"
 msgstr "Anhang"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Alt.-Text..."
 msgstr "Alt.-Text..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Ursprungskanal oder -gemeinschaft"
 msgstr "Ursprungskanal oder -gemeinschaft"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Zeit: "
 msgstr "Zeit: "
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Älter..."
 msgstr "Älter..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "Über diese Seite"
 msgstr "Über diese Seite"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "powered by "
 msgstr "powered by "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Ablehnen"
 msgstr "Ablehnen"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Zeitleiste für Liste '%s'"
 msgstr "Zeitleiste für Liste '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Angeheftete Beiträge"
 msgstr "Angeheftete Beiträge"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Beiträge mit Lesezeichen"
 msgstr "Beiträge mit Lesezeichen"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Entwurf veröffentlichen"
 msgstr "Entwurf veröffentlichen"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "Keine weiteren ungesehenen Beiträge"
 msgstr "Keine weiteren ungesehenen Beiträge"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Nach oben"
 msgstr "Nach oben"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Historie"
 msgstr "Historie"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Mehr..."
 msgstr "Mehr..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Nicht mehr limitieren"
 msgstr "Nicht mehr limitieren"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Erlaube Boosts dieses Benutzers"
 msgstr "Erlaube Boosts dieses Benutzers"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Limitieren"
 msgstr "Limitieren"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Blocke Boosts dieses Benutzers"
 msgstr "Blocke Boosts dieses Benutzers"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Benutzer löschen"
 msgstr "Benutzer löschen"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Bestätigen"
 msgstr "Bestätigen"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Diese Folgeanfrage bestätigen"
 msgstr "Diese Folgeanfrage bestätigen"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Verwerfen"
 msgstr "Verwerfen"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Diese Folgeanfrage verwerfen"
 msgstr "Diese Folgeanfrage verwerfen"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Stummschaltung aufheben"
 msgstr "Stummschaltung aufheben"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Aktivitäten dieses Benutzers nicht mehr blockieren"
 msgstr "Aktivitäten dieses Benutzers nicht mehr blockieren"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Alle Aktivitäten dieses Benutzers blockieren"
 msgstr "Alle Aktivitäten dieses Benutzers blockieren"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Direktnachricht..."
 msgstr "Direktnachricht..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Ausstehende Folgebestätigungen"
 msgstr "Ausstehende Folgebestätigungen"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Personen denen du folgst"
 msgstr "Personen denen du folgst"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Personen die dir folgen"
 msgstr "Personen die dir folgen"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Aufräumen"
 msgstr "Aufräumen"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Erwähnung"
 msgstr "Erwähnung"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Beendete Umfrage"
 msgstr "Beendete Umfrage"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Folge-Anfrage"
 msgstr "Folge-Anfrage"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Zusammenhang anzeigen"
 msgstr "Zusammenhang anzeigen"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Neu"
 msgstr "Neu"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Bereits gesehen"
 msgstr "Bereits gesehen"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Nichts"
 msgstr "Nichts"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Suchergebnisse für Konto %s"
 msgstr "Suchergebnisse für Konto %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "Konto %s wurde nicht gefunden"
 msgstr "Konto %s wurde nicht gefunden"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Suchergebnisse für Hashtag %s"
 msgstr "Suchergebnisse für Hashtag %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "Nicht gefunden zu Hashtag %s"
 msgstr "Nicht gefunden zu Hashtag %s"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Suchergebnisse für '%s' (könnten mehr sein)"
 msgstr "Suchergebnisse für '%s' (könnten mehr sein)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Keine Suchergebnisse für '%s'"
 msgstr "Keine Suchergebnisse für '%s'"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "Keine weiteren Treffer für '%s'"
 msgstr "Keine weiteren Treffer für '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "Nichts gefunden für '%s'"
 msgstr "Nichts gefunden für '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Zeitleiste der Instanz anzeigen"
 msgstr "Zeitleiste der Instanz anzeigen"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Zeitleiste der Liste '%s' anzeigen"
 msgstr "Zeitleiste der Liste '%s' anzeigen"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Suchergebnisse für Hashtag #%s"
 msgstr "Suchergebnisse für Hashtag #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Neueste Beiträge von Benutzern dieser Instanz"
 msgstr "Neueste Beiträge von Benutzern dieser Instanz"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Geblockte Hashtags..."
 msgstr "Geblockte Hashtags..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "Optionale URL zum Antworten"
 msgstr "Optionale URL zum Antworten"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -709,54 +709,74 @@ msgstr ""
 "Option 3...\n"
 "Option 3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "Bot API Schlüssel"
 msgstr "Bot API Schlüssel"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "Chat ID"
 msgstr "Chat ID"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "ntfy Server - vollständige URL (Bsp.: https://ntfy.sh/YourTopic)"
 msgstr "ntfy Server - vollständige URL (Bsp.: https://ntfy.sh/YourTopic)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "ntfy Token - falls nötig"
 msgstr "ntfy Token - falls nötig"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "Angeheftet"
 msgstr "Angeheftet"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "Lesezeichen"
 msgstr "Lesezeichen"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "Entwürfe"
 msgstr "Entwürfe"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr "Geplanter Beitrag..."
 msgstr "Geplanter Beitrag..."
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr "Datum und Uhrzeit des Beitrags:"
 msgstr "Datum und Uhrzeit des Beitrags:"
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr "Geplante Beiträge"
 msgstr "Geplante Beiträge"
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr "Geplante Beiträge"
 msgstr "Geplante Beiträge"
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr "Datum und Uhrzeit des Beitrags (Zeitzone: %s):"
 msgstr "Datum und Uhrzeit des Beitrags (Zeitzone: %s):"
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr "Zeitzone"
 msgstr "Zeitzone"
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/el_GR.po

@@ -14,120 +14,120 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Poedit 3.5\n"
 "X-Generator: Poedit 3.5\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Ευαίσθητο περιεχόμενο: "
 msgstr "Ευαίσθητο περιεχόμενο: "
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Περιγραφή ευαίσθητου περιεχομένου"
 msgstr "Περιγραφή ευαίσθητου περιεχομένου"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Μόνο για αναφερόμενα άτομα: "
 msgstr "Μόνο για αναφερόμενα άτομα: "
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Απάντηση σε (URL): "
 msgstr "Απάντηση σε (URL): "
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "Μη δημοσιεύσεις, αλλά αποθήκευσε σαν προσχέδιο"
 msgstr "Μη δημοσιεύσεις, αλλά αποθήκευσε σαν προσχέδιο"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Προσχέδιο:"
 msgstr "Προσχέδιο:"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Επισυνάψεις..."
 msgstr "Επισυνάψεις..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Αρχείο:"
 msgstr "Αρχείο:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Καθάρισε αυτό το πεδίο για να διαγράψεις την επισύναψη"
 msgstr "Καθάρισε αυτό το πεδίο για να διαγράψεις την επισύναψη"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Περιγραφή επισύναψης"
 msgstr "Περιγραφή επισύναψης"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Δημοσκόπηση..."
 msgstr "Δημοσκόπηση..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Επιλογές δημοσκόπησης (μία ανά σειρά, μέχρι 8):"
 msgstr "Επιλογές δημοσκόπησης (μία ανά σειρά, μέχρι 8):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Μία επιλογή"
 msgstr "Μία επιλογή"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Πολλαπλές επιλογές"
 msgstr "Πολλαπλές επιλογές"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Τελειώνει σε 5 λεπτά"
 msgstr "Τελειώνει σε 5 λεπτά"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Τελειώνει σε 1 ώρα"
 msgstr "Τελειώνει σε 1 ώρα"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Τελειώνει σε 1 ημέρα"
 msgstr "Τελειώνει σε 1 ημέρα"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Δημοσίευση"
 msgstr "Δημοσίευση"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Περιγραφή ιστότοπου"
 msgstr "Περιγραφή ιστότοπου"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Email διαχειριστή"
 msgstr "Email διαχειριστή"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Διαχειριστής"
 msgstr "Διαχειριστής"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d ακολουθείτε, %d ακόλουθοι"
 msgstr "%d ακολουθείτε, %d ακόλουθοι"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "ιδιωτικό"
 msgstr "ιδιωτικό"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "δημόσιο"
 msgstr "δημόσιο"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "ειδοποιήσεις"
 msgstr "ειδοποιήσεις"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "άνθρωποι"
 msgstr "άνθρωποι"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "διακομιστής"
 msgstr "διακομιστής"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -135,576 +135,576 @@ msgstr ""
 "Αναζήτηση δημοσιεύσεων με URL ή περιεχόμενο (κανονική έκφραση), "
 "Αναζήτηση δημοσιεύσεων με URL ή περιεχόμενο (κανονική έκφραση), "
 "@χρήστης@διακομιστής, ή #ετικέτα"
 "@χρήστης@διακομιστής, ή #ετικέτα"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Αναζήτηση περιεχομένου"
 msgstr "Αναζήτηση περιεχομένου"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "πιστοποιημένος σύνδεσμος"
 msgstr "πιστοποιημένος σύνδεσμος"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Τοποθεσία: "
 msgstr "Τοποθεσία: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Νέα Δημοσίευση..."
 msgstr "Νέα Δημοσίευση..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "Τι έχεις στο μυαλό σου;"
 msgstr "Τι έχεις στο μυαλό σου;"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Λειτουργίες..."
 msgstr "Λειτουργίες..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Ακολούθησε"
 msgstr "Ακολούθησε"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(με URL ή user@host)"
 msgstr "(με URL ή user@host)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Ενίσχυση"
 msgstr "Ενίσχυση"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(από URL)"
 msgstr "(από URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Μου αρέσει"
 msgstr "Μου αρέσει"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Ρυθμίσεις Χρήστη..."
 msgstr "Ρυθμίσεις Χρήστη..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Προβαλλόμενο όνομα:"
 msgstr "Προβαλλόμενο όνομα:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Το όνομα σου"
 msgstr "Το όνομα σου"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Εικόνα προφίλ: "
 msgstr "Εικόνα προφίλ: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Διαγραφή τρέχουσας εικόνας προφίλ"
 msgstr "Διαγραφή τρέχουσας εικόνας προφίλ"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Εικόνα κεφαλίδας (banner): "
 msgstr "Εικόνα κεφαλίδας (banner): "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Διαγραφή τρέχουσας εικόνας κεφαλίδας"
 msgstr "Διαγραφή τρέχουσας εικόνας κεφαλίδας"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Βιογραφικό:"
 msgstr "Βιογραφικό:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Γράψε για τον εαυτό σου εδώ..."
 msgstr "Γράψε για τον εαυτό σου εδώ..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Πάντα πρόβαλε ευαίσθητο περιεχόμενο"
 msgstr "Πάντα πρόβαλε ευαίσθητο περιεχόμενο"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Διεύθυνση email για ειδοποιήσεις:"
 msgstr "Διεύθυνση email για ειδοποιήσεις:"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Ειδοποιήσεις Telegram (κλειδί bot και chat id):"
 msgstr "Ειδοποιήσεις Telegram (κλειδί bot και chat id):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "ειδοποιήσεις ntfy (διακομιστής ntfy και token):"
 msgstr "ειδοποιήσεις ntfy (διακομιστής ntfy και token):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr "Διατήρηση δημοσιεύσεων για ημέρες (0: ρυθμίσεις διακομιστή):"
 msgstr "Διατήρηση δημοσιεύσεων για ημέρες (0: ρυθμίσεις διακομιστή):"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Απόρριψη άμεσων μηνυμάτων από άτομα που δεν ακολουθείτε"
 msgstr "Απόρριψη άμεσων μηνυμάτων από άτομα που δεν ακολουθείτε"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Αυτός ο λογαριασμός είναι αυτοματοποιημένος (bot)"
 msgstr "Αυτός ο λογαριασμός είναι αυτοματοποιημένος (bot)"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Αυτόματη ενίσχυση όλων των αναφορών σε αυτό το λογαριασμό"
 msgstr "Αυτόματη ενίσχυση όλων των αναφορών σε αυτό το λογαριασμό"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr ""
 msgstr ""
 "Αυτός ο λογαριασμός είναι ιδιωτικός (οι δημοσιεύσεις δεν εμφανίζονται στο "
 "Αυτός ο λογαριασμός είναι ιδιωτικός (οι δημοσιεύσεις δεν εμφανίζονται στο "
 "διαδίκτυο)"
 "διαδίκτυο)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Αναδίπλωση κορυφαίων συζητήσεων εξ'ορισμού"
 msgstr "Αναδίπλωση κορυφαίων συζητήσεων εξ'ορισμού"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Τα αιτήματα ακόλουθων πρέπει να εγκρίνονται"
 msgstr "Τα αιτήματα ακόλουθων πρέπει να εγκρίνονται"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Δημοσίευση στατιστικών ακόλουθων και ακολουθούμενων"
 msgstr "Δημοσίευση στατιστικών ακόλουθων και ακολουθούμενων"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Τρέχουσα τοποθεσία:"
 msgstr "Τρέχουσα τοποθεσία:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Μεταστοιχεία προφίλ (κλειδί=τιμή ζευγάρια σε κάθε γραμμή):"
 msgstr "Μεταστοιχεία προφίλ (κλειδί=τιμή ζευγάρια σε κάθε γραμμή):"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Γλώσσα περιβάλλοντος web:"
 msgstr "Γλώσσα περιβάλλοντος web:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Νέος κωδικός:"
 msgstr "Νέος κωδικός:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Επανάληψη νέου κωδικού:"
 msgstr "Επανάληψη νέου κωδικού:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Ενημέρωση στοιχείων χρήστη"
 msgstr "Ενημέρωση στοιχείων χρήστη"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Ετικέτες που ακολουθείτε..."
 msgstr "Ετικέτες που ακολουθείτε..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Μία ετικέτα ανά γραμμή"
 msgstr "Μία ετικέτα ανά γραμμή"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Ενημέρωση ετικετών"
 msgstr "Ενημέρωση ετικετών"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Ανάφερε ότι σου αρέσει αυτή η δημοσίευση"
 msgstr "Ανάφερε ότι σου αρέσει αυτή η δημοσίευση"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "Αναίρεση μου αρέσει"
 msgstr "Αναίρεση μου αρέσει"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Μπα δεν μ' αρέσει τόσο"
 msgstr "Μπα δεν μ' αρέσει τόσο"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Ξεκαρφίτσωμα"
 msgstr "Ξεκαρφίτσωμα"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Ξεκαρφίτσωμα αυτής της δημοσίευσης από τη ροή σας"
 msgstr "Ξεκαρφίτσωμα αυτής της δημοσίευσης από τη ροή σας"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Καρφίτσωμα"
 msgstr "Καρφίτσωμα"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Καρφίτσωμα αυτής της δημοσίευσης στη κορυφή της ροής σας"
 msgstr "Καρφίτσωμα αυτής της δημοσίευσης στη κορυφή της ροής σας"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Ανακοίνωση αυτής της δημοσίευσης στους ακόλουθους σας"
 msgstr "Ανακοίνωση αυτής της δημοσίευσης στους ακόλουθους σας"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Αφαίρεση ενίσχυσης"
 msgstr "Αφαίρεση ενίσχυσης"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Μετάνιωσα που το ενίσχυσα"
 msgstr "Μετάνιωσα που το ενίσχυσα"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Αφαίρεση σελιδοδείκτη"
 msgstr "Αφαίρεση σελιδοδείκτη"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Διαγραφή αυτής της δημοσίευσης από τους σελιδοδείκτες σου"
 msgstr "Διαγραφή αυτής της δημοσίευσης από τους σελιδοδείκτες σου"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Εισαγωγή σελιδοδείκτη"
 msgstr "Εισαγωγή σελιδοδείκτη"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Προσθήκη αυτής της δημοσίευσης στους σελιδοδείκτες σου"
 msgstr "Προσθήκη αυτής της δημοσίευσης στους σελιδοδείκτες σου"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Αναίρεση ακολουθίας"
 msgstr "Αναίρεση ακολουθίας"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Σταμάτα να ακολουθείς τη δραστηριότητα αυτού του χρήστη"
 msgstr "Σταμάτα να ακολουθείς τη δραστηριότητα αυτού του χρήστη"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Ξεκίνα να ακολουθείς τη δραστηριότητα αυτού του χρήστη"
 msgstr "Ξεκίνα να ακολουθείς τη δραστηριότητα αυτού του χρήστη"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Αναίρεση ακολουθίας ομάδας"
 msgstr "Αναίρεση ακολουθίας ομάδας"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Σταμάτα να ακολουθείς αυτή την ομάδα ή κανάλι"
 msgstr "Σταμάτα να ακολουθείς αυτή την ομάδα ή κανάλι"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Ακολούθησε την Ομάδα"
 msgstr "Ακολούθησε την Ομάδα"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Ξεκίνα να ακολουθείς αυτή την ομάδα ή κανάλι"
 msgstr "Ξεκίνα να ακολουθείς αυτή την ομάδα ή κανάλι"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "ΣΙΓΑΣΗ"
 msgstr "ΣΙΓΑΣΗ"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Αποκλεισμός οποιασδήποτε δραστηριότητας από αυτόν τον χρήστη για πάντα"
 msgstr "Αποκλεισμός οποιασδήποτε δραστηριότητας από αυτόν τον χρήστη για πάντα"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Διαγραφή"
 msgstr "Διαγραφή"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Διαγραφή αυτής της δημοσίευσης"
 msgstr "Διαγραφή αυτής της δημοσίευσης"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Απόκρυψη"
 msgstr "Απόκρυψη"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Απόκρυψη αυτής της δημοσίευσης και των απαντήσεων της"
 msgstr "Απόκρυψη αυτής της δημοσίευσης και των απαντήσεων της"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Επεξεργασία..."
 msgstr "Επεξεργασία..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Απάντηση..."
 msgstr "Απάντηση..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Έγινε περικοπή (πολύ βαθύ)"
 msgstr "Έγινε περικοπή (πολύ βαθύ)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "σε ακολουθεί"
 msgstr "σε ακολουθεί"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Καρφιτσωμένο"
 msgstr "Καρφιτσωμένο"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Εισήχθηκε σελιδοδείκτης"
 msgstr "Εισήχθηκε σελιδοδείκτης"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Δημοσκόπηση"
 msgstr "Δημοσκόπηση"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Ψήφισες"
 msgstr "Ψήφισες"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Εκδήλωση"
 msgstr "Εκδήλωση"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "ενισχύθηκε"
 msgstr "ενισχύθηκε"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "σε απάντηση του"
 msgstr "σε απάντηση του"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [ΕΥΑΙΣΘΗΤΟ ΠΕΡΙΕΧΟΜΕΝΟ]"
 msgstr " [ΕΥΑΙΣΘΗΤΟ ΠΕΡΙΕΧΟΜΕΝΟ]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Ψήφισε"
 msgstr "Ψήφισε"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Έκλεισε"
 msgstr "Έκλεισε"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Κλείνει σε"
 msgstr "Κλείνει σε"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Βίντεο"
 msgstr "Βίντεο"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Ήχος"
 msgstr "Ήχος"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Επισύναψη"
 msgstr "Επισύναψη"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Εναλλακτικό κείμενο..."
 msgstr "Εναλλακτικό κείμενο..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Πηγή κανάλι ή κοινότητα"
 msgstr "Πηγή κανάλι ή κοινότητα"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Ώρα: "
 msgstr "Ώρα: "
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Παλαιότερα..."
 msgstr "Παλαιότερα..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "σχετικά με αυτό τον ιστότοπο"
 msgstr "σχετικά με αυτό τον ιστότοπο"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "λειτουργεί με "
 msgstr "λειτουργεί με "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Απόρριψη"
 msgstr "Απόρριψη"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Ροή για λίστα '%s'"
 msgstr "Ροή για λίστα '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Καρφιτσωμένες δημοσιεύσεις"
 msgstr "Καρφιτσωμένες δημοσιεύσεις"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Σελιδοδείκτες"
 msgstr "Σελιδοδείκτες"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Προσχέδια δημοσιεύσεων"
 msgstr "Προσχέδια δημοσιεύσεων"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "Δεν υπάρχουν άλλες αδιάβαστες δημοσιεύσεις"
 msgstr "Δεν υπάρχουν άλλες αδιάβαστες δημοσιεύσεις"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Πίσω στη κορυφή"
 msgstr "Πίσω στη κορυφή"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Ιστορικό"
 msgstr "Ιστορικό"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Περισσότερα..."
 msgstr "Περισσότερα..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Αφαίρεση περιορισμού"
 msgstr "Αφαίρεση περιορισμού"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Επέτρεψε ανακοινώσεις (ενισχύσεις) από αυτό το χρήστη"
 msgstr "Επέτρεψε ανακοινώσεις (ενισχύσεις) από αυτό το χρήστη"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Περιορισμός"
 msgstr "Περιορισμός"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Απέκλεισε ανακοινώσεις (ενισχύσεις) από αυτό το χρήστη"
 msgstr "Απέκλεισε ανακοινώσεις (ενισχύσεις) από αυτό το χρήστη"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Διαγραφή αυτού του χρήστη"
 msgstr "Διαγραφή αυτού του χρήστη"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Έγκριση"
 msgstr "Έγκριση"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Έγκριση αυτού του αιτήματος ακόλουθου"
 msgstr "Έγκριση αυτού του αιτήματος ακόλουθου"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Απόρριψη"
 msgstr "Απόρριψη"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Απόρριψη αυτού του αιτήματος ακόλουθου"
 msgstr "Απόρριψη αυτού του αιτήματος ακόλουθου"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Αφαίρεση σίγασης"
 msgstr "Αφαίρεση σίγασης"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Διακοπή αποκλεισμού δραστηριοτήτων από αυτό το χρήστη"
 msgstr "Διακοπή αποκλεισμού δραστηριοτήτων από αυτό το χρήστη"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Αποκλεισμός οποιασδήποτε δραστηριότητας από αυτό τον χρήστη"
 msgstr "Αποκλεισμός οποιασδήποτε δραστηριότητας από αυτό τον χρήστη"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Απευθείας Μήνυμα..."
 msgstr "Απευθείας Μήνυμα..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Εκκεμείς επιβεβαιώσεις ακολουθήσεων"
 msgstr "Εκκεμείς επιβεβαιώσεις ακολουθήσεων"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Άνθρωποι που ακολουθείτε"
 msgstr "Άνθρωποι που ακολουθείτε"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Άνθρωποι που σας ακολουθούν"
 msgstr "Άνθρωποι που σας ακολουθούν"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Εκκαθάριση όλων"
 msgstr "Εκκαθάριση όλων"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Αναφορά"
 msgstr "Αναφορά"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Ολοκληρωμένη δημοσκόπηση"
 msgstr "Ολοκληρωμένη δημοσκόπηση"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Αίτημα Ακόλουθου"
 msgstr "Αίτημα Ακόλουθου"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Περιεχόμενο"
 msgstr "Περιεχόμενο"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Νέο"
 msgstr "Νέο"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Έχει ήδη προβληθεί"
 msgstr "Έχει ήδη προβληθεί"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Κανένα"
 msgstr "Κανένα"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Αποτελέσματα αναζήτηση για λογαριασμό %s"
 msgstr "Αποτελέσματα αναζήτηση για λογαριασμό %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "Ο λογαριασμός %s δεν βρέθηκε"
 msgstr "Ο λογαριασμός %s δεν βρέθηκε"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Αποτελέσματα αναζήτησης για ετικέτα %s"
 msgstr "Αποτελέσματα αναζήτησης για ετικέτα %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "Δε βρέθηκε κάτι για ετικέτα %s"
 msgstr "Δε βρέθηκε κάτι για ετικέτα %s"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Αποτελέσματα αναζήτησης για '%s' (μπορεί να υπάρχουν περισσότερα)"
 msgstr "Αποτελέσματα αναζήτησης για '%s' (μπορεί να υπάρχουν περισσότερα)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Αποτελέσματα αναζήτησης για '%s'"
 msgstr "Αποτελέσματα αναζήτησης για '%s'"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "Δεν υπάρχουν άλλα αποτελέσματα για '%s'"
 msgstr "Δεν υπάρχουν άλλα αποτελέσματα για '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "Δε βρέθηκε κάτι για '%s'"
 msgstr "Δε βρέθηκε κάτι για '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Προβάλλεται η ροή του διακομιστή"
 msgstr "Προβάλλεται η ροή του διακομιστή"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Προβάλετε η ροή της λίστας '%s'"
 msgstr "Προβάλετε η ροή της λίστας '%s'"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Αποτελέσματα αναζήτησης για ετικέτα #%s"
 msgstr "Αποτελέσματα αναζήτησης για ετικέτα #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Πρόσφατες αναρτήσεις από χρήστες σε αυτό τον ιστότοπο"
 msgstr "Πρόσφατες αναρτήσεις από χρήστες σε αυτό τον ιστότοπο"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Αποκλεισμένες ετικέτες..."
 msgstr "Αποκλεισμένες ετικέτες..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr ""
 msgstr ""
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -712,54 +712,74 @@ msgid ""
 "..."
 "..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr ""
 msgstr ""
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr ""
 msgstr ""
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/en.po

@@ -8,693 +8,693 @@ msgstr ""
 "Language: en\n"
 "Language: en\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr ""
 msgstr ""
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr ""
 msgstr ""
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr ""
 msgstr ""
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr ""
 msgstr ""
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr ""
 msgstr ""
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr ""
 msgstr ""
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr ""
 msgstr ""
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr ""
 msgstr ""
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr ""
 msgstr ""
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr ""
 msgstr ""
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr ""
 msgstr ""
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr ""
 msgstr ""
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr ""
 msgstr ""
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr ""
 msgstr ""
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr ""
 msgstr ""
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr ""
 msgstr ""
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr ""
 msgstr ""
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr ""
 msgstr ""
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr ""
 msgstr ""
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr ""
 msgstr ""
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr ""
 msgstr ""
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr ""
 msgstr ""
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr ""
 msgstr ""
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr ""
 msgstr ""
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
 msgstr ""
 msgstr ""
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr ""
 msgstr ""
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr ""
 msgstr ""
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr ""
 msgstr ""
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr ""
 msgstr ""
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr ""
 msgstr ""
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr ""
 msgstr ""
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr ""
 msgstr ""
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr ""
 msgstr ""
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr ""
 msgstr ""
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr ""
 msgstr ""
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -702,54 +702,74 @@ msgid ""
 "..."
 "..."
 msgstr ""
 msgstr ""
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr ""
 msgstr ""
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr ""
 msgstr ""
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/es.po

@@ -8,120 +8,120 @@ msgstr ""
 "Language: es\n"
 "Language: es\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Contenido sensible: "
 msgstr "Contenido sensible: "
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Descripción del contenido sensible"
 msgstr "Descripción del contenido sensible"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Solo personas mencionadas: "
 msgstr "Solo personas mencionadas: "
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Responder a (URL): "
 msgstr "Responder a (URL): "
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "No enviar. Guardar como borrador"
 msgstr "No enviar. Guardar como borrador"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Borrador:"
 msgstr "Borrador:"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Adjuntos..."
 msgstr "Adjuntos..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Archivo:"
 msgstr "Archivo:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Limpiar este campo para eliminar el adjunto"
 msgstr "Limpiar este campo para eliminar el adjunto"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Descripción del adjunto"
 msgstr "Descripción del adjunto"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Encuesta..."
 msgstr "Encuesta..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Opciones de encuesta (una por línea, hasta 8):"
 msgstr "Opciones de encuesta (una por línea, hasta 8):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Una opción"
 msgstr "Una opción"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Opciones múltiples"
 msgstr "Opciones múltiples"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Finalizar en 5 minutos"
 msgstr "Finalizar en 5 minutos"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Finalizar en 1 hora"
 msgstr "Finalizar en 1 hora"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Finalizar en 1 día"
 msgstr "Finalizar en 1 día"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Publicar"
 msgstr "Publicar"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Descripción del sitio"
 msgstr "Descripción del sitio"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Email del Administrador"
 msgstr "Email del Administrador"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Cuenta del Administrador"
 msgstr "Cuenta del Administrador"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d siguiendo, %d seguidores"
 msgstr "%d siguiendo, %d seguidores"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "privado"
 msgstr "privado"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "público"
 msgstr "público"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "notificaciones"
 msgstr "notificaciones"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "personas"
 msgstr "personas"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "instancia"
 msgstr "instancia"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -129,576 +129,576 @@ msgstr ""
 "Buscar publicaciones por URL o contenido (expresiones regulares), cuenta "
 "Buscar publicaciones por URL o contenido (expresiones regulares), cuenta "
 "@usuario@host , ó #etiqueta"
 "@usuario@host , ó #etiqueta"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Buscar contenido"
 msgstr "Buscar contenido"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "link verificado"
 msgstr "link verificado"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Ubicación: "
 msgstr "Ubicación: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Nueva Publicación..."
 msgstr "Nueva Publicación..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "¿En qué estás pensando?"
 msgstr "¿En qué estás pensando?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Operaciones..."
 msgstr "Operaciones..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Seguir"
 msgstr "Seguir"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(por URL o usuario@host)"
 msgstr "(por URL o usuario@host)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Impulsar"
 msgstr "Impulsar"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(por URL)"
 msgstr "(por URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Me gusta"
 msgstr "Me gusta"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Configuración de usuario..."
 msgstr "Configuración de usuario..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Nombre para mostrar:"
 msgstr "Nombre para mostrar:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Su nombre"
 msgstr "Su nombre"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Avatar: "
 msgstr "Avatar: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Eliminar avatar"
 msgstr "Eliminar avatar"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Imagen de cabecera (banner): "
 msgstr "Imagen de cabecera (banner): "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Eliminar imagen de cabecera"
 msgstr "Eliminar imagen de cabecera"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Bio:"
 msgstr "Bio:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Escriba algo sobre usted aquí..."
 msgstr "Escriba algo sobre usted aquí..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Siempre mostrar contenido sensible"
 msgstr "Siempre mostrar contenido sensible"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Cuenta de email para las notificaciones:"
 msgstr "Cuenta de email para las notificaciones:"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Notificaciones en Telegram (llave del bot e id del chat):"
 msgstr "Notificaciones en Telegram (llave del bot e id del chat):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "Notificaciones en ntfy (servidor ntfy y token):"
 msgstr "Notificaciones en ntfy (servidor ntfy y token):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr ""
 msgstr ""
 "Plazo máximo de conservación de publicaciones en días (0: usar configuración "
 "Plazo máximo de conservación de publicaciones en días (0: usar configuración "
 "del servidor):"
 "del servidor):"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Descartar mensajes directos de personas a las que no sigue"
 msgstr "Descartar mensajes directos de personas a las que no sigue"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Esta cuenta es un bot"
 msgstr "Esta cuenta es un bot"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Impulsar automáticamente todas las menciones a esta cuenta"
 msgstr "Impulsar automáticamente todas las menciones a esta cuenta"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr "Esta cuenta es privada (las publicaciones no se muestran en la web)"
 msgstr "Esta cuenta es privada (las publicaciones no se muestran en la web)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Contraer hilo de publicaciones por defecto"
 msgstr "Contraer hilo de publicaciones por defecto"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Las solicitudes de seguimiento deben ser aprobadas"
 msgstr "Las solicitudes de seguimiento deben ser aprobadas"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Mostrar cantidad de seguidores y seguidos"
 msgstr "Mostrar cantidad de seguidores y seguidos"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Ubicación actual:"
 msgstr "Ubicación actual:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Metadata del perfil (pares llave=valor en cada línea):"
 msgstr "Metadata del perfil (pares llave=valor en cada línea):"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Idioma de la interfaz Web:"
 msgstr "Idioma de la interfaz Web:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Nueva contraseña:"
 msgstr "Nueva contraseña:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Repetir nueva contraseña:"
 msgstr "Repetir nueva contraseña:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Actualizar información de usuario"
 msgstr "Actualizar información de usuario"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Etiquetas en seguimiento..."
 msgstr "Etiquetas en seguimiento..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Una etiqueta por línea"
 msgstr "Una etiqueta por línea"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Actualizar etiquetas"
 msgstr "Actualizar etiquetas"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Decir que te gusta esta publicación"
 msgstr "Decir que te gusta esta publicación"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "No me gusta"
 msgstr "No me gusta"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Nah, no me gusta tanto"
 msgstr "Nah, no me gusta tanto"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Desanclar"
 msgstr "Desanclar"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Desanclar esta publicación de su línea de tiempo"
 msgstr "Desanclar esta publicación de su línea de tiempo"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Anclar"
 msgstr "Anclar"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Anclar esta publicación al inicio de su línea de tiempo"
 msgstr "Anclar esta publicación al inicio de su línea de tiempo"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Anunciar esta publicación a sus seguidores"
 msgstr "Anunciar esta publicación a sus seguidores"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Eliminar impulso"
 msgstr "Eliminar impulso"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Me arrepiento de haber impulsado esto"
 msgstr "Me arrepiento de haber impulsado esto"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Eliminar marcador"
 msgstr "Eliminar marcador"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Eliminar marcador de esta publicación"
 msgstr "Eliminar marcador de esta publicación"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Marcador"
 msgstr "Marcador"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Agregar esta publicación a mis marcadores"
 msgstr "Agregar esta publicación a mis marcadores"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Dejar de seguir"
 msgstr "Dejar de seguir"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Dejar de seguir la actividad de este usuario"
 msgstr "Dejar de seguir la actividad de este usuario"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Seguir la actividad de este usuario"
 msgstr "Seguir la actividad de este usuario"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Dejar de seguir este Grupo"
 msgstr "Dejar de seguir este Grupo"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Dejar de seguir este grupo o canal"
 msgstr "Dejar de seguir este grupo o canal"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Seguir Grupo"
 msgstr "Seguir Grupo"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Seguir grupo o canal"
 msgstr "Seguir grupo o canal"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "SILENCIAR"
 msgstr "SILENCIAR"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Bloquear toda la actividad de este usuario para siempre"
 msgstr "Bloquear toda la actividad de este usuario para siempre"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Eliminar"
 msgstr "Eliminar"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Eliminar esta publicación"
 msgstr "Eliminar esta publicación"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Ocultar"
 msgstr "Ocultar"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Ocultar esta publicación y sus respuestas"
 msgstr "Ocultar esta publicación y sus respuestas"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Editar..."
 msgstr "Editar..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Responder..."
 msgstr "Responder..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Truncado (demasiado profundo)"
 msgstr "Truncado (demasiado profundo)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "te sigue"
 msgstr "te sigue"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Anclado"
 msgstr "Anclado"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Marcado"
 msgstr "Marcado"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Encuesta"
 msgstr "Encuesta"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Votado"
 msgstr "Votado"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Evento"
 msgstr "Evento"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "impulsado"
 msgstr "impulsado"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "en respuesta a"
 msgstr "en respuesta a"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [CONTENIDO SENSIBLE]"
 msgstr " [CONTENIDO SENSIBLE]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Votar"
 msgstr "Votar"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Cerrado"
 msgstr "Cerrado"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Cierra en"
 msgstr "Cierra en"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Video"
 msgstr "Video"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Audio"
 msgstr "Audio"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Adjunto"
 msgstr "Adjunto"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Alt..."
 msgstr "Alt..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Canal o comunidad de origen"
 msgstr "Canal o comunidad de origen"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Hora: "
 msgstr "Hora: "
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Más antiguo..."
 msgstr "Más antiguo..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "acerca de este sitio"
 msgstr "acerca de este sitio"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "provisto por "
 msgstr "provisto por "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Descartar"
 msgstr "Descartar"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Línea de tiempo de la lista '%s'"
 msgstr "Línea de tiempo de la lista '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Publicaciones ancladas"
 msgstr "Publicaciones ancladas"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Publicaciones marcadas"
 msgstr "Publicaciones marcadas"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Borradores de publicaciones"
 msgstr "Borradores de publicaciones"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "No quedan publicaciones sin ver"
 msgstr "No quedan publicaciones sin ver"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Volver al inicio"
 msgstr "Volver al inicio"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Historia"
 msgstr "Historia"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Más..."
 msgstr "Más..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Sin límite"
 msgstr "Sin límite"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Permitir anuncios (impulsos) de este usuario"
 msgstr "Permitir anuncios (impulsos) de este usuario"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Límite"
 msgstr "Límite"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Bloquear anuncios (impulsos) de este usuario"
 msgstr "Bloquear anuncios (impulsos) de este usuario"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Eliminar este usuario"
 msgstr "Eliminar este usuario"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Aprobar"
 msgstr "Aprobar"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Aprobar solicitud de seguimiento"
 msgstr "Aprobar solicitud de seguimiento"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Descartar"
 msgstr "Descartar"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Descartar solicitud de seguimiento"
 msgstr "Descartar solicitud de seguimiento"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Dejar de SILENCIAR"
 msgstr "Dejar de SILENCIAR"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Dejar de bloquear actividad de este usuario"
 msgstr "Dejar de bloquear actividad de este usuario"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Bloquear toda actividad de este usuario"
 msgstr "Bloquear toda actividad de este usuario"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Mensaje Directo..."
 msgstr "Mensaje Directo..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Confirmaciones de seguimiento pendientes"
 msgstr "Confirmaciones de seguimiento pendientes"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Personas que sigues"
 msgstr "Personas que sigues"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Personas que te siguen"
 msgstr "Personas que te siguen"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Limpiar todo"
 msgstr "Limpiar todo"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Mención"
 msgstr "Mención"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Encuesta finalizada"
 msgstr "Encuesta finalizada"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Solicitud de Seguimiento"
 msgstr "Solicitud de Seguimiento"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Contexto"
 msgstr "Contexto"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Nuevo"
 msgstr "Nuevo"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Ya visto"
 msgstr "Ya visto"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Ninguno"
 msgstr "Ninguno"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Buscar resultados para la cuenta %s"
 msgstr "Buscar resultados para la cuenta %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "No se encontró la cuenta %s"
 msgstr "No se encontró la cuenta %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Buscar resultados para la etiqueta %s"
 msgstr "Buscar resultados para la etiqueta %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "No se encontró nada con la etiqueta %s"
 msgstr "No se encontró nada con la etiqueta %s"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Resultados de búsqueda para '%s' (puede haber más)"
 msgstr "Resultados de búsqueda para '%s' (puede haber más)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Resultados de búsqueda para '%s'"
 msgstr "Resultados de búsqueda para '%s'"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "No hay más coincidencias para '%s'"
 msgstr "No hay más coincidencias para '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "No se encontró nada para '%s'"
 msgstr "No se encontró nada para '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Mostrando línea de tiempo de la instancia"
 msgstr "Mostrando línea de tiempo de la instancia"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Mostrando línea de tiempo de la lista '%s'"
 msgstr "Mostrando línea de tiempo de la lista '%s'"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Resultado de búsqueda para la etiqueta #%s"
 msgstr "Resultado de búsqueda para la etiqueta #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Publicaciones recientes de los usuarios de esta instancia"
 msgstr "Publicaciones recientes de los usuarios de esta instancia"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Etiquetas bloqueadas..."
 msgstr "Etiquetas bloqueadas..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "URL opcional a la que responder"
 msgstr "URL opcional a la que responder"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -710,51 +710,71 @@ msgstr ""
 "Opción 3...\n"
 "Opción 3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "Clave del API del Bot"
 msgstr "Clave del API del Bot"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "Identificador de chat"
 msgstr "Identificador de chat"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "Servidor ntfy - URL completa (example: https://ntfy.sh/YourTopic)"
 msgstr "Servidor ntfy - URL completa (example: https://ntfy.sh/YourTopic)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "Token ntft - si es necesario"
 msgstr "Token ntft - si es necesario"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "Anclados"
 msgstr "Anclados"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "Marcados"
 msgstr "Marcados"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "Borradores"
 msgstr "Borradores"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr "Envío programado..."
 msgstr "Envío programado..."
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr "Envíos programados"
 msgstr "Envíos programados"
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr "envíos programados"
 msgstr "envíos programados"
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr "Fecha y hora de publicación (zona horaria: %s):"
 msgstr "Fecha y hora de publicación (zona horaria: %s):"
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr "Zona horaria:"
 msgstr "Zona horaria:"
+
+#: html.c:491
+msgid "Language:"
+msgstr "Idioma:"
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr "Webhook de notificación:"
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr "Idiomas en los que sueles escribir:"
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/es_AR.po

@@ -8,120 +8,120 @@ msgstr ""
 "Language: es_AR\n"
 "Language: es_AR\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Contenido sensible: "
 msgstr "Contenido sensible: "
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Descripción del contenido sensible"
 msgstr "Descripción del contenido sensible"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Solo personas mencionadas: "
 msgstr "Solo personas mencionadas: "
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Responder a (URL): "
 msgstr "Responder a (URL): "
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "No enviar. Guardar como borrador"
 msgstr "No enviar. Guardar como borrador"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Borrador:"
 msgstr "Borrador:"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Adjuntos..."
 msgstr "Adjuntos..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Archivo:"
 msgstr "Archivo:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Limpiar este campo para eliminar el adjunto"
 msgstr "Limpiar este campo para eliminar el adjunto"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Descripción del adjunto"
 msgstr "Descripción del adjunto"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Encuesta..."
 msgstr "Encuesta..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Opciones de encuesta (una por línea, hasta 8):"
 msgstr "Opciones de encuesta (una por línea, hasta 8):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Una opción"
 msgstr "Una opción"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Opciones múltiples"
 msgstr "Opciones múltiples"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Finalizar en 5 minutos"
 msgstr "Finalizar en 5 minutos"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Finalizar en 1 hora"
 msgstr "Finalizar en 1 hora"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Finalizar en 1 día"
 msgstr "Finalizar en 1 día"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Publicar"
 msgstr "Publicar"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Descripción del sitio"
 msgstr "Descripción del sitio"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Email del Administrador"
 msgstr "Email del Administrador"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Cuenta del Administrador"
 msgstr "Cuenta del Administrador"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d siguiendo, %d seguidores"
 msgstr "%d siguiendo, %d seguidores"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "privado"
 msgstr "privado"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "público"
 msgstr "público"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "notificaciones"
 msgstr "notificaciones"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "personas"
 msgstr "personas"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "instancia"
 msgstr "instancia"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -129,576 +129,576 @@ msgstr ""
 "Buscar publicaciones por URL o contenido (expresiones regulares), cuenta "
 "Buscar publicaciones por URL o contenido (expresiones regulares), cuenta "
 "@usuario@host , ó #etiqueta"
 "@usuario@host , ó #etiqueta"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Buscar contenido"
 msgstr "Buscar contenido"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "link verificado"
 msgstr "link verificado"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Ubicación: "
 msgstr "Ubicación: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Nueva Publicación..."
 msgstr "Nueva Publicación..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "¿En qué estás pensando?"
 msgstr "¿En qué estás pensando?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Operaciones..."
 msgstr "Operaciones..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Seguir"
 msgstr "Seguir"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(por URL o usuario@host)"
 msgstr "(por URL o usuario@host)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Impulsar"
 msgstr "Impulsar"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(por URL)"
 msgstr "(por URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Me gusta"
 msgstr "Me gusta"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Configuración de usuario..."
 msgstr "Configuración de usuario..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Nombre para mostrar:"
 msgstr "Nombre para mostrar:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Su nombre"
 msgstr "Su nombre"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Avatar: "
 msgstr "Avatar: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Eliminar avatar"
 msgstr "Eliminar avatar"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Imagen de cabecera (banner): "
 msgstr "Imagen de cabecera (banner): "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Eliminar imagen de cabecera"
 msgstr "Eliminar imagen de cabecera"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Bio:"
 msgstr "Bio:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Escriba algo sobre usted aquí..."
 msgstr "Escriba algo sobre usted aquí..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Siempre mostrar contenido sensible"
 msgstr "Siempre mostrar contenido sensible"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Cuenta de email para las notificaciones:"
 msgstr "Cuenta de email para las notificaciones:"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Notificaciones en Telegram (llave del bot e id del chat):"
 msgstr "Notificaciones en Telegram (llave del bot e id del chat):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "Notificaciones en ntfy (servidor ntfy y token):"
 msgstr "Notificaciones en ntfy (servidor ntfy y token):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr ""
 msgstr ""
 "Plazo máximo de conservación de publicaciones en días (0: usar configuración "
 "Plazo máximo de conservación de publicaciones en días (0: usar configuración "
 "del servidor):"
 "del servidor):"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Descartar mensajes directos de personas a las que no sigue"
 msgstr "Descartar mensajes directos de personas a las que no sigue"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Esta cuenta es un bot"
 msgstr "Esta cuenta es un bot"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Impulsar automáticamente todas las menciones a esta cuenta"
 msgstr "Impulsar automáticamente todas las menciones a esta cuenta"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr "Esta cuenta es privada (las publicaciones no se muestran en la web)"
 msgstr "Esta cuenta es privada (las publicaciones no se muestran en la web)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Contraer hilo de publicaciones por defecto"
 msgstr "Contraer hilo de publicaciones por defecto"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Las solicitudes de seguimiento deben ser aprobadas"
 msgstr "Las solicitudes de seguimiento deben ser aprobadas"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Mostrar cantidad de seguidores y seguidos"
 msgstr "Mostrar cantidad de seguidores y seguidos"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Ubicación actual:"
 msgstr "Ubicación actual:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Metadata del perfil (pares llave=valor en cada línea):"
 msgstr "Metadata del perfil (pares llave=valor en cada línea):"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Idioma de la interfaz Web:"
 msgstr "Idioma de la interfaz Web:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Nueva contraseña:"
 msgstr "Nueva contraseña:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Repetir nueva contraseña:"
 msgstr "Repetir nueva contraseña:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Actualizar información de usuario"
 msgstr "Actualizar información de usuario"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Etiquetas en seguimiento..."
 msgstr "Etiquetas en seguimiento..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Una etiqueta por línea"
 msgstr "Una etiqueta por línea"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Actualizar etiquetas"
 msgstr "Actualizar etiquetas"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Decir que te gusta esta publicación"
 msgstr "Decir que te gusta esta publicación"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "No me gusta"
 msgstr "No me gusta"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Nah, no me gusta tanto"
 msgstr "Nah, no me gusta tanto"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Desanclar"
 msgstr "Desanclar"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Desanclar esta publicación de su línea de tiempo"
 msgstr "Desanclar esta publicación de su línea de tiempo"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Anclar"
 msgstr "Anclar"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Anclar esta publicación al inicio de su línea de tiempo"
 msgstr "Anclar esta publicación al inicio de su línea de tiempo"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Anunciar esta publicación a sus seguidores"
 msgstr "Anunciar esta publicación a sus seguidores"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Eliminar impulso"
 msgstr "Eliminar impulso"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Me arrepiento de haber impulsado esto"
 msgstr "Me arrepiento de haber impulsado esto"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Eliminar marcador"
 msgstr "Eliminar marcador"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Eliminar marcador de esta publicación"
 msgstr "Eliminar marcador de esta publicación"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Marcador"
 msgstr "Marcador"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Agregar esta publicación a mis marcadores"
 msgstr "Agregar esta publicación a mis marcadores"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Dejar de seguir"
 msgstr "Dejar de seguir"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Dejar de seguir la actividad de este usuario"
 msgstr "Dejar de seguir la actividad de este usuario"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Seguir la actividad de este usuario"
 msgstr "Seguir la actividad de este usuario"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Dejar de seguir este Grupo"
 msgstr "Dejar de seguir este Grupo"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Dejar de seguir este grupo o canal"
 msgstr "Dejar de seguir este grupo o canal"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Seguir Grupo"
 msgstr "Seguir Grupo"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Seguir grupo o canal"
 msgstr "Seguir grupo o canal"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "SILENCIAR"
 msgstr "SILENCIAR"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Bloquear toda la actividad de este usuario para siempre"
 msgstr "Bloquear toda la actividad de este usuario para siempre"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Eliminar"
 msgstr "Eliminar"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Eliminar esta publicación"
 msgstr "Eliminar esta publicación"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Ocultar"
 msgstr "Ocultar"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Ocultar esta publicación y sus respuestas"
 msgstr "Ocultar esta publicación y sus respuestas"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Editar..."
 msgstr "Editar..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Responder..."
 msgstr "Responder..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Truncado (demasiado profundo)"
 msgstr "Truncado (demasiado profundo)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "te sigue"
 msgstr "te sigue"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Anclado"
 msgstr "Anclado"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Marcado"
 msgstr "Marcado"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Encuesta"
 msgstr "Encuesta"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Votado"
 msgstr "Votado"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Evento"
 msgstr "Evento"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "impulsado"
 msgstr "impulsado"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "en respuesta a"
 msgstr "en respuesta a"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [CONTENIDO SENSIBLE]"
 msgstr " [CONTENIDO SENSIBLE]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Votar"
 msgstr "Votar"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Cerrado"
 msgstr "Cerrado"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Cierra en"
 msgstr "Cierra en"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Video"
 msgstr "Video"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Audio"
 msgstr "Audio"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Adjunto"
 msgstr "Adjunto"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Alt..."
 msgstr "Alt..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Canal o comunidad de origen"
 msgstr "Canal o comunidad de origen"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Hora: "
 msgstr "Hora: "
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Más antiguo..."
 msgstr "Más antiguo..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "acerca de este sitio"
 msgstr "acerca de este sitio"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "provisto por "
 msgstr "provisto por "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Descartar"
 msgstr "Descartar"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Línea de tiempo de la lista '%s'"
 msgstr "Línea de tiempo de la lista '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Publicaciones ancladas"
 msgstr "Publicaciones ancladas"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Publicaciones marcadas"
 msgstr "Publicaciones marcadas"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Borradores de publicaciones"
 msgstr "Borradores de publicaciones"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "No quedan publicaciones sin ver"
 msgstr "No quedan publicaciones sin ver"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Volver al inicio"
 msgstr "Volver al inicio"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Historia"
 msgstr "Historia"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Más..."
 msgstr "Más..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Sin límite"
 msgstr "Sin límite"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Permitir anuncios (impulsos) de este usuario"
 msgstr "Permitir anuncios (impulsos) de este usuario"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Límite"
 msgstr "Límite"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Bloquear anuncios (impulsos) de este usuario"
 msgstr "Bloquear anuncios (impulsos) de este usuario"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Eliminar este usuario"
 msgstr "Eliminar este usuario"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Aprobar"
 msgstr "Aprobar"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Aprobar solicitud de seguimiento"
 msgstr "Aprobar solicitud de seguimiento"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Descartar"
 msgstr "Descartar"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Descartar solicitud de seguimiento"
 msgstr "Descartar solicitud de seguimiento"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Dejar de SILENCIAR"
 msgstr "Dejar de SILENCIAR"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Dejar de bloquear actividad de este usuario"
 msgstr "Dejar de bloquear actividad de este usuario"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Bloquear toda actividad de este usuario"
 msgstr "Bloquear toda actividad de este usuario"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Mensaje Directo..."
 msgstr "Mensaje Directo..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Confirmaciones de seguimiento pendientes"
 msgstr "Confirmaciones de seguimiento pendientes"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Personas que sigues"
 msgstr "Personas que sigues"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Personas que te siguen"
 msgstr "Personas que te siguen"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Limpiar todo"
 msgstr "Limpiar todo"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Mención"
 msgstr "Mención"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Encuesta finalizada"
 msgstr "Encuesta finalizada"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Solicitud de Seguimiento"
 msgstr "Solicitud de Seguimiento"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Contexto"
 msgstr "Contexto"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Nuevo"
 msgstr "Nuevo"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Ya visto"
 msgstr "Ya visto"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Ninguno"
 msgstr "Ninguno"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Buscar resultados para la cuenta %s"
 msgstr "Buscar resultados para la cuenta %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "No se encontró la cuenta %s"
 msgstr "No se encontró la cuenta %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Buscar resultados para la etiqueta %s"
 msgstr "Buscar resultados para la etiqueta %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "No se encontró nada con la etiqueta %s"
 msgstr "No se encontró nada con la etiqueta %s"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Resultados de búsqueda para '%s' (puede haber más)"
 msgstr "Resultados de búsqueda para '%s' (puede haber más)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Resultados de búsqueda para '%s'"
 msgstr "Resultados de búsqueda para '%s'"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "No hay más coincidencias para '%s'"
 msgstr "No hay más coincidencias para '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "No se encontró nada para '%s'"
 msgstr "No se encontró nada para '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Mostrando línea de tiempo de la instancia"
 msgstr "Mostrando línea de tiempo de la instancia"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Mostrando línea de tiempo de la lista '%s'"
 msgstr "Mostrando línea de tiempo de la lista '%s'"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Resultado de búsqueda para la etiqueta #%s"
 msgstr "Resultado de búsqueda para la etiqueta #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Publicaciones recientes de los usuarios de esta instancia"
 msgstr "Publicaciones recientes de los usuarios de esta instancia"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Etiquetas bloqueadas..."
 msgstr "Etiquetas bloqueadas..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "URL opcional a la que responder"
 msgstr "URL opcional a la que responder"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -710,51 +710,71 @@ msgstr ""
 "Opción 3...\n"
 "Opción 3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "Clave del API del Bot"
 msgstr "Clave del API del Bot"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "Identificador de chat"
 msgstr "Identificador de chat"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "Servidor ntfy - URL completa (example: https://ntfy.sh/YourTopic)"
 msgstr "Servidor ntfy - URL completa (example: https://ntfy.sh/YourTopic)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "Token ntft - si es necesario"
 msgstr "Token ntft - si es necesario"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "Anclados"
 msgstr "Anclados"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "Marcados"
 msgstr "Marcados"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "Borradores"
 msgstr "Borradores"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr "Envío programado..."
 msgstr "Envío programado..."
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr "Envíos programados"
 msgstr "Envíos programados"
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr "envíos programados"
 msgstr "envíos programados"
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr "Fecha y hora de publicación (zona horaria: %s):"
 msgstr "Fecha y hora de publicación (zona horaria: %s):"
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr "Zona horaria:"
 msgstr "Zona horaria:"
+
+#: html.c:491
+msgid "Language:"
+msgstr "Idioma:"
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr "Webhook de notificación:"
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr "Idiomas en los que sueles escribir:"
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/es_UY.po

@@ -8,120 +8,120 @@ msgstr ""
 "Language: es_UY\n"
 "Language: es_UY\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Contenido sensible: "
 msgstr "Contenido sensible: "
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Descripción del contenido sensible"
 msgstr "Descripción del contenido sensible"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Solo personas mencionadas: "
 msgstr "Solo personas mencionadas: "
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Responder a (URL): "
 msgstr "Responder a (URL): "
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "No enviar. Guardar como borrador"
 msgstr "No enviar. Guardar como borrador"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Borrador:"
 msgstr "Borrador:"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Adjuntos..."
 msgstr "Adjuntos..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Archivo:"
 msgstr "Archivo:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Limpiar este campo para eliminar el adjunto"
 msgstr "Limpiar este campo para eliminar el adjunto"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Descripción del adjunto"
 msgstr "Descripción del adjunto"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Encuesta..."
 msgstr "Encuesta..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Opciones de encuesta (una por línea, hasta 8):"
 msgstr "Opciones de encuesta (una por línea, hasta 8):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Una opción"
 msgstr "Una opción"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Opciones múltiples"
 msgstr "Opciones múltiples"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Finalizar en 5 minutos"
 msgstr "Finalizar en 5 minutos"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Finalizar en 1 hora"
 msgstr "Finalizar en 1 hora"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Finalizar en 1 día"
 msgstr "Finalizar en 1 día"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Publicar"
 msgstr "Publicar"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Descripción del sitio"
 msgstr "Descripción del sitio"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Email del Administrador"
 msgstr "Email del Administrador"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Cuenta del Administrador"
 msgstr "Cuenta del Administrador"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d siguiendo, %d seguidores"
 msgstr "%d siguiendo, %d seguidores"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "privado"
 msgstr "privado"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "público"
 msgstr "público"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "notificaciones"
 msgstr "notificaciones"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "personas"
 msgstr "personas"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "instancia"
 msgstr "instancia"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -129,576 +129,576 @@ msgstr ""
 "Buscar publicaciones por URL o contenido (expresiones regulares), cuenta "
 "Buscar publicaciones por URL o contenido (expresiones regulares), cuenta "
 "@usuario@host , ó #etiqueta"
 "@usuario@host , ó #etiqueta"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Buscar contenido"
 msgstr "Buscar contenido"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "link verificado"
 msgstr "link verificado"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Ubicación: "
 msgstr "Ubicación: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Nueva Publicación..."
 msgstr "Nueva Publicación..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "¿En qué estás pensando?"
 msgstr "¿En qué estás pensando?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Operaciones..."
 msgstr "Operaciones..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Seguir"
 msgstr "Seguir"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(por URL o usuario@host)"
 msgstr "(por URL o usuario@host)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Impulsar"
 msgstr "Impulsar"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(por URL)"
 msgstr "(por URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Me gusta"
 msgstr "Me gusta"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Configuración de usuario..."
 msgstr "Configuración de usuario..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Nombre para mostrar:"
 msgstr "Nombre para mostrar:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Su nombre"
 msgstr "Su nombre"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Avatar: "
 msgstr "Avatar: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Eliminar avatar"
 msgstr "Eliminar avatar"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Imagen de cabecera (banner): "
 msgstr "Imagen de cabecera (banner): "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Eliminar imagen de cabecera"
 msgstr "Eliminar imagen de cabecera"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Bio:"
 msgstr "Bio:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Escriba algo sobre usted aquí..."
 msgstr "Escriba algo sobre usted aquí..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Siempre mostrar contenido sensible"
 msgstr "Siempre mostrar contenido sensible"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Cuenta de email para las notificaciones:"
 msgstr "Cuenta de email para las notificaciones:"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Notificaciones en Telegram (llave del bot e id del chat):"
 msgstr "Notificaciones en Telegram (llave del bot e id del chat):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "Notificaciones en ntfy (servidor ntfy y token):"
 msgstr "Notificaciones en ntfy (servidor ntfy y token):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr ""
 msgstr ""
 "Plazo máximo de conservación de publicaciones en días (0: usar configuración "
 "Plazo máximo de conservación de publicaciones en días (0: usar configuración "
 "del servidor):"
 "del servidor):"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Descartar mensajes directos de personas a las que no sigue"
 msgstr "Descartar mensajes directos de personas a las que no sigue"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Esta cuenta es un bot"
 msgstr "Esta cuenta es un bot"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Impulsar automáticamente todas las menciones a esta cuenta"
 msgstr "Impulsar automáticamente todas las menciones a esta cuenta"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr "Esta cuenta es privada (las publicaciones no se muestran en la web)"
 msgstr "Esta cuenta es privada (las publicaciones no se muestran en la web)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Contraer hilo de publicaciones por defecto"
 msgstr "Contraer hilo de publicaciones por defecto"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Las solicitudes de seguimiento deben ser aprobadas"
 msgstr "Las solicitudes de seguimiento deben ser aprobadas"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Mostrar cantidad de seguidores y seguidos"
 msgstr "Mostrar cantidad de seguidores y seguidos"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Ubicación actual:"
 msgstr "Ubicación actual:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Metadata del perfil (pares llave=valor en cada línea):"
 msgstr "Metadata del perfil (pares llave=valor en cada línea):"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Idioma de la interfaz Web:"
 msgstr "Idioma de la interfaz Web:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Nueva contraseña:"
 msgstr "Nueva contraseña:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Repetir nueva contraseña:"
 msgstr "Repetir nueva contraseña:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Actualizar información de usuario"
 msgstr "Actualizar información de usuario"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Etiquetas en seguimiento..."
 msgstr "Etiquetas en seguimiento..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Una etiqueta por línea"
 msgstr "Una etiqueta por línea"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Actualizar etiquetas"
 msgstr "Actualizar etiquetas"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Decir que te gusta esta publicación"
 msgstr "Decir que te gusta esta publicación"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "No me gusta"
 msgstr "No me gusta"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Nah, no me gusta tanto"
 msgstr "Nah, no me gusta tanto"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Desanclar"
 msgstr "Desanclar"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Desanclar esta publicación de su línea de tiempo"
 msgstr "Desanclar esta publicación de su línea de tiempo"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Anclar"
 msgstr "Anclar"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Anclar esta publicación al inicio de su línea de tiempo"
 msgstr "Anclar esta publicación al inicio de su línea de tiempo"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Anunciar esta publicación a sus seguidores"
 msgstr "Anunciar esta publicación a sus seguidores"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Eliminar impulso"
 msgstr "Eliminar impulso"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Me arrepiento de haber impulsado esto"
 msgstr "Me arrepiento de haber impulsado esto"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Eliminar marcador"
 msgstr "Eliminar marcador"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Eliminar marcador de esta publicación"
 msgstr "Eliminar marcador de esta publicación"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Marcador"
 msgstr "Marcador"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Agregar esta publicación a mis marcadores"
 msgstr "Agregar esta publicación a mis marcadores"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Dejar de seguir"
 msgstr "Dejar de seguir"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Dejar de seguir la actividad de este usuario"
 msgstr "Dejar de seguir la actividad de este usuario"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Seguir la actividad de este usuario"
 msgstr "Seguir la actividad de este usuario"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Dejar de seguir este Grupo"
 msgstr "Dejar de seguir este Grupo"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Dejar de seguir este grupo o canal"
 msgstr "Dejar de seguir este grupo o canal"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Seguir Grupo"
 msgstr "Seguir Grupo"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Seguir grupo o canal"
 msgstr "Seguir grupo o canal"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "SILENCIAR"
 msgstr "SILENCIAR"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Bloquear toda la actividad de este usuario para siempre"
 msgstr "Bloquear toda la actividad de este usuario para siempre"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Eliminar"
 msgstr "Eliminar"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Eliminar esta publicación"
 msgstr "Eliminar esta publicación"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Ocultar"
 msgstr "Ocultar"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Ocultar esta publicación y sus respuestas"
 msgstr "Ocultar esta publicación y sus respuestas"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Editar..."
 msgstr "Editar..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Responder..."
 msgstr "Responder..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Truncado (demasiado profundo)"
 msgstr "Truncado (demasiado profundo)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "te sigue"
 msgstr "te sigue"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Anclado"
 msgstr "Anclado"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Marcado"
 msgstr "Marcado"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Encuesta"
 msgstr "Encuesta"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Votado"
 msgstr "Votado"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Evento"
 msgstr "Evento"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "impulsado"
 msgstr "impulsado"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "en respuesta a"
 msgstr "en respuesta a"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [CONTENIDO SENSIBLE]"
 msgstr " [CONTENIDO SENSIBLE]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Votar"
 msgstr "Votar"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Cerrado"
 msgstr "Cerrado"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Cierra en"
 msgstr "Cierra en"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Video"
 msgstr "Video"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Audio"
 msgstr "Audio"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Adjunto"
 msgstr "Adjunto"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Alt..."
 msgstr "Alt..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Canal o comunidad de origen"
 msgstr "Canal o comunidad de origen"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Hora: "
 msgstr "Hora: "
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Más antiguo..."
 msgstr "Más antiguo..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "acerca de este sitio"
 msgstr "acerca de este sitio"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "provisto por "
 msgstr "provisto por "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Descartar"
 msgstr "Descartar"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Línea de tiempo de la lista '%s'"
 msgstr "Línea de tiempo de la lista '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Publicaciones ancladas"
 msgstr "Publicaciones ancladas"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Publicaciones marcadas"
 msgstr "Publicaciones marcadas"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Borradores de publicaciones"
 msgstr "Borradores de publicaciones"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "No quedan publicaciones sin ver"
 msgstr "No quedan publicaciones sin ver"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Volver al inicio"
 msgstr "Volver al inicio"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Historia"
 msgstr "Historia"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Más..."
 msgstr "Más..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Sin límite"
 msgstr "Sin límite"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Permitir anuncios (impulsos) de este usuario"
 msgstr "Permitir anuncios (impulsos) de este usuario"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Límite"
 msgstr "Límite"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Bloquear anuncios (impulsos) de este usuario"
 msgstr "Bloquear anuncios (impulsos) de este usuario"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Eliminar este usuario"
 msgstr "Eliminar este usuario"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Aprobar"
 msgstr "Aprobar"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Aprobar solicitud de seguimiento"
 msgstr "Aprobar solicitud de seguimiento"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Descartar"
 msgstr "Descartar"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Descartar solicitud de seguimiento"
 msgstr "Descartar solicitud de seguimiento"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Dejar de SILENCIAR"
 msgstr "Dejar de SILENCIAR"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Dejar de bloquear actividad de este usuario"
 msgstr "Dejar de bloquear actividad de este usuario"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Bloquear toda actividad de este usuario"
 msgstr "Bloquear toda actividad de este usuario"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Mensaje Directo..."
 msgstr "Mensaje Directo..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Confirmaciones de seguimiento pendientes"
 msgstr "Confirmaciones de seguimiento pendientes"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Personas que sigues"
 msgstr "Personas que sigues"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Personas que te siguen"
 msgstr "Personas que te siguen"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Limpiar todo"
 msgstr "Limpiar todo"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Mención"
 msgstr "Mención"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Encuesta finalizada"
 msgstr "Encuesta finalizada"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Solicitud de Seguimiento"
 msgstr "Solicitud de Seguimiento"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Contexto"
 msgstr "Contexto"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Nuevo"
 msgstr "Nuevo"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Ya visto"
 msgstr "Ya visto"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Ninguno"
 msgstr "Ninguno"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Buscar resultados para la cuenta %s"
 msgstr "Buscar resultados para la cuenta %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "No se encontró la cuenta %s"
 msgstr "No se encontró la cuenta %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Buscar resultados para la etiqueta %s"
 msgstr "Buscar resultados para la etiqueta %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "No se encontró nada con la etiqueta %s"
 msgstr "No se encontró nada con la etiqueta %s"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Resultados de búsqueda para '%s' (puede haber más)"
 msgstr "Resultados de búsqueda para '%s' (puede haber más)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Resultados de búsqueda para '%s'"
 msgstr "Resultados de búsqueda para '%s'"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "No hay más coincidencias para '%s'"
 msgstr "No hay más coincidencias para '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "No se encontró nada para '%s'"
 msgstr "No se encontró nada para '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Mostrando línea de tiempo de la instancia"
 msgstr "Mostrando línea de tiempo de la instancia"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Mostrando línea de tiempo de la lista '%s'"
 msgstr "Mostrando línea de tiempo de la lista '%s'"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Resultado de búsqueda para la etiqueta #%s"
 msgstr "Resultado de búsqueda para la etiqueta #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Publicaciones recientes de los usuarios de esta instancia"
 msgstr "Publicaciones recientes de los usuarios de esta instancia"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Etiquetas bloqueadas..."
 msgstr "Etiquetas bloqueadas..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "URL opcional a la que responder"
 msgstr "URL opcional a la que responder"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -710,51 +710,71 @@ msgstr ""
 "Opción 3...\n"
 "Opción 3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "Clave del API del Bot"
 msgstr "Clave del API del Bot"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "Identificador de chat"
 msgstr "Identificador de chat"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "Servidor ntfy - URL completa (example: https://ntfy.sh/YourTopic)"
 msgstr "Servidor ntfy - URL completa (example: https://ntfy.sh/YourTopic)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "Token ntft - si es necesario"
 msgstr "Token ntft - si es necesario"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "Anclados"
 msgstr "Anclados"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "Marcados"
 msgstr "Marcados"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "Borradores"
 msgstr "Borradores"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr "Envío programado..."
 msgstr "Envío programado..."
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr "Envíos programados"
 msgstr "Envíos programados"
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr "envíos programados"
 msgstr "envíos programados"
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr "Fecha y hora de publicación (zona horaria: %s):"
 msgstr "Fecha y hora de publicación (zona horaria: %s):"
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr "Zona horaria:"
 msgstr "Zona horaria:"
+
+#: html.c:491
+msgid "Language:"
+msgstr "Idioma:"
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr "Webhook de notificación:"
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr "Idiomas en los que sueles escribir:"
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/fi.po

@@ -8,120 +8,120 @@ msgstr ""
 "Language: fi\n"
 "Language: fi\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Arkaluontoista sisältöä: "
 msgstr "Arkaluontoista sisältöä: "
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Arkaluontoisen sisällön kuvaus"
 msgstr "Arkaluontoisen sisällön kuvaus"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Vain mainituille: "
 msgstr "Vain mainituille: "
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Vastaus (osoite): "
 msgstr "Vastaus (osoite): "
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "Älä lähetä, tallenna luonnoksena"
 msgstr "Älä lähetä, tallenna luonnoksena"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Luonnos:"
 msgstr "Luonnos:"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Liitteet..."
 msgstr "Liitteet..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Tiedosto:"
 msgstr "Tiedosto:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Tyhjennä kenttä poistaaksesi liiteen"
 msgstr "Tyhjennä kenttä poistaaksesi liiteen"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Liitteen kuvaus"
 msgstr "Liitteen kuvaus"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Kysely..."
 msgstr "Kysely..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Kyselyn vaihtoehdot (riveittäin, korkeintaan 8):"
 msgstr "Kyselyn vaihtoehdot (riveittäin, korkeintaan 8):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Yksi valinta"
 msgstr "Yksi valinta"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Monta valintaa"
 msgstr "Monta valintaa"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Päättyy viiden minuutin päästä"
 msgstr "Päättyy viiden minuutin päästä"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Päättyy tunnin päästä"
 msgstr "Päättyy tunnin päästä"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Päättyy päivän päästä"
 msgstr "Päättyy päivän päästä"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Julkaise"
 msgstr "Julkaise"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Sivuston kuvaus"
 msgstr "Sivuston kuvaus"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Ylläpitäjän sähköposti"
 msgstr "Ylläpitäjän sähköposti"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Ylläpitäjän tili"
 msgstr "Ylläpitäjän tili"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "Seuraa %d, %d seuraajaa"
 msgstr "Seuraa %d, %d seuraajaa"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "yksityinen"
 msgstr "yksityinen"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "julkinen"
 msgstr "julkinen"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "ilmoitukset"
 msgstr "ilmoitukset"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "ihmiset"
 msgstr "ihmiset"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "palvelin"
 msgstr "palvelin"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -129,574 +129,574 @@ msgstr ""
 "Etsi julkaisuja osoitteella tai sisällön perusteella, @käyttäjä@palvelin  "
 "Etsi julkaisuja osoitteella tai sisällön perusteella, @käyttäjä@palvelin  "
 "tai #tagi"
 "tai #tagi"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Sisälöhaku"
 msgstr "Sisälöhaku"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "varmistettu linkki"
 msgstr "varmistettu linkki"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Sijainti: "
 msgstr "Sijainti: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Uusi julkaisu..."
 msgstr "Uusi julkaisu..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "Mitä on mielessäsi?"
 msgstr "Mitä on mielessäsi?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Toiminnot..."
 msgstr "Toiminnot..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Seuraa"
 msgstr "Seuraa"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(osoite tai käyttäjä@palvelin)"
 msgstr "(osoite tai käyttäjä@palvelin)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Tehosta"
 msgstr "Tehosta"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(osoite)"
 msgstr "(osoite)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Tykkää"
 msgstr "Tykkää"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Käyttäjäasetukset..."
 msgstr "Käyttäjäasetukset..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Näytetty nimi:"
 msgstr "Näytetty nimi:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Nimesi"
 msgstr "Nimesi"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Avatar: "
 msgstr "Avatar: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Poista nykyinen avatar"
 msgstr "Poista nykyinen avatar"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Otsikkokuva: "
 msgstr "Otsikkokuva: "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Poista nykyinen otsikkokuva"
 msgstr "Poista nykyinen otsikkokuva"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Kuvaus:"
 msgstr "Kuvaus:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Kirjoita itsestäsi tähän..."
 msgstr "Kirjoita itsestäsi tähän..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Näytä arkaluontoinen sisältö aina"
 msgstr "Näytä arkaluontoinen sisältö aina"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Sähköposti ilmoituksille:"
 msgstr "Sähköposti ilmoituksille:"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Telegram-ilmoitukset (botin avain ja chat id):"
 msgstr "Telegram-ilmoitukset (botin avain ja chat id):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "nfty-ilmoitukset (ntfy-palvelin ja token):"
 msgstr "nfty-ilmoitukset (ntfy-palvelin ja token):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr "Säilytä julkaisut korkeintaan (päivää, 0: palvelimen asetukset)"
 msgstr "Säilytä julkaisut korkeintaan (päivää, 0: palvelimen asetukset)"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Poista yksityisviestit ihmisiltä, joita et seuraa"
 msgstr "Poista yksityisviestit ihmisiltä, joita et seuraa"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Tämä tili on botti"
 msgstr "Tämä tili on botti"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Tehosta tilin maininnat automaattisesti"
 msgstr "Tehosta tilin maininnat automaattisesti"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr "Tili on yksityinen (julkaisuja ei näytetä sivustolla)"
 msgstr "Tili on yksityinen (julkaisuja ei näytetä sivustolla)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Avaa säikeet automaattisesti"
 msgstr "Avaa säikeet automaattisesti"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Vaadi hyväksyntä seurantapyynnöille"
 msgstr "Vaadi hyväksyntä seurantapyynnöille"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Julkaise seuraamistilastot"
 msgstr "Julkaise seuraamistilastot"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Nykyinen sijainti:"
 msgstr "Nykyinen sijainti:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Profiilin metadata (avain=arvo, riveittäin):"
 msgstr "Profiilin metadata (avain=arvo, riveittäin):"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Käyttöliitymän kieli:"
 msgstr "Käyttöliitymän kieli:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Uusi salasana:"
 msgstr "Uusi salasana:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Toista salasana:"
 msgstr "Toista salasana:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Päivitä käyttäjätiedot"
 msgstr "Päivitä käyttäjätiedot"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Seuratut aihetunnisteet..."
 msgstr "Seuratut aihetunnisteet..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Aihetunnisteet, riveittäin"
 msgstr "Aihetunnisteet, riveittäin"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Päivitä aihetunnisteet"
 msgstr "Päivitä aihetunnisteet"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Tykkää tästä julkaisusta"
 msgstr "Tykkää tästä julkaisusta"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "Poista tykkäys"
 msgstr "Poista tykkäys"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Ei ole omaan makuuni"
 msgstr "Ei ole omaan makuuni"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Poista kiinnitys"
 msgstr "Poista kiinnitys"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Poista julkaisun kiinnitys aikajanalle"
 msgstr "Poista julkaisun kiinnitys aikajanalle"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Kiinnitä"
 msgstr "Kiinnitä"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Kiinnitä julkaisu aikajanasi alkuun"
 msgstr "Kiinnitä julkaisu aikajanasi alkuun"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Ilmoita julkaisusta seuraajillesi"
 msgstr "Ilmoita julkaisusta seuraajillesi"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Poista tehostus"
 msgstr "Poista tehostus"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Kadun tehostaneeni tätä"
 msgstr "Kadun tehostaneeni tätä"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Poista kirjanmerkki"
 msgstr "Poista kirjanmerkki"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Poista julkaisu kirjanmerkeistäsi"
 msgstr "Poista julkaisu kirjanmerkeistäsi"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Lisää kirjanmerkki"
 msgstr "Lisää kirjanmerkki"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Lisää julkaisu kirjanmerkkeihisi"
 msgstr "Lisää julkaisu kirjanmerkkeihisi"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Älä seuraa"
 msgstr "Älä seuraa"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Lakkaa seuraamasta käyttäjän toimintaa"
 msgstr "Lakkaa seuraamasta käyttäjän toimintaa"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Seuraa käyttäjän toimintaa"
 msgstr "Seuraa käyttäjän toimintaa"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Älä seuraa ryhmää"
 msgstr "Älä seuraa ryhmää"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Lopeta ryhnän tai kanavan seuraaminen"
 msgstr "Lopeta ryhnän tai kanavan seuraaminen"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Seuraa ryhmää"
 msgstr "Seuraa ryhmää"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Seuraa tätä ryhmää tai kanavaa"
 msgstr "Seuraa tätä ryhmää tai kanavaa"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "VAIMENNA"
 msgstr "VAIMENNA"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Estä kaikki toiminta tältä käyttäjältä"
 msgstr "Estä kaikki toiminta tältä käyttäjältä"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Poista"
 msgstr "Poista"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Poista julkaisu"
 msgstr "Poista julkaisu"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Piilota"
 msgstr "Piilota"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Piilota julkaisu ja vastaukset"
 msgstr "Piilota julkaisu ja vastaukset"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Muokkaa..."
 msgstr "Muokkaa..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Vastaa..."
 msgstr "Vastaa..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Katkaistu (liian syvä)"
 msgstr "Katkaistu (liian syvä)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "seuraa sinua"
 msgstr "seuraa sinua"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Kiinnitetty"
 msgstr "Kiinnitetty"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Kirjanmerkitty"
 msgstr "Kirjanmerkitty"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Kysely"
 msgstr "Kysely"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Äänestetty"
 msgstr "Äänestetty"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Tapahtuma"
 msgstr "Tapahtuma"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "tehostettu"
 msgstr "tehostettu"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "vastauksena"
 msgstr "vastauksena"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [ARKALUONTOISTA SISÄLTÖÄ]"
 msgstr " [ARKALUONTOISTA SISÄLTÖÄ]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Äänestä"
 msgstr "Äänestä"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Sulkeutunut"
 msgstr "Sulkeutunut"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Sulkeutuu"
 msgstr "Sulkeutuu"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Video"
 msgstr "Video"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Ääni"
 msgstr "Ääni"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Liite"
 msgstr "Liite"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Kuvaus..."
 msgstr "Kuvaus..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Lähdekanava tai -yhteisö"
 msgstr "Lähdekanava tai -yhteisö"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Aika: "
 msgstr "Aika: "
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Vanhemmat..."
 msgstr "Vanhemmat..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "tietoa sivustosta"
 msgstr "tietoa sivustosta"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "moottorina "
 msgstr "moottorina "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Kuittaa"
 msgstr "Kuittaa"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Listan ”%s” aikajana"
 msgstr "Listan ”%s” aikajana"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Kiinnitetyt julkaisut"
 msgstr "Kiinnitetyt julkaisut"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Kirjanmerkit"
 msgstr "Kirjanmerkit"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Vedokset"
 msgstr "Vedokset"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "Ei lukemattonia julkaisuja"
 msgstr "Ei lukemattonia julkaisuja"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Takaisin"
 msgstr "Takaisin"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Historia"
 msgstr "Historia"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Enemmän..."
 msgstr "Enemmän..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Poista rajoitus"
 msgstr "Poista rajoitus"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Salli tehostukset käyttäjältä"
 msgstr "Salli tehostukset käyttäjältä"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Rajoita"
 msgstr "Rajoita"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Kiellö tehostukset käyttäjältä"
 msgstr "Kiellö tehostukset käyttäjältä"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Poista käyttäjä"
 msgstr "Poista käyttäjä"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Hyväksy"
 msgstr "Hyväksy"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Hyväksy seurantapyyntö"
 msgstr "Hyväksy seurantapyyntö"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Hylkää"
 msgstr "Hylkää"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Hylkää seurantapyyntö"
 msgstr "Hylkää seurantapyyntö"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Poista vaimennus"
 msgstr "Poista vaimennus"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Salli toiminta käyttäjältä"
 msgstr "Salli toiminta käyttäjältä"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Estä kaikki toiminnat käyttäjältä"
 msgstr "Estä kaikki toiminnat käyttäjältä"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Yksityisviesti..."
 msgstr "Yksityisviesti..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Hyväksymistä odottavat seurantapyynnöt"
 msgstr "Hyväksymistä odottavat seurantapyynnöt"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Seuraamasi ihniset"
 msgstr "Seuraamasi ihniset"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Sinua seuraavat"
 msgstr "Sinua seuraavat"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Tyhjennä"
 msgstr "Tyhjennä"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Mainitse"
 msgstr "Mainitse"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Päättynyt kysely"
 msgstr "Päättynyt kysely"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Seurantapyyntö"
 msgstr "Seurantapyyntö"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Konteksti"
 msgstr "Konteksti"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Uusi"
 msgstr "Uusi"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Nähty"
 msgstr "Nähty"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Ei ilmoituksia"
 msgstr "Ei ilmoituksia"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Hakutulokset tilille %s"
 msgstr "Hakutulokset tilille %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "Tiliä %s ei löytynyt"
 msgstr "Tiliä %s ei löytynyt"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Hakutulokset aihetunnisteelle %s"
 msgstr "Hakutulokset aihetunnisteelle %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "Aihetunnisteella %s ei löytynyt tuloksia"
 msgstr "Aihetunnisteella %s ei löytynyt tuloksia"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Tulokset haulle ”%s” (mahdollisesti enemmän tuloksia)"
 msgstr "Tulokset haulle ”%s” (mahdollisesti enemmän tuloksia)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Tulokset haulle ”%s”"
 msgstr "Tulokset haulle ”%s”"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "Ei enempää tuloksia haulle ”%s”"
 msgstr "Ei enempää tuloksia haulle ”%s”"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "Haulla ”%s” ei löytynyt tuloksia"
 msgstr "Haulla ”%s” ei löytynyt tuloksia"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Palvelimen aikajana"
 msgstr "Palvelimen aikajana"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Listan ”%s” aikajana"
 msgstr "Listan ”%s” aikajana"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Hakutulokset aihetunnisteelle #%s"
 msgstr "Hakutulokset aihetunnisteelle #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Viimeaikaisia julkaisuja tällä palvelimella"
 msgstr "Viimeaikaisia julkaisuja tällä palvelimella"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Estetyt aihetunnisteet..."
 msgstr "Estetyt aihetunnisteet..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "Vastaus julkaisuun (osoite, valinnainen)"
 msgstr "Vastaus julkaisuun (osoite, valinnainen)"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -708,54 +708,74 @@ msgstr ""
 "Vaihtoehto 3...\n"
 "Vaihtoehto 3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "botin API-avain"
 msgstr "botin API-avain"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "chat id"
 msgstr "chat id"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "ntfy-palvelin - täydellinen osoite (esim: https://ntfy.sh/YourTopic)"
 msgstr "ntfy-palvelin - täydellinen osoite (esim: https://ntfy.sh/YourTopic)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "ntfy token - tarvittaessa"
 msgstr "ntfy token - tarvittaessa"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "kiinnitetyt"
 msgstr "kiinnitetyt"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "kirjanmerkit"
 msgstr "kirjanmerkit"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "vedokset"
 msgstr "vedokset"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr "Ajastettu julkaisu..."
 msgstr "Ajastettu julkaisu..."
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr "Julkaisuajankohta:"
 msgstr "Julkaisuajankohta:"
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr "Ajastetut julkaisut"
 msgstr "Ajastetut julkaisut"
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr "ajastetut julkaisut"
 msgstr "ajastetut julkaisut"
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr "Julkaisuajankohta (aikavyöhyke: %s):"
 msgstr "Julkaisuajankohta (aikavyöhyke: %s):"
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr "Aikavyöhyke: "
 msgstr "Aikavyöhyke: "
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/fr.po

@@ -8,120 +8,120 @@ msgstr ""
 "Language: fr\n"
 "Language: fr\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Contenu sensible :"
 msgstr "Contenu sensible :"
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Description du contenu sensible :"
 msgstr "Description du contenu sensible :"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Seulement pour les personnes mentionnées :"
 msgstr "Seulement pour les personnes mentionnées :"
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Répondre à (URL) :"
 msgstr "Répondre à (URL) :"
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "Ne pas envoyer, mais sauvegarder en tant que brouillon"
 msgstr "Ne pas envoyer, mais sauvegarder en tant que brouillon"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Brouillon :"
 msgstr "Brouillon :"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Pièces jointes…"
 msgstr "Pièces jointes…"
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Fichier :"
 msgstr "Fichier :"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Nettoyer ce champs pour supprimer la pièce jointe"
 msgstr "Nettoyer ce champs pour supprimer la pièce jointe"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Description de la pièce jointe"
 msgstr "Description de la pièce jointe"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Sondage…"
 msgstr "Sondage…"
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Options du sondage (une par ligne, jusqu'à 8) :"
 msgstr "Options du sondage (une par ligne, jusqu'à 8) :"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Un seul choix"
 msgstr "Un seul choix"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Choix multiples"
 msgstr "Choix multiples"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Se termine dans 5 minutes"
 msgstr "Se termine dans 5 minutes"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Se termine dans 1 heure"
 msgstr "Se termine dans 1 heure"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Se termine dans 1 jour"
 msgstr "Se termine dans 1 jour"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Envoyer"
 msgstr "Envoyer"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Description du site"
 msgstr "Description du site"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Email de l'admin"
 msgstr "Email de l'admin"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Compte de l'admin"
 msgstr "Compte de l'admin"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d abonnements, %d personnes abonnées"
 msgstr "%d abonnements, %d personnes abonnées"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "privé"
 msgstr "privé"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "public"
 msgstr "public"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "notifications"
 msgstr "notifications"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "personnes"
 msgstr "personnes"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "instance"
 msgstr "instance"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -129,575 +129,575 @@ msgstr ""
 "Chercher les messages par URL ou contenu (expression régulière), comptes "
 "Chercher les messages par URL ou contenu (expression régulière), comptes "
 "@pseudo@hôte, ou #tag"
 "@pseudo@hôte, ou #tag"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Recherche de contenu"
 msgstr "Recherche de contenu"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "Lien vérifié"
 msgstr "Lien vérifié"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Emplacement : "
 msgstr "Emplacement : "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Nouveau message…"
 msgstr "Nouveau message…"
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "Qu'avez-vous en tête ?"
 msgstr "Qu'avez-vous en tête ?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Opérations…"
 msgstr "Opérations…"
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Suivre"
 msgstr "Suivre"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(par URL ou pseudo@hôte)"
 msgstr "(par URL ou pseudo@hôte)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Repartager"
 msgstr "Repartager"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(par URL)"
 msgstr "(par URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Aime"
 msgstr "Aime"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Paramètre du compte…"
 msgstr "Paramètre du compte…"
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Nom affiché :"
 msgstr "Nom affiché :"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Votre nom"
 msgstr "Votre nom"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Avatar : "
 msgstr "Avatar : "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Supprimer l'avatar actuel"
 msgstr "Supprimer l'avatar actuel"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Image d'entête (bannière) : "
 msgstr "Image d'entête (bannière) : "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Supprimer l'image d'entête actuelle"
 msgstr "Supprimer l'image d'entête actuelle"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Description :"
 msgstr "Description :"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Décrivez-vous ici…"
 msgstr "Décrivez-vous ici…"
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Toujours afficher le contenu sensible"
 msgstr "Toujours afficher le contenu sensible"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Adresse email pour les notifications :"
 msgstr "Adresse email pour les notifications :"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Notifications Telegram (clé de bot et ID de discussion) :"
 msgstr "Notifications Telegram (clé de bot et ID de discussion) :"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "notifications ntfy (serveur et jeton ntfy) :"
 msgstr "notifications ntfy (serveur et jeton ntfy) :"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr ""
 msgstr ""
 "Nombre de jours maximum de rétention des messages (0 : réglages du serveur) :"
 "Nombre de jours maximum de rétention des messages (0 : réglages du serveur) :"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Rejeter les messages directs des personnes que vous ne suivez pas"
 msgstr "Rejeter les messages directs des personnes que vous ne suivez pas"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Ce compte est un bot"
 msgstr "Ce compte est un bot"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Auto-repartage de toutes les mentions de ce compte"
 msgstr "Auto-repartage de toutes les mentions de ce compte"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr "Ce compte est privé (les messages ne sont pas affiché sur le web)"
 msgstr "Ce compte est privé (les messages ne sont pas affiché sur le web)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "replier les fils de discussion principaux par défaut"
 msgstr "replier les fils de discussion principaux par défaut"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Les demande de suivi doivent être approuvées"
 msgstr "Les demande de suivi doivent être approuvées"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Publier les statistiques d'abonnements"
 msgstr "Publier les statistiques d'abonnements"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Localisation actuelle :"
 msgstr "Localisation actuelle :"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Métadonnées du profile (paires clé=valeur à chaque ligne) :"
 msgstr "Métadonnées du profile (paires clé=valeur à chaque ligne) :"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Langue de l'interface web :"
 msgstr "Langue de l'interface web :"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Nouveau mot de passe :"
 msgstr "Nouveau mot de passe :"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Répétez le nouveau mot de passe :"
 msgstr "Répétez le nouveau mot de passe :"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Mettre à jour les infos du compte"
 msgstr "Mettre à jour les infos du compte"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "hashtags suivis…"
 msgstr "hashtags suivis…"
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Un hashtag par ligne"
 msgstr "Un hashtag par ligne"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Mettre à jour les hashtags"
 msgstr "Mettre à jour les hashtags"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Dire que vous aimez ce message"
 msgstr "Dire que vous aimez ce message"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "N'aime plus"
 msgstr "N'aime plus"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Nan, j'aime pas tant que ça"
 msgstr "Nan, j'aime pas tant que ça"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Dés-épingler"
 msgstr "Dés-épingler"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Dés-épingler ce message de votre chronologie"
 msgstr "Dés-épingler ce message de votre chronologie"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Épingler"
 msgstr "Épingler"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Épingler ce message en haut de votre chronologie"
 msgstr "Épingler ce message en haut de votre chronologie"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Annoncer ce message aux personnes abonnées"
 msgstr "Annoncer ce message aux personnes abonnées"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Dé-repartager"
 msgstr "Dé-repartager"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Je regrette d'avoir repartagé ceci"
 msgstr "Je regrette d'avoir repartagé ceci"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Retirer le signet"
 msgstr "Retirer le signet"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Supprime ce message de vos signets"
 msgstr "Supprime ce message de vos signets"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Signet"
 msgstr "Signet"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Ajouter ce message à vos signets"
 msgstr "Ajouter ce message à vos signets"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Ne plus suivre"
 msgstr "Ne plus suivre"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Arrêter de suivre les activités de cette personne"
 msgstr "Arrêter de suivre les activités de cette personne"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Commencer à suivre les activité de cette personne"
 msgstr "Commencer à suivre les activité de cette personne"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Ne plus suivre le Groupe"
 msgstr "Ne plus suivre le Groupe"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Arrêter de suivre ce groupe ou canal"
 msgstr "Arrêter de suivre ce groupe ou canal"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Suivre le Groupe"
 msgstr "Suivre le Groupe"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Commencer à suivre ce groupe ou canal"
 msgstr "Commencer à suivre ce groupe ou canal"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "SOURDINE"
 msgstr "SOURDINE"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Bloquer toute activité de cette personne à jamais"
 msgstr "Bloquer toute activité de cette personne à jamais"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Supprimer"
 msgstr "Supprimer"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Supprimer ce message"
 msgstr "Supprimer ce message"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Cacher"
 msgstr "Cacher"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Cacher ce message et ses réponses"
 msgstr "Cacher ce message et ses réponses"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Modifier…"
 msgstr "Modifier…"
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Répondre…"
 msgstr "Répondre…"
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Tronqué (trop profond)"
 msgstr "Tronqué (trop profond)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "vous suit"
 msgstr "vous suit"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Épinglé"
 msgstr "Épinglé"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Ajouté aux signets"
 msgstr "Ajouté aux signets"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Sondage"
 msgstr "Sondage"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Voté"
 msgstr "Voté"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Événement"
 msgstr "Événement"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "Repartagé"
 msgstr "Repartagé"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "En réponse à"
 msgstr "En réponse à"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [CONTENU SENSIBLE]"
 msgstr " [CONTENU SENSIBLE]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Vote"
 msgstr "Vote"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Terminé"
 msgstr "Terminé"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Termine dans"
 msgstr "Termine dans"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Vidéo"
 msgstr "Vidéo"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Audio"
 msgstr "Audio"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Pièce jointe"
 msgstr "Pièce jointe"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Alt…"
 msgstr "Alt…"
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Canal ou communauté source"
 msgstr "Canal ou communauté source"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Date : "
 msgstr "Date : "
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Plus anciens…"
 msgstr "Plus anciens…"
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "à propos de ce site"
 msgstr "à propos de ce site"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "fonctionne grace à "
 msgstr "fonctionne grace à "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Rejeter"
 msgstr "Rejeter"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Chronologie pour la liste '%s'"
 msgstr "Chronologie pour la liste '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Messages épinglés"
 msgstr "Messages épinglés"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Messages en signets"
 msgstr "Messages en signets"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Brouillons de messages"
 msgstr "Brouillons de messages"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "Pas d'avantage de message non vus"
 msgstr "Pas d'avantage de message non vus"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Retourner en haut"
 msgstr "Retourner en haut"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Historique"
 msgstr "Historique"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Plus…"
 msgstr "Plus…"
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Illimité"
 msgstr "Illimité"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Permettre les annonces (repartages) par cette personne"
 msgstr "Permettre les annonces (repartages) par cette personne"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Limite"
 msgstr "Limite"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Bloquer les annonces (repartages) par cette personne"
 msgstr "Bloquer les annonces (repartages) par cette personne"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Supprimer cette personne"
 msgstr "Supprimer cette personne"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Approuver"
 msgstr "Approuver"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Approuver cette demande de suivi"
 msgstr "Approuver cette demande de suivi"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Rejeter"
 msgstr "Rejeter"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Rejeter la demande suivante"
 msgstr "Rejeter la demande suivante"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Ne plus taire"
 msgstr "Ne plus taire"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Arrêter de bloquer les activités de cette personne"
 msgstr "Arrêter de bloquer les activités de cette personne"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Bloque toutes les activités de cette personne"
 msgstr "Bloque toutes les activités de cette personne"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Message direct…"
 msgstr "Message direct…"
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Confirmation de suivi en attente"
 msgstr "Confirmation de suivi en attente"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Personnes que vous suivez"
 msgstr "Personnes que vous suivez"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Personnes qui vous suivent"
 msgstr "Personnes qui vous suivent"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Tout nettoyer"
 msgstr "Tout nettoyer"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Mention"
 msgstr "Mention"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Sondage terminé"
 msgstr "Sondage terminé"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Requête de suivi"
 msgstr "Requête de suivi"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Contexte"
 msgstr "Contexte"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Nouveau"
 msgstr "Nouveau"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Déjà vu"
 msgstr "Déjà vu"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Aucun"
 msgstr "Aucun"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Résultats de recherche pour le compte %s"
 msgstr "Résultats de recherche pour le compte %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "Compte %s non trouvé"
 msgstr "Compte %s non trouvé"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Résultats de recherche pour le tag %s"
 msgstr "Résultats de recherche pour le tag %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "Rien n'a été trouvé pour le tag %s"
 msgstr "Rien n'a été trouvé pour le tag %s"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Résultats de recherche pour '%s' (il pourrait y en avoir davantage)"
 msgstr "Résultats de recherche pour '%s' (il pourrait y en avoir davantage)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Résultats de recherche pour '%s'"
 msgstr "Résultats de recherche pour '%s'"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "Pas davantage de résultats pour '%s'"
 msgstr "Pas davantage de résultats pour '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "Rien n'a été trouvé pour '%s'"
 msgstr "Rien n'a été trouvé pour '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Montrer la chronologie de l'instance"
 msgstr "Montrer la chronologie de l'instance"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Montrer le chronologie pour la liste '%s'"
 msgstr "Montrer le chronologie pour la liste '%s'"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Résultats de recherche pour le tag #%s"
 msgstr "Résultats de recherche pour le tag #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Messages récents des internautes de cette instance"
 msgstr "Messages récents des internautes de cette instance"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Hashtags bloqués…"
 msgstr "Hashtags bloqués…"
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "URL optionnelle pour répondre à"
 msgstr "URL optionnelle pour répondre à"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -709,54 +709,74 @@ msgstr ""
 "Option 3…\n"
 "Option 3…\n"
 "…"
 "…"
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "Clé API de bot"
 msgstr "Clé API de bot"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "Identifiant du salon"
 msgstr "Identifiant du salon"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "serveur ntfy – adresse complète (ex : https://ntfy.sh/VotreSujet)"
 msgstr "serveur ntfy – adresse complète (ex : https://ntfy.sh/VotreSujet)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "jeton ntfy – si nécessaire"
 msgstr "jeton ntfy – si nécessaire"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "épinglé"
 msgstr "épinglé"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "signets"
 msgstr "signets"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "brouillons"
 msgstr "brouillons"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr "Publication planifiée…"
 msgstr "Publication planifiée…"
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr "Date et heure de publication :"
 msgstr "Date et heure de publication :"
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr "Publications planifiées"
 msgstr "Publications planifiées"
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr "publications planifiées"
 msgstr "publications planifiées"
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr "Date et heure de publication (fuseau horaire : %s) :"
 msgstr "Date et heure de publication (fuseau horaire : %s) :"
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr "Fuseau horaire :"
 msgstr "Fuseau horaire :"
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 782 - 0
po/fy_NL.po

@@ -0,0 +1,782 @@
+# snac message translation file
+# 
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: snac\n"
+"Last-Translator: martijndeb\n"
+"Language: fy_NL\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+
+#: html.c:402
+msgid "Sensitive content: "
+msgstr "Gefoelige ynhâld: "
+
+#: html.c:410
+msgid "Sensitive content description"
+msgstr "Beskriuwing fan gefoelige ynhâld"
+
+#: html.c:423
+msgid "Only for mentioned people: "
+msgstr "Allinnich foar neamde personen: "
+
+#: html.c:446
+msgid "Reply to (URL): "
+msgstr "Antwurd op (URL): "
+
+#: html.c:455
+msgid "Don't send, but store as a draft"
+msgstr "Net ferstjoere, mar bewarje as konsept"
+
+#: html.c:456
+msgid "Draft:"
+msgstr "Konsept:"
+
+#: html.c:546
+msgid "Attachments..."
+msgstr "Bylagen..."
+
+#: html.c:569
+msgid "File:"
+msgstr "Bestân:"
+
+#: html.c:573
+msgid "Clear this field to delete the attachment"
+msgstr "Fjild leech meitsje om de bylage fuort te smiten"
+
+#: html.c:582 html.c:607
+msgid "Attachment description"
+msgstr "Beskriuwing fan bylage"
+
+#: html.c:618
+msgid "Poll..."
+msgstr "Peiling..."
+
+#: html.c:620
+msgid "Poll options (one per line, up to 8):"
+msgstr "Peilingopsjes (ien per rigel, oant 8):"
+
+#: html.c:632
+msgid "One choice"
+msgstr "Ien keuze"
+
+#: html.c:635
+msgid "Multiple choices"
+msgstr "Mear keuzes"
+
+#: html.c:641
+msgid "End in 5 minutes"
+msgstr "Einiget oer 5 minuten"
+
+#: html.c:645
+msgid "End in 1 hour"
+msgstr "Einiget oer 1 oere"
+
+#: html.c:648
+msgid "End in 1 day"
+msgstr "Einiget oer 1 dei"
+
+#: html.c:656
+msgid "Post"
+msgstr "Berjocht"
+
+#: html.c:758 html.c:765
+msgid "Site description"
+msgstr "Beskriuwing fan de side"
+
+#: html.c:776
+msgid "Admin email"
+msgstr "Admin e-mail"
+
+#: html.c:789
+msgid "Admin account"
+msgstr "Admin akkount"
+
+#: html.c:854 html.c:1210
+#, c-format
+msgid "%d following, %d followers"
+msgstr "%d folgjend, %d folgers"
+
+#: html.c:951
+msgid "RSS"
+msgstr "RSS"
+
+#: html.c:956 html.c:995
+msgid "private"
+msgstr "privé"
+
+#: html.c:991
+msgid "public"
+msgstr "publik"
+
+#: html.c:999
+msgid "notifications"
+msgstr "notifikaasjes"
+
+#: html.c:1004
+msgid "people"
+msgstr "minsken"
+
+#: html.c:1009
+msgid "instance"
+msgstr "instantsje"
+
+#: html.c:1018
+msgid ""
+"Search posts by URL or content (regular expression), @user@host accounts, or "
+"#tag"
+msgstr ""
+"Sykje berjochten op URL of ynh??ld (reguliere ekspresje), @brûker@host "
+"akkounts, of #tag"
+
+#: html.c:1019
+msgid "Content search"
+msgstr "Ynhâld sêkje"
+
+#: html.c:1145
+msgid "verified link"
+msgstr "ferifiearre keppeling"
+
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
+msgid "Location: "
+msgstr "Lokaasje: "
+
+#: html.c:1234
+msgid "New Post..."
+msgstr "Nij berjocht..."
+
+#: html.c:1236
+msgid "What's on your mind?"
+msgstr "Wat wolst diele?"
+
+#: html.c:1245
+msgid "Operations..."
+msgstr "Hannelens..."
+
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
+msgid "Follow"
+msgstr "Folgje"
+
+#: html.c:1262
+msgid "(by URL or user@host)"
+msgstr "(fia URL of brûker@host)"
+
+#: html.c:1277 html.c:1857 html.c:4678
+msgid "Boost"
+msgstr "Boost"
+
+#: html.c:1279 html.c:1296
+msgid "(by URL)"
+msgstr "(fia URL)"
+
+#: html.c:1294 html.c:1836 html.c:4669
+msgid "Like"
+msgstr "Lyk"
+
+#: html.c:1422
+msgid "User Settings..."
+msgstr "Brûkersynstellings..."
+
+#: html.c:1431
+msgid "Display name:"
+msgstr "Werjeftenamme:"
+
+#: html.c:1437
+msgid "Your name"
+msgstr "Jo namme"
+
+#: html.c:1439
+msgid "Avatar: "
+msgstr "Profylplaatsje: "
+
+#: html.c:1447
+msgid "Delete current avatar"
+msgstr "Hjoeddeistige profylplaatsje fuortsmite"
+
+#: html.c:1449
+msgid "Header image (banner): "
+msgstr "Koptekstplaatsje (banner): "
+
+#: html.c:1457
+msgid "Delete current header image"
+msgstr "Hjoeddeistige koptekstplaatsje fuortsmite"
+
+#: html.c:1459
+msgid "Bio:"
+msgstr "Bio:"
+
+#: html.c:1465
+msgid "Write about yourself here..."
+msgstr "Skriuw hjir wat oer josels..."
+
+#: html.c:1474
+msgid "Always show sensitive content"
+msgstr "Altyd gefoelige ynhâld toanje"
+
+#: html.c:1476
+msgid "Email address for notifications:"
+msgstr "E-mailadres foar notifikaasjes:"
+
+#: html.c:1484
+msgid "Telegram notifications (bot key and chat id):"
+msgstr "Telegram notifikaasjes (bot kaai en chat id):"
+
+#: html.c:1498
+msgid "ntfy notifications (ntfy server and token):"
+msgstr "ntfy notifikaasjes (ntfy server en token):"
+
+#: html.c:1520
+msgid "Maximum days to keep posts (0: server settings):"
+msgstr ""
+"Maksimaal oantal dagen om berjochten te bewarjen (0: serverynstellings):"
+
+#: html.c:1534
+msgid "Drop direct messages from people you don't follow"
+msgstr "Direktte berjochten fan minsken dy't jo net folgje fuortsmite"
+
+#: html.c:1543
+msgid "This account is a bot"
+msgstr "Dit akkount is in bot"
+
+#: html.c:1552
+msgid "Auto-boost all mentions to this account"
+msgstr "Automatysk boostje fan alle fermeldingen fan dit akkount"
+
+#: html.c:1561
+msgid "This account is private (posts are not shown through the web)"
+msgstr "Dit akkount is privé (berjochten wurde net toand fia it web)"
+
+#: html.c:1571
+msgid "Collapse top threads by default"
+msgstr "Standert topthreads ynklappe"
+
+#: html.c:1580
+msgid "Follow requests must be approved"
+msgstr "Folchfersiken moatte goedkeard wurde"
+
+#: html.c:1589
+msgid "Publish follower and following metrics"
+msgstr "Folger- en folchstatistiken publisearje"
+
+#: html.c:1591
+msgid "Current location:"
+msgstr "Hjoeddeistige lokaasje:"
+
+#: html.c:1605
+msgid "Profile metadata (key=value pairs in each line):"
+msgstr "Profylmetadata (kaai=wearde pearen yn eltse rigel):"
+
+#: html.c:1616
+msgid "Web interface language:"
+msgstr "Webynterfacetaal:"
+
+#: html.c:1635
+msgid "New password:"
+msgstr "Nij wachtwurd:"
+
+#: html.c:1642
+msgid "Repeat new password:"
+msgstr "Nij wachtwurd werhelje:"
+
+#: html.c:1652
+msgid "Update user info"
+msgstr "Brûkerynformaasje bywurkje"
+
+#: html.c:1663
+msgid "Followed hashtags..."
+msgstr "Folge hashtags..."
+
+#: html.c:1665 html.c:1698
+msgid "One hashtag per line"
+msgstr "Ien hashtag per rigel"
+
+#: html.c:1687 html.c:1719
+msgid "Update hashtags"
+msgstr "Hashtags bywurkje"
+
+#: html.c:1836
+msgid "Say you like this post"
+msgstr "Sis dat jo dit berjocht mooi fine"
+
+#: html.c:1841 html.c:4687
+msgid "Unlike"
+msgstr "Net mooi fine"
+
+#: html.c:1841
+msgid "Nah don't like it that much"
+msgstr "Nee, ik find it net sa mooi"
+
+#: html.c:1847 html.c:4824
+msgid "Unpin"
+msgstr "Net fêstsette"
+
+#: html.c:1847
+msgid "Unpin this post from your timeline"
+msgstr "Dit berjocht net mear fêstsette op jo tiidline"
+
+#: html.c:1850 html.c:4819
+msgid "Pin"
+msgstr "Fêstsette"
+
+#: html.c:1850
+msgid "Pin this post to the top of your timeline"
+msgstr "Dit berjocht fêstsette boppe-oan jo tiidline"
+
+#: html.c:1857
+msgid "Announce this post to your followers"
+msgstr "Dit berjocht oankondichje by jo folgers"
+
+#: html.c:1862 html.c:4695
+msgid "Unboost"
+msgstr "Untboostje"
+
+#: html.c:1862
+msgid "I regret I boosted this"
+msgstr "Ik betreure dat ik dit boostet ha"
+
+#: html.c:1868 html.c:4834
+msgid "Unbookmark"
+msgstr "Ut favorite fuortsmite"
+
+#: html.c:1868
+msgid "Delete this post from your bookmarks"
+msgstr "Dit berjocht ut jo favorite fuortsmite"
+
+#: html.c:1871 html.c:4829
+msgid "Bookmark"
+msgstr "Favoryt"
+
+#: html.c:1871
+msgid "Add this post to your bookmarks"
+msgstr "Dit berjocht tafoegje oan jo favorite"
+
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
+msgid "Unfollow"
+msgstr "Untfolgje"
+
+#: html.c:1877 html.c:3310
+msgid "Stop following this user's activity"
+msgstr "Stopje mei it folgjen fan de aktiviteit fan dizze brûker"
+
+#: html.c:1881 html.c:3324
+msgid "Start following this user's activity"
+msgstr "Begjinne mei it folgjen fan de aktiviteit fan dizze brûker"
+
+#: html.c:1887 html.c:4772
+msgid "Unfollow Group"
+msgstr "Untfolgje groep"
+
+#: html.c:1888
+msgid "Stop following this group or channel"
+msgstr "Stopje mei it folgjen fan dizze groep of kanaal"
+
+#: html.c:1892 html.c:4759
+msgid "Follow Group"
+msgstr "Folgje groep"
+
+#: html.c:1893
+msgid "Start following this group or channel"
+msgstr "Begjinne mei it folgjen fan dizze groep of kanaal"
+
+#: html.c:1898 html.c:3346 html.c:4703
+msgid "MUTE"
+msgstr "STILJE"
+
+#: html.c:1899
+msgid "Block any activity from this user forever"
+msgstr "Alle aktiviteit fan dizze brûker foar altyd blokkearje"
+
+#: html.c:1904 html.c:3328 html.c:4789
+msgid "Delete"
+msgstr "Fuortsmite"
+
+#: html.c:1904
+msgid "Delete this post"
+msgstr "Dit berjocht fuortsmite"
+
+#: html.c:1907 html.c:4711
+msgid "Hide"
+msgstr "Ferbergje"
+
+#: html.c:1907
+msgid "Hide this post and its children"
+msgstr "Dit berjocht en syn bern ferbergje"
+
+#: html.c:1947
+msgid "Edit..."
+msgstr "Bewurkje..."
+
+#: html.c:1967
+msgid "Reply..."
+msgstr "Antwurd..."
+
+#: html.c:2018
+msgid "Truncated (too deep)"
+msgstr "Ofkapte (te djip)"
+
+#: html.c:2036
+msgid "follows you"
+msgstr "folget jo"
+
+#: html.c:2104
+msgid "Pinned"
+msgstr "Fêstsetten"
+
+#: html.c:2112
+msgid "Bookmarked"
+msgstr "Favoryt"
+
+#: html.c:2120
+msgid "Poll"
+msgstr "Peiling"
+
+#: html.c:2127
+msgid "Voted"
+msgstr "Stimme"
+
+#: html.c:2136
+msgid "Event"
+msgstr "Barrens"
+
+#: html.c:2168 html.c:2197
+msgid "boosted"
+msgstr "boostet"
+
+#: html.c:2211
+msgid "in reply to"
+msgstr "as antwurd op"
+
+#: html.c:2266
+msgid " [SENSITIVE CONTENT]"
+msgstr " [GEFOELIGE YNHÂLD]"
+
+#: html.c:2443
+msgid "Vote"
+msgstr "Stimme"
+
+#: html.c:2453
+msgid "Closed"
+msgstr "Sletten"
+
+#: html.c:2478
+msgid "Closes in"
+msgstr "Slut oer"
+
+#: html.c:2558
+msgid "Video"
+msgstr "Fideo"
+
+#: html.c:2573
+msgid "Audio"
+msgstr "Audio"
+
+#: html.c:2601
+msgid "Attachment"
+msgstr "Bylage"
+
+#: html.c:2615
+msgid "Alt..."
+msgstr "Alt..."
+
+#: html.c:2628
+msgid "Source channel or community"
+msgstr "Boarnekanaal of mienskip"
+
+#: html.c:2722
+msgid "Time: "
+msgstr "Tiid: "
+
+#: html.c:2803
+msgid "Older..."
+msgstr "Alder..."
+
+#: html.c:2905
+msgid "about this site"
+msgstr "oer dizze side"
+
+#: html.c:2907
+msgid "powered by "
+msgstr "oanjoegen troch "
+
+#: html.c:2972
+msgid "Dismiss"
+msgstr "Wegerje"
+
+#: html.c:2989
+#, c-format
+msgid "Timeline for list '%s'"
+msgstr "Tiidline foar list '%s'"
+
+#: html.c:3008 html.c:4092
+msgid "Pinned posts"
+msgstr "Fêstsette berjochten"
+
+#: html.c:3020 html.c:4107
+msgid "Bookmarked posts"
+msgstr "Favorite berjochten"
+
+#: html.c:3032 html.c:4122
+msgid "Post drafts"
+msgstr "Berjochtkonsepten"
+
+#: html.c:3109
+msgid "No more unseen posts"
+msgstr "Gjin net-lêzene berjochten mear"
+
+#: html.c:3113 html.c:3213
+msgid "Back to top"
+msgstr "Werom nei boppe"
+
+#: html.c:3166
+msgid "History"
+msgstr "Skiednis"
+
+#: html.c:3218 html.c:3657
+msgid "More..."
+msgstr "Mear..."
+
+#: html.c:3314 html.c:4725
+msgid "Unlimit"
+msgstr "Unbeheind"
+
+#: html.c:3315
+msgid "Allow announces (boosts) from this user"
+msgstr "Oankondichings (boosts) fan dizze brûker tasteane"
+
+#: html.c:3318 html.c:4721
+msgid "Limit"
+msgstr "Beheine"
+
+#: html.c:3319
+msgid "Block announces (boosts) from this user"
+msgstr "Oankondichings (boosts) fan dizze brûker blokkearje"
+
+#: html.c:3328
+msgid "Delete this user"
+msgstr "Dizze brûker fuortsmite"
+
+#: html.c:3333 html.c:4839
+msgid "Approve"
+msgstr "Goedkarre"
+
+#: html.c:3334
+msgid "Approve this follow request"
+msgstr "Dit folchfersk goedkarre"
+
+#: html.c:3337 html.c:4863
+msgid "Discard"
+msgstr "Wegerje"
+
+#: html.c:3337
+msgid "Discard this follow request"
+msgstr "Dit folchfersk wegerje"
+
+#: html.c:3342 html.c:4707
+msgid "Unmute"
+msgstr "Net mear stilje"
+
+#: html.c:3343
+msgid "Stop blocking activities from this user"
+msgstr "Stopje mei it blokkearjen fan aktiviteiten fan dizze brûker"
+
+#: html.c:3347
+msgid "Block any activity from this user"
+msgstr "Alle aktiviteit fan dizze brûker blokkearje"
+
+#: html.c:3355
+msgid "Direct Message..."
+msgstr "Persoanlik berjocht..."
+
+#: html.c:3390
+msgid "Pending follow confirmations"
+msgstr "Iepenstjitte folchbefestichings"
+
+#: html.c:3394
+msgid "People you follow"
+msgstr "Minsken dy't jo folge"
+
+#: html.c:3395
+msgid "People that follow you"
+msgstr "Minsken dy't jo folge"
+
+#: html.c:3434
+msgid "Clear all"
+msgstr "Alles wiskje"
+
+#: html.c:3494
+msgid "Mention"
+msgstr "Neame"
+
+#: html.c:3497
+msgid "Finished poll"
+msgstr "Ofêrunde peiling"
+
+#: html.c:3513
+msgid "Follow Request"
+msgstr "Folchfersk"
+
+#: html.c:3597
+msgid "Context"
+msgstr "Kontekst"
+
+#: html.c:3615
+msgid "New"
+msgstr "Nij"
+
+#: html.c:3630
+msgid "Already seen"
+msgstr "Al sjoen"
+
+#: html.c:3645
+msgid "None"
+msgstr "Gjin"
+
+#: html.c:3917
+#, c-format
+msgid "Search results for account %s"
+msgstr "Sêkresultaten foar akkount %s"
+
+#: html.c:3924
+#, c-format
+msgid "Account %s not found"
+msgstr "Akkount %s net foun"
+
+#: html.c:3955
+#, c-format
+msgid "Search results for tag %s"
+msgstr "Sêkresultaten foar tag %s"
+
+#: html.c:3955
+#, c-format
+msgid "Nothing found for tag %s"
+msgstr "Neat foun foar tag %s"
+
+#: html.c:3971
+#, c-format
+msgid "Search results for '%s' (may be more)"
+msgstr "Sêkresultaten foar '%s' (mooglik mear)"
+
+#: html.c:3974
+#, c-format
+msgid "Search results for '%s'"
+msgstr "Sêkresultaten foar '%s'"
+
+#: html.c:3977
+#, c-format
+msgid "No more matches for '%s'"
+msgstr "Gjin fjirder oerienkomsten foar '%s'"
+
+#: html.c:3979
+#, c-format
+msgid "Nothing found for '%s'"
+msgstr "Neat foun foar '%s'"
+
+#: html.c:4077
+msgid "Showing instance timeline"
+msgstr "Tiidline fan ynstallaasje toane"
+
+#: html.c:4160
+#, c-format
+msgid "Showing timeline for list '%s'"
+msgstr "Tiidline foar list '%s' toane"
+
+#: httpd.c:258
+#, c-format
+msgid "Search results for tag #%s"
+msgstr "Sêkresultaten foar tag #%s"
+
+#: httpd.c:267
+msgid "Recent posts by users in this instance"
+msgstr "Resinte berjochten fan brûkers yn dizze ynstallaasje"
+
+#: html.c:1696
+msgid "Blocked hashtags..."
+msgstr "Blokkearre hashtags..."
+
+#: html.c:450
+msgid "Optional URL to reply to"
+msgstr "Opsjonele URL om op te antwurdjen"
+
+#: html.c:627
+msgid ""
+"Option 1...\n"
+"Option 2...\n"
+"Option 3...\n"
+"..."
+msgstr ""
+"Optie 1...\n"
+"Optie 2...\n"
+"Optie 3...\n"
+"..."
+
+#: html.c:1490
+msgid "Bot API key"
+msgstr "Bot API kaai"
+
+#: html.c:1496
+msgid "Chat id"
+msgstr "Chat id"
+
+#: html.c:1504
+msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
+msgstr "ntfy server - folsleine URL (foarbyld: https://ntfy.sh/YourTopic)"
+
+#: html.c:1510
+msgid "ntfy token - if needed"
+msgstr "ntfy token - as nedich"
+
+#: html.c:3009
+msgid "pinned"
+msgstr "fêssetten"
+
+#: html.c:3021
+msgid "bookmarks"
+msgstr "favorite"
+
+#: html.c:3033
+msgid "drafts"
+msgstr "konsepten"
+
+#: html.c:516
+msgid "Scheduled post..."
+msgstr "Planne berjocht..."
+
+msgid "Post date and time:"
+msgstr "Berjocht datum en tiid:"
+
+#: html.c:3044 html.c:4137
+msgid "Scheduled posts"
+msgstr "Planne berjochten"
+
+#: html.c:3045
+msgid "scheduled posts"
+msgstr "planne berjochten"
+
+#: html.c:510
+#, c-format
+msgid "Post date and time (timezone: %s):"
+msgstr "Berjocht datum en tiid (tiidsone: %s):"
+
+#: html.c:1621
+msgid "Time zone:"
+msgstr "Tiidsone:"
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/it.po

@@ -8,120 +8,120 @@ msgstr ""
 "Language: it\n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Contenuto sensibile"
 msgstr "Contenuto sensibile"
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Descrizione del contenuto sensibile"
 msgstr "Descrizione del contenuto sensibile"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Riservato alle persone indicate: "
 msgstr "Riservato alle persone indicate: "
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Rispondi a (URL): "
 msgstr "Rispondi a (URL): "
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "Salva come bozza senza inviare"
 msgstr "Salva come bozza senza inviare"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Bozza"
 msgstr "Bozza"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Allegati..."
 msgstr "Allegati..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "File:"
 msgstr "File:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Pulisci ed elimina l'allegato"
 msgstr "Pulisci ed elimina l'allegato"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Descrizione dell'allegato"
 msgstr "Descrizione dell'allegato"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Sondaggio..."
 msgstr "Sondaggio..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Scelte per il sondaggio (una per linea, massimo 8):"
 msgstr "Scelte per il sondaggio (una per linea, massimo 8):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Una scelta"
 msgstr "Una scelta"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Scelte multiple"
 msgstr "Scelte multiple"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Termina in 5 minuti"
 msgstr "Termina in 5 minuti"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Termina in 1 ora"
 msgstr "Termina in 1 ora"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Termina in 1 giorno"
 msgstr "Termina in 1 giorno"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Post"
 msgstr "Post"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Descrizione del sito web"
 msgstr "Descrizione del sito web"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Email dell'amministratore"
 msgstr "Email dell'amministratore"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Account amministratore"
 msgstr "Account amministratore"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d seguiti, %d seguenti"
 msgstr "%d seguiti, %d seguenti"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "privato"
 msgstr "privato"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "pubblico"
 msgstr "pubblico"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "notifiche"
 msgstr "notifiche"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "persone"
 msgstr "persone"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "istanza"
 msgstr "istanza"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -129,574 +129,574 @@ msgstr ""
 "Ricerca post per URL o contenuto (espressione regolare), @user@host "
 "Ricerca post per URL o contenuto (espressione regolare), @user@host "
 "accounts, #tag"
 "accounts, #tag"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Ricerca contenuto"
 msgstr "Ricerca contenuto"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "link verificato"
 msgstr "link verificato"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Posizione: "
 msgstr "Posizione: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Nuovo post..."
 msgstr "Nuovo post..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "Cosa stai pensando?"
 msgstr "Cosa stai pensando?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Operazioni..."
 msgstr "Operazioni..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Segui"
 msgstr "Segui"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(per URL o user@host)"
 msgstr "(per URL o user@host)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Annuncia"
 msgstr "Annuncia"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(per URL)"
 msgstr "(per URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Mi piace"
 msgstr "Mi piace"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Impostazioni..."
 msgstr "Impostazioni..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Nome visualizzato:"
 msgstr "Nome visualizzato:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Il tuo nome"
 msgstr "Il tuo nome"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Avatar: "
 msgstr "Avatar: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Elimina l'avatar"
 msgstr "Elimina l'avatar"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Immagine intestazione (banner): "
 msgstr "Immagine intestazione (banner): "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Elimina l'immagine d'intestazione"
 msgstr "Elimina l'immagine d'intestazione"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Bio:"
 msgstr "Bio:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Descriviti qui..."
 msgstr "Descriviti qui..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Mostra sempre i contenuti sensibili"
 msgstr "Mostra sempre i contenuti sensibili"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Indirizzo email per le notifiche:"
 msgstr "Indirizzo email per le notifiche:"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Notifiche Telegram (bot key e chat id):"
 msgstr "Notifiche Telegram (bot key e chat id):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "Notifiche ntfy (server ntfy e token)"
 msgstr "Notifiche ntfy (server ntfy e token)"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr "Giorni di mantenimento dei post (0: impostazione server)"
 msgstr "Giorni di mantenimento dei post (0: impostazione server)"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Elimina i messaggi diretti delle persone non seguite"
 msgstr "Elimina i messaggi diretti delle persone non seguite"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Questo account è un bot"
 msgstr "Questo account è un bot"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Annuncio automatico delle citazioni a quest'account"
 msgstr "Annuncio automatico delle citazioni a quest'account"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr "Quest'account è privato (post invisibili nel web)"
 msgstr "Quest'account è privato (post invisibili nel web)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Tieni chiuse le discussioni"
 msgstr "Tieni chiuse le discussioni"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Devi approvare le richieste dei seguenti"
 msgstr "Devi approvare le richieste dei seguenti"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Rendi pubblici seguenti e seguiti"
 msgstr "Rendi pubblici seguenti e seguiti"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Posizione corrente:"
 msgstr "Posizione corrente:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Dati del profilo (coppie di chiave=valore per ogni linea):"
 msgstr "Dati del profilo (coppie di chiave=valore per ogni linea):"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Lingua dell'interfaccia web:"
 msgstr "Lingua dell'interfaccia web:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Nuova password:"
 msgstr "Nuova password:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Reinserisci la password:"
 msgstr "Reinserisci la password:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Aggiorna dati utente"
 msgstr "Aggiorna dati utente"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Hashtag seguiti..."
 msgstr "Hashtag seguiti..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Un hashtag per linea"
 msgstr "Un hashtag per linea"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Aggiorna hashtags"
 msgstr "Aggiorna hashtags"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Questo post ti piace"
 msgstr "Questo post ti piace"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "Non mi piace"
 msgstr "Non mi piace"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "No, non mi piace molto"
 msgstr "No, non mi piace molto"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Sgancia"
 msgstr "Sgancia"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Sgancia questo post dalla timeline"
 msgstr "Sgancia questo post dalla timeline"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Aggancia"
 msgstr "Aggancia"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Aggancia questo post in cima alla timeline"
 msgstr "Aggancia questo post in cima alla timeline"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Annuncia questo post ai tuoi seguenti"
 msgstr "Annuncia questo post ai tuoi seguenti"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Rimuovi annuncio"
 msgstr "Rimuovi annuncio"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Mi pento di aver annunciato questo"
 msgstr "Mi pento di aver annunciato questo"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Elimina segnalibro"
 msgstr "Elimina segnalibro"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Elimina questo post dai segnalibri"
 msgstr "Elimina questo post dai segnalibri"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Segnalibro"
 msgstr "Segnalibro"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Aggiungi questo post ai segnalibri"
 msgstr "Aggiungi questo post ai segnalibri"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Smetti di seguire"
 msgstr "Smetti di seguire"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Smetti di seguire l'utente"
 msgstr "Smetti di seguire l'utente"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Sequi l'utente"
 msgstr "Sequi l'utente"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Smetti di seguire il gruppo"
 msgstr "Smetti di seguire il gruppo"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Smetti di seguire il gruppo o canale"
 msgstr "Smetti di seguire il gruppo o canale"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Segui grupp"
 msgstr "Segui grupp"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Segui il gruppo o canale"
 msgstr "Segui il gruppo o canale"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "Silenzia"
 msgstr "Silenzia"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Blocca l'utente"
 msgstr "Blocca l'utente"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Elimina"
 msgstr "Elimina"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Elimina questo post"
 msgstr "Elimina questo post"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Nascondi"
 msgstr "Nascondi"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Nascondi questo post completamente"
 msgstr "Nascondi questo post completamente"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Modifica..."
 msgstr "Modifica..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Rispondi..."
 msgstr "Rispondi..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Troncato (troppo lungo)"
 msgstr "Troncato (troppo lungo)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "Ti segue"
 msgstr "Ti segue"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Aggancia"
 msgstr "Aggancia"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Segnalibro"
 msgstr "Segnalibro"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Sondaggio"
 msgstr "Sondaggio"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Votato"
 msgstr "Votato"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Evento"
 msgstr "Evento"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "Annunciato"
 msgstr "Annunciato"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "in risposta a"
 msgstr "in risposta a"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [CONTENUTO SENSIBILE]"
 msgstr " [CONTENUTO SENSIBILE]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Vota"
 msgstr "Vota"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Chiuso"
 msgstr "Chiuso"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Chiude in"
 msgstr "Chiude in"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Video"
 msgstr "Video"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Audio"
 msgstr "Audio"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Allegato"
 msgstr "Allegato"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Testo alternativo..."
 msgstr "Testo alternativo..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Provenienza del canale o comunità"
 msgstr "Provenienza del canale o comunità"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Orario:"
 msgstr "Orario:"
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Vecchi..."
 msgstr "Vecchi..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "descrizione"
 msgstr "descrizione"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "gestito da "
 msgstr "gestito da "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Congeda"
 msgstr "Congeda"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Timeline per la lista '%s'"
 msgstr "Timeline per la lista '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Post appuntati"
 msgstr "Post appuntati"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Post segnati"
 msgstr "Post segnati"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Bozze"
 msgstr "Bozze"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "Nessun ulteriore post"
 msgstr "Nessun ulteriore post"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Torna in cima"
 msgstr "Torna in cima"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Storico"
 msgstr "Storico"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Ancora..."
 msgstr "Ancora..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Senza limite"
 msgstr "Senza limite"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Permetti annunci dall'utente"
 msgstr "Permetti annunci dall'utente"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Limite"
 msgstr "Limite"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Blocca annunci dall'utente"
 msgstr "Blocca annunci dall'utente"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Elimina l'utente"
 msgstr "Elimina l'utente"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Approva"
 msgstr "Approva"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Approva richiesta di seguirti"
 msgstr "Approva richiesta di seguirti"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Scarta"
 msgstr "Scarta"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Scarta richiesta di seguirti"
 msgstr "Scarta richiesta di seguirti"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Rimuovi silenziamento"
 msgstr "Rimuovi silenziamento"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Sblocca l'utente"
 msgstr "Sblocca l'utente"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Blocca l'utente completamente"
 msgstr "Blocca l'utente completamente"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Messaggio diretto..."
 msgstr "Messaggio diretto..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Conferme di seguirti in attesa"
 msgstr "Conferme di seguirti in attesa"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Persone che segui"
 msgstr "Persone che segui"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Persone che ti seguono"
 msgstr "Persone che ti seguono"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Pulisci"
 msgstr "Pulisci"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Citazione"
 msgstr "Citazione"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Sondaggio concluso"
 msgstr "Sondaggio concluso"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Richiesta di seguire"
 msgstr "Richiesta di seguire"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Contesto"
 msgstr "Contesto"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Nuovo"
 msgstr "Nuovo"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Già visto"
 msgstr "Già visto"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Niente"
 msgstr "Niente"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Risultati per account %s"
 msgstr "Risultati per account %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "Account %s non trovato"
 msgstr "Account %s non trovato"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Risultati per tag %s"
 msgstr "Risultati per tag %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "Nessun risultato per il tag %S"
 msgstr "Nessun risultato per il tag %S"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Risultati per tag %s (ancora...)"
 msgstr "Risultati per tag %s (ancora...)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Risultati per %s"
 msgstr "Risultati per %s"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "Nessuna corrispondenza per '%s'"
 msgstr "Nessuna corrispondenza per '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "Non trovato per '%s'"
 msgstr "Non trovato per '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Mostra la timeline dell'istanza"
 msgstr "Mostra la timeline dell'istanza"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Mostra la timeline della lista '%s'"
 msgstr "Mostra la timeline della lista '%s'"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Risultati per tag #%s"
 msgstr "Risultati per tag #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Post recenti in questa istanza"
 msgstr "Post recenti in questa istanza"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Hashtag bloccati..."
 msgstr "Hashtag bloccati..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "URL facoltativo di risposta"
 msgstr "URL facoltativo di risposta"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -708,54 +708,74 @@ msgstr ""
 "Scelta 3...\n"
 "Scelta 3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "Chiave per le API del bot"
 msgstr "Chiave per le API del bot"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "Id della chat"
 msgstr "Id della chat"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "Server ntfy - URL completo (esempio: https://ntfy.sh/YourTopic)"
 msgstr "Server ntfy - URL completo (esempio: https://ntfy.sh/YourTopic)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "Token ntfy - se richiesto"
 msgstr "Token ntfy - se richiesto"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "appuntati"
 msgstr "appuntati"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "segnalibri"
 msgstr "segnalibri"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "bozze"
 msgstr "bozze"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr ""
 msgstr ""
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr ""
 msgstr ""
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 781 - 0
po/nl_NL.po

@@ -0,0 +1,781 @@
+# snac message translation file
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: snac\n"
+"Last-Translator: martijndeb\n"
+"Language: nl_NL\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+
+#: html.c:402
+msgid "Sensitive content: "
+msgstr "Gevoelige inhoud: "
+
+#: html.c:410
+msgid "Sensitive content description"
+msgstr "Omschrijving van gevoelige inhoud"
+
+#: html.c:423
+msgid "Only for mentioned people: "
+msgstr "Enkel voor genoemde personen: "
+
+#: html.c:446
+msgid "Reply to (URL): "
+msgstr "Antwoord op (URL): "
+
+#: html.c:455
+msgid "Don't send, but store as a draft"
+msgstr "Niet verzenden, maar opslaan als concept"
+
+#: html.c:456
+msgid "Draft:"
+msgstr "Concept:"
+
+#: html.c:546
+msgid "Attachments..."
+msgstr "Bijlagen..."
+
+#: html.c:569
+msgid "File:"
+msgstr "Bestand:"
+
+#: html.c:573
+msgid "Clear this field to delete the attachment"
+msgstr "Veld leegmaken om de bijlage te verwijderen"
+
+#: html.c:582 html.c:607
+msgid "Attachment description"
+msgstr "Omschrijving van bijlage"
+
+#: html.c:618
+msgid "Poll..."
+msgstr "Peiling..."
+
+#: html.c:620
+msgid "Poll options (one per line, up to 8):"
+msgstr "Peiling opties (één per regel, tot 8):"
+
+#: html.c:632
+msgid "One choice"
+msgstr "Eén keuze"
+
+#: html.c:635
+msgid "Multiple choices"
+msgstr "Meerdere keuzes"
+
+#: html.c:641
+msgid "End in 5 minutes"
+msgstr "Eindigt over 5 minuten"
+
+#: html.c:645
+msgid "End in 1 hour"
+msgstr "Eindigt over 1 uur"
+
+#: html.c:648
+msgid "End in 1 day"
+msgstr "Eindigt over 1 dag"
+
+#: html.c:656
+msgid "Post"
+msgstr "Bericht"
+
+#: html.c:758 html.c:765
+msgid "Site description"
+msgstr "Omschrijving van de site"
+
+#: html.c:776
+msgid "Admin email"
+msgstr "Admin e-mail"
+
+#: html.c:789
+msgid "Admin account"
+msgstr "Admin account"
+
+#: html.c:854 html.c:1210
+#, c-format
+msgid "%d following, %d followers"
+msgstr "%d volgend, %d volgers"
+
+#: html.c:951
+msgid "RSS"
+msgstr "RSS"
+
+#: html.c:956 html.c:995
+msgid "private"
+msgstr "privé"
+
+#: html.c:991
+msgid "public"
+msgstr "publiek"
+
+#: html.c:999
+msgid "notifications"
+msgstr "notificaties"
+
+#: html.c:1004
+msgid "people"
+msgstr "mensen"
+
+#: html.c:1009
+msgid "instance"
+msgstr "instantie"
+
+#: html.c:1018
+msgid ""
+"Search posts by URL or content (regular expression), @user@host accounts, or "
+"#tag"
+msgstr ""
+"Zoek berichten op URL of inhoud (reguliere expressie), @user@host accounts, "
+"of #tag"
+
+#: html.c:1019
+msgid "Content search"
+msgstr "Inhoud zoeken"
+
+#: html.c:1145
+msgid "verified link"
+msgstr "verifieerde link"
+
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
+msgid "Location: "
+msgstr "Locatie: "
+
+#: html.c:1234
+msgid "New Post..."
+msgstr "Nieuw bericht..."
+
+#: html.c:1236
+msgid "What's on your mind?"
+msgstr "Wat wil je delen?"
+
+#: html.c:1245
+msgid "Operations..."
+msgstr "Handelingen..."
+
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
+msgid "Follow"
+msgstr "Volg"
+
+#: html.c:1262
+msgid "(by URL or user@host)"
+msgstr "(via URL of gebruiker@host)"
+
+#: html.c:1277 html.c:1857 html.c:4678
+msgid "Boost"
+msgstr "Boost"
+
+#: html.c:1279 html.c:1296
+msgid "(by URL)"
+msgstr "(via URL)"
+
+#: html.c:1294 html.c:1836 html.c:4669
+msgid "Like"
+msgstr "Leuk"
+
+#: html.c:1422
+msgid "User Settings..."
+msgstr "Gebruikersinstellingen..."
+
+#: html.c:1431
+msgid "Display name:"
+msgstr "Weergavenaam:"
+
+#: html.c:1437
+msgid "Your name"
+msgstr "Jouw naam"
+
+#: html.c:1439
+msgid "Avatar: "
+msgstr "Profielafbeelding: "
+
+#: html.c:1447
+msgid "Delete current avatar"
+msgstr "Verwijder huidige profielafbeelding"
+
+#: html.c:1449
+msgid "Header image (banner): "
+msgstr "Header afbeelding (banner): "
+
+#: html.c:1457
+msgid "Delete current header image"
+msgstr "Verwijder huidige header afbeelding"
+
+#: html.c:1459
+msgid "Bio:"
+msgstr "Bio:"
+
+#: html.c:1465
+msgid "Write about yourself here..."
+msgstr "Schrijf hier iets over jezelf..."
+
+#: html.c:1474
+msgid "Always show sensitive content"
+msgstr "Altijd gevoelige inhoud tonen"
+
+#: html.c:1476
+msgid "Email address for notifications:"
+msgstr "E-mailadres voor notificaties:"
+
+#: html.c:1484
+msgid "Telegram notifications (bot key and chat id):"
+msgstr "Telegram notificaties (bot sleutel en chat id):"
+
+#: html.c:1498
+msgid "ntfy notifications (ntfy server and token):"
+msgstr "ntfy notificaties (ntfy server en token):"
+
+#: html.c:1520
+msgid "Maximum days to keep posts (0: server settings):"
+msgstr "Maximaal aantal dagen om berichten te bewaren (0: serverinstellingen):"
+
+#: html.c:1534
+msgid "Drop direct messages from people you don't follow"
+msgstr "Verwijder directe berichten van mensen die je niet volgt"
+
+#: html.c:1543
+msgid "This account is a bot"
+msgstr "Dit account is een bot"
+
+#: html.c:1552
+msgid "Auto-boost all mentions to this account"
+msgstr "Automatisch boosten van alle vermeldingen van dit account"
+
+#: html.c:1561
+msgid "This account is private (posts are not shown through the web)"
+msgstr "Dit account is privé (berichten worden niet getoond via het web)"
+
+#: html.c:1571
+msgid "Collapse top threads by default"
+msgstr "Klap standaard top threads in"
+
+#: html.c:1580
+msgid "Follow requests must be approved"
+msgstr "Volgverzoeken moeten worden goedgekeurd"
+
+#: html.c:1589
+msgid "Publish follower and following metrics"
+msgstr "Publiceer volger- en volgstatistieken"
+
+#: html.c:1591
+msgid "Current location:"
+msgstr "Huidige locatie:"
+
+#: html.c:1605
+msgid "Profile metadata (key=value pairs in each line):"
+msgstr "Profiel metadata (sleutel=waarde paren in elke regel):"
+
+#: html.c:1616
+msgid "Web interface language:"
+msgstr "Webinterface taal:"
+
+#: html.c:1635
+msgid "New password:"
+msgstr "Nieuw wachtwoord:"
+
+#: html.c:1642
+msgid "Repeat new password:"
+msgstr "Herhaal nieuw wachtwoord:"
+
+#: html.c:1652
+msgid "Update user info"
+msgstr "Werk gebruikersinformatie bij"
+
+#: html.c:1663
+msgid "Followed hashtags..."
+msgstr "Gevolgde hashtags..."
+
+#: html.c:1665 html.c:1698
+msgid "One hashtag per line"
+msgstr "Eén hashtag per regel"
+
+#: html.c:1687 html.c:1719
+msgid "Update hashtags"
+msgstr "Werk hashtags bij"
+
+#: html.c:1836
+msgid "Say you like this post"
+msgstr "Zeg dat je dit bericht leuk vindt"
+
+#: html.c:1841 html.c:4687
+msgid "Unlike"
+msgstr "Niet leuk vinden"
+
+#: html.c:1841
+msgid "Nah don't like it that much"
+msgstr "Nee, ik vind het niet zo leuk"
+
+#: html.c:1847 html.c:4824
+msgid "Unpin"
+msgstr "Niet vastzetten"
+
+#: html.c:1847
+msgid "Unpin this post from your timeline"
+msgstr "Zet dit bericht niet meer vast op je tijdlijn"
+
+#: html.c:1850 html.c:4819
+msgid "Pin"
+msgstr "Vastzetten"
+
+#: html.c:1850
+msgid "Pin this post to the top of your timeline"
+msgstr "Zet dit bericht vast bovenaan je tijdlijn"
+
+#: html.c:1857
+msgid "Announce this post to your followers"
+msgstr "Kondig dit bericht aan bij je volgers"
+
+#: html.c:1862 html.c:4695
+msgid "Unboost"
+msgstr "Ontboosten"
+
+#: html.c:1862
+msgid "I regret I boosted this"
+msgstr "Ik betreur dat ik dit heb geboost"
+
+#: html.c:1868 html.c:4834
+msgid "Unbookmark"
+msgstr "Uit favorieten verwijderen"
+
+#: html.c:1868
+msgid "Delete this post from your bookmarks"
+msgstr "Verwijder dit bericht uit je favorieten"
+
+#: html.c:1871 html.c:4829
+msgid "Bookmark"
+msgstr "Favoriet"
+
+#: html.c:1871
+msgid "Add this post to your bookmarks"
+msgstr "Voeg dit bericht toe aan je favorieten"
+
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
+msgid "Unfollow"
+msgstr "Ontvolgen"
+
+#: html.c:1877 html.c:3310
+msgid "Stop following this user's activity"
+msgstr "Stop met het volgen van de activiteit van deze gebruiker"
+
+#: html.c:1881 html.c:3324
+msgid "Start following this user's activity"
+msgstr "Start met het volgen van de activiteit van deze gebruiker"
+
+#: html.c:1887 html.c:4772
+msgid "Unfollow Group"
+msgstr "Ontvolg groep"
+
+#: html.c:1888
+msgid "Stop following this group or channel"
+msgstr "Stop met het volgen van deze groep of kanaal"
+
+#: html.c:1892 html.c:4759
+msgid "Follow Group"
+msgstr "Volg groep"
+
+#: html.c:1893
+msgid "Start following this group or channel"
+msgstr "Start met het volgen van deze groep of kanaal"
+
+#: html.c:1898 html.c:3346 html.c:4703
+msgid "MUTE"
+msgstr "DEMP"
+
+#: html.c:1899
+msgid "Block any activity from this user forever"
+msgstr "Blokkeer alle activiteit van deze gebruiker voor altijd"
+
+#: html.c:1904 html.c:3328 html.c:4789
+msgid "Delete"
+msgstr "Verwijderen"
+
+#: html.c:1904
+msgid "Delete this post"
+msgstr "Verwijder dit bericht"
+
+#: html.c:1907 html.c:4711
+msgid "Hide"
+msgstr "Verberg"
+
+#: html.c:1907
+msgid "Hide this post and its children"
+msgstr "Verberg dit bericht en zijn kinderen"
+
+#: html.c:1947
+msgid "Edit..."
+msgstr "Bewerken..."
+
+#: html.c:1967
+msgid "Reply..."
+msgstr "Antwoord..."
+
+#: html.c:2018
+msgid "Truncated (too deep)"
+msgstr "Afgekapt (te diep)"
+
+#: html.c:2036
+msgid "follows you"
+msgstr "volgt jou"
+
+#: html.c:2104
+msgid "Pinned"
+msgstr "Vastgezet"
+
+#: html.c:2112
+msgid "Bookmarked"
+msgstr "Favoriet"
+
+#: html.c:2120
+msgid "Poll"
+msgstr "Peiling"
+
+#: html.c:2127
+msgid "Voted"
+msgstr "Gestemd"
+
+#: html.c:2136
+msgid "Event"
+msgstr "Evenement"
+
+#: html.c:2168 html.c:2197
+msgid "boosted"
+msgstr "geboost"
+
+#: html.c:2211
+msgid "in reply to"
+msgstr "als antwoord op"
+
+#: html.c:2266
+msgid " [SENSITIVE CONTENT]"
+msgstr " [GEVOELIGE INHOUD]"
+
+#: html.c:2443
+msgid "Vote"
+msgstr "Stem"
+
+#: html.c:2453
+msgid "Closed"
+msgstr "Gesloten"
+
+#: html.c:2478
+msgid "Closes in"
+msgstr "Sluit over"
+
+#: html.c:2558
+msgid "Video"
+msgstr "Video"
+
+#: html.c:2573
+msgid "Audio"
+msgstr "Audio"
+
+#: html.c:2601
+msgid "Attachment"
+msgstr "Bijlage"
+
+#: html.c:2615
+msgid "Alt..."
+msgstr "Alt..."
+
+#: html.c:2628
+msgid "Source channel or community"
+msgstr "Bron kanaal of gemeenschap"
+
+#: html.c:2722
+msgid "Time: "
+msgstr "Tijd: "
+
+#: html.c:2803
+msgid "Older..."
+msgstr "Ouder..."
+
+#: html.c:2905
+msgid "about this site"
+msgstr "over deze site"
+
+#: html.c:2907
+msgid "powered by "
+msgstr "aangedreven door "
+
+#: html.c:2972
+msgid "Dismiss"
+msgstr "Verwerp"
+
+#: html.c:2989
+#, c-format
+msgid "Timeline for list '%s'"
+msgstr "Tijdlijn voor lijst '%s'"
+
+#: html.c:3008 html.c:4092
+msgid "Pinned posts"
+msgstr "Vastgezette berichten"
+
+#: html.c:3020 html.c:4107
+msgid "Bookmarked posts"
+msgstr "Favoriete berichten"
+
+#: html.c:3032 html.c:4122
+msgid "Post drafts"
+msgstr "Berichtenconcepten"
+
+#: html.c:3109
+msgid "No more unseen posts"
+msgstr "Geen ongelezen berichten meer"
+
+#: html.c:3113 html.c:3213
+msgid "Back to top"
+msgstr "Terug naar boven"
+
+#: html.c:3166
+msgid "History"
+msgstr "Geschiedenis"
+
+#: html.c:3218 html.c:3657
+msgid "More..."
+msgstr "Meer..."
+
+#: html.c:3314 html.c:4725
+msgid "Unlimit"
+msgstr "Ongelimiteerd"
+
+#: html.c:3315
+msgid "Allow announces (boosts) from this user"
+msgstr "Sta aankondigingen (boosts) van deze gebruiker toe"
+
+#: html.c:3318 html.c:4721
+msgid "Limit"
+msgstr "Limiteer"
+
+#: html.c:3319
+msgid "Block announces (boosts) from this user"
+msgstr "Blokkeer aankondigingen (boosts) van deze gebruiker"
+
+#: html.c:3328
+msgid "Delete this user"
+msgstr "Verwijder deze gebruiker"
+
+#: html.c:3333 html.c:4839
+msgid "Approve"
+msgstr "Goedkeuren"
+
+#: html.c:3334
+msgid "Approve this follow request"
+msgstr "Keurt dit volgverzoek goed"
+
+#: html.c:3337 html.c:4863
+msgid "Discard"
+msgstr "Afwijzen"
+
+#: html.c:3337
+msgid "Discard this follow request"
+msgstr "Wijs dit volgverzoek af"
+
+#: html.c:3342 html.c:4707
+msgid "Unmute"
+msgstr "Niet meer dempen"
+
+#: html.c:3343
+msgid "Stop blocking activities from this user"
+msgstr "Stop met het blokkeren van activiteiten van deze gebruiker"
+
+#: html.c:3347
+msgid "Block any activity from this user"
+msgstr "Blokkeer alle activiteit van deze gebruiker"
+
+#: html.c:3355
+msgid "Direct Message..."
+msgstr "Persoonlijk bericht..."
+
+#: html.c:3390
+msgid "Pending follow confirmations"
+msgstr "Openstaande volgbevestigingen"
+
+#: html.c:3394
+msgid "People you follow"
+msgstr "Mensen die je volgt"
+
+#: html.c:3395
+msgid "People that follow you"
+msgstr "Mensen die jou volgen"
+
+#: html.c:3434
+msgid "Clear all"
+msgstr "Alle wissen"
+
+#: html.c:3494
+msgid "Mention"
+msgstr "Benoemen"
+
+#: html.c:3497
+msgid "Finished poll"
+msgstr "Afgeronde peiling"
+
+#: html.c:3513
+msgid "Follow Request"
+msgstr "Volgverzoek"
+
+#: html.c:3597
+msgid "Context"
+msgstr "Context"
+
+#: html.c:3615
+msgid "New"
+msgstr "Nieuw"
+
+#: html.c:3630
+msgid "Already seen"
+msgstr "Al gezien"
+
+#: html.c:3645
+msgid "None"
+msgstr "Geen"
+
+#: html.c:3917
+#, c-format
+msgid "Search results for account %s"
+msgstr "Zoekresultaten voor account %s"
+
+#: html.c:3924
+#, c-format
+msgid "Account %s not found"
+msgstr "Account %s niet gevonden"
+
+#: html.c:3955
+#, c-format
+msgid "Search results for tag %s"
+msgstr "Zoekresultaten voor tag %s"
+
+#: html.c:3955
+#, c-format
+msgid "Nothing found for tag %s"
+msgstr "Niets gevonden voor tag %s"
+
+#: html.c:3971
+#, c-format
+msgid "Search results for '%s' (may be more)"
+msgstr "Zoekresultaten voor '%s' (mogelijk meer)"
+
+#: html.c:3974
+#, c-format
+msgid "Search results for '%s'"
+msgstr "Zoekresultaten voor '%s'"
+
+#: html.c:3977
+#, c-format
+msgid "No more matches for '%s'"
+msgstr "Geen verdere overeenkomsten voor '%s'"
+
+#: html.c:3979
+#, c-format
+msgid "Nothing found for '%s'"
+msgstr "Niets gevonden voor '%s'"
+
+#: html.c:4077
+msgid "Showing instance timeline"
+msgstr "Toond tijdlijn van instantie"
+
+#: html.c:4160
+#, c-format
+msgid "Showing timeline for list '%s'"
+msgstr "Toond tijdlijn voor lijst '%s'"
+
+#: httpd.c:258
+#, c-format
+msgid "Search results for tag #%s"
+msgstr "Zoekresultaten voor tag #%s"
+
+#: httpd.c:267
+msgid "Recent posts by users in this instance"
+msgstr "Recente berichten van gebruikers in deze instantie"
+
+#: html.c:1696
+msgid "Blocked hashtags..."
+msgstr "Geblokkeerde hashtags..."
+
+#: html.c:450
+msgid "Optional URL to reply to"
+msgstr "Optionele URL om op te antwoorden"
+
+#: html.c:627
+msgid ""
+"Option 1...\n"
+"Option 2...\n"
+"Option 3...\n"
+"..."
+msgstr ""
+"Optie 1...\n"
+"Optie 2...\n"
+"Optie 3...\n"
+"..."
+
+#: html.c:1490
+msgid "Bot API key"
+msgstr "Bot API sleutel"
+
+#: html.c:1496
+msgid "Chat id"
+msgstr "Chat id"
+
+#: html.c:1504
+msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
+msgstr "ntfy server - volledige URL (voorbeeld: https://ntfy.sh/YourTopic)"
+
+#: html.c:1510
+msgid "ntfy token - if needed"
+msgstr "ntfy token - indien nodig"
+
+#: html.c:3009
+msgid "pinned"
+msgstr "vastgezet"
+
+#: html.c:3021
+msgid "bookmarks"
+msgstr "favorieten"
+
+#: html.c:3033
+msgid "drafts"
+msgstr "concepten"
+
+#: html.c:516
+msgid "Scheduled post..."
+msgstr "Gepland bericht..."
+
+msgid "Post date and time:"
+msgstr "Bericht datum en tijd:"
+
+#: html.c:3044 html.c:4137
+msgid "Scheduled posts"
+msgstr "Geplande berichten"
+
+#: html.c:3045
+msgid "scheduled posts"
+msgstr "geplande berichten"
+
+#: html.c:510
+#, c-format
+msgid "Post date and time (timezone: %s):"
+msgstr "Bericht datum en tijd (tijdzone: %s):"
+
+#: html.c:1621
+msgid "Time zone:"
+msgstr "Tijdzone:"
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 210 - 189
po/pt_BR.po

@@ -4,7 +4,7 @@
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Project-Id-Version: snac\n"
 "Project-Id-Version: snac\n"
-"PO-Revision-Date: 2025-04-18\n"
+"PO-Revision-Date: 2025-08-13 10:08-0300\n"
 "Last-Translator: Daltux <@daltux@snac.daltux.net>\n"
 "Last-Translator: Daltux <@daltux@snac.daltux.net>\n"
 "Language: pt_BR\n"
 "Language: pt_BR\n"
 "MIME-Version: 1.0\n"
 "MIME-Version: 1.0\n"
@@ -12,120 +12,120 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Poedit 3.6\n"
 "X-Generator: Poedit 3.6\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Conteúdo sensível: "
 msgstr "Conteúdo sensível: "
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Descrição do conteúdo sensível"
 msgstr "Descrição do conteúdo sensível"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Apenas para pessoas mencionadas: "
 msgstr "Apenas para pessoas mencionadas: "
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Resposta para (URL): "
 msgstr "Resposta para (URL): "
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
-msgstr "Não enviar, mas armazenar como rascunho"
+msgstr "Não enviar, mas guardar como rascunho"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Rascunho:"
 msgstr "Rascunho:"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Anexos..."
 msgstr "Anexos..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Arquivo:"
 msgstr "Arquivo:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Limpe este campo para remover o anexo"
 msgstr "Limpe este campo para remover o anexo"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Descrição do anexo"
 msgstr "Descrição do anexo"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Enquete..."
 msgstr "Enquete..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Alternativas da enquete (uma por linha, até 8):"
 msgstr "Alternativas da enquete (uma por linha, até 8):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Escolha única"
 msgstr "Escolha única"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Escolhas múltiplas"
 msgstr "Escolhas múltiplas"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Encerrar em 5 minutos"
 msgstr "Encerrar em 5 minutos"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Encerrar em 1 hora"
 msgstr "Encerrar em 1 hora"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Encerrar em 1 dia"
 msgstr "Encerrar em 1 dia"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Publicar"
 msgstr "Publicar"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Descrição do sítio eletrônico"
 msgstr "Descrição do sítio eletrônico"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "E-mail da administração"
 msgstr "E-mail da administração"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Conta de quem administra"
 msgstr "Conta de quem administra"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d seguidos, %d seguidores"
 msgstr "%d seguidos, %d seguidores"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "privado"
 msgstr "privado"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "público"
 msgstr "público"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "notificações"
 msgstr "notificações"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "pessoas"
 msgstr "pessoas"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "instância"
 msgstr "instância"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -133,574 +133,574 @@ msgstr ""
 "Procurar publicações por URL ou conteúdo (expressão regular), contas "
 "Procurar publicações por URL ou conteúdo (expressão regular), contas "
 "(@perfil@servidor) ou #tag"
 "(@perfil@servidor) ou #tag"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Buscar conteúdo"
 msgstr "Buscar conteúdo"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "ligação verificada"
 msgstr "ligação verificada"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Localização: "
 msgstr "Localização: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Nova publicação..."
 msgstr "Nova publicação..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "O que tem em mente?"
 msgstr "O que tem em mente?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Operações..."
 msgstr "Operações..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Seguir"
 msgstr "Seguir"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(por URL ou conta@servidor)"
 msgstr "(por URL ou conta@servidor)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Impulsionar"
 msgstr "Impulsionar"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(por URL)"
 msgstr "(por URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Curtir"
 msgstr "Curtir"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
-msgstr "Definições de uso..."
+msgstr "Definições da conta..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Nome a ser exibido:"
 msgstr "Nome a ser exibido:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Seu nome"
 msgstr "Seu nome"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Avatar: "
 msgstr "Avatar: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Remover avatar atual"
 msgstr "Remover avatar atual"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Imagem de cabeçalho (capa): "
 msgstr "Imagem de cabeçalho (capa): "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Remover imagem de cabeçalho atual"
 msgstr "Remover imagem de cabeçalho atual"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Biografia:"
 msgstr "Biografia:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Escreva aqui sobre você..."
 msgstr "Escreva aqui sobre você..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Sempre exibir conteúdo sensível"
 msgstr "Sempre exibir conteúdo sensível"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Endereço de e-mail para notificações:"
 msgstr "Endereço de e-mail para notificações:"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Notificações Telegram (chave do robô e ID da conversa):"
 msgstr "Notificações Telegram (chave do robô e ID da conversa):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
-msgstr "Notificações ntfy (servidor ntfy e token):"
+msgstr "ntfy - notificações (servidor ntfy e token):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr "Máximo de dias a preservar publicações (0: definições do servidor):"
 msgstr "Máximo de dias a preservar publicações (0: definições do servidor):"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
-msgstr "Descartar mensagens diretas de pessoas que você não segue"
+msgstr "Descartar mensagens diretas de quem você não segue"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
-msgstr "Esta conta é robô"
+msgstr "Esta conta é robotizada"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Impulsionar automaticamente todas as menções a esta conta"
 msgstr "Impulsionar automaticamente todas as menções a esta conta"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr "Esta conta é privada (as publicações não são exibidas na Web)"
 msgstr "Esta conta é privada (as publicações não são exibidas na Web)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Recolher por padrão as sequências de publicações"
 msgstr "Recolher por padrão as sequências de publicações"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Solicitações de seguimento precisam ser aprovadas"
 msgstr "Solicitações de seguimento precisam ser aprovadas"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Publicar métricas de seguidores e seguidos"
 msgstr "Publicar métricas de seguidores e seguidos"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Localização atual:"
 msgstr "Localização atual:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Metadados do perfil (par de chave=valor em cada linha):"
 msgstr "Metadados do perfil (par de chave=valor em cada linha):"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Idioma da interface Web:"
 msgstr "Idioma da interface Web:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Nova senha:"
 msgstr "Nova senha:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Repita a nova senha:"
 msgstr "Repita a nova senha:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Atualizar informações da conta"
 msgstr "Atualizar informações da conta"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Hashtags seguidas..."
 msgstr "Hashtags seguidas..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Uma hashtag por linha"
 msgstr "Uma hashtag por linha"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Atualizar hashtags"
 msgstr "Atualizar hashtags"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Declarar que gosta desta publicação"
 msgstr "Declarar que gosta desta publicação"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "Descurtir"
 msgstr "Descurtir"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Não gosto tanto assim disso"
 msgstr "Não gosto tanto assim disso"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Desafixar"
 msgstr "Desafixar"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Desafixar esta publicação da sua linha do tempo"
 msgstr "Desafixar esta publicação da sua linha do tempo"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Afixar"
 msgstr "Afixar"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Afixar esta publicação no topo de sua linha do tempo"
 msgstr "Afixar esta publicação no topo de sua linha do tempo"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Anunciar esta publicação para seus seguidores"
 msgstr "Anunciar esta publicação para seus seguidores"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Desimpulsionar"
 msgstr "Desimpulsionar"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Arrependo-me de ter impulsionado isso"
 msgstr "Arrependo-me de ter impulsionado isso"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Desmarcar"
 msgstr "Desmarcar"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Remover esta publicação dos seus marcadores"
 msgstr "Remover esta publicação dos seus marcadores"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Marcar"
 msgstr "Marcar"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Adicionar esta publicação aos seus marcadores"
 msgstr "Adicionar esta publicação aos seus marcadores"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Deixar de seguir"
 msgstr "Deixar de seguir"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Parar de acompanhar a atividade deste perfil"
 msgstr "Parar de acompanhar a atividade deste perfil"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Começar a acompanhar a atividade deste perfil"
 msgstr "Começar a acompanhar a atividade deste perfil"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Deixar de seguir grupo"
 msgstr "Deixar de seguir grupo"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Parar de acompanhar este grupo ou canal"
 msgstr "Parar de acompanhar este grupo ou canal"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Seguir grupo"
 msgstr "Seguir grupo"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Começar a acompanhar este grupo ou canal"
 msgstr "Começar a acompanhar este grupo ou canal"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "MUDO"
 msgstr "MUDO"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Bloquear toda atividade deste perfil para sempre"
 msgstr "Bloquear toda atividade deste perfil para sempre"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Eliminar"
 msgstr "Eliminar"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Apagar esta publicação"
 msgstr "Apagar esta publicação"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Ocultar"
 msgstr "Ocultar"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Ocultar esta publicação e suas respostas"
 msgstr "Ocultar esta publicação e suas respostas"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Editar..."
 msgstr "Editar..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Responder..."
 msgstr "Responder..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Truncada (muito extensa)"
 msgstr "Truncada (muito extensa)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "segue você"
 msgstr "segue você"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Afixada"
 msgstr "Afixada"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Marcada"
 msgstr "Marcada"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Enquete"
 msgstr "Enquete"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Votou"
 msgstr "Votou"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Evento"
 msgstr "Evento"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "impulsionou"
 msgstr "impulsionou"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "em resposta a"
 msgstr "em resposta a"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [CONTEÚDO SENSÍVEL]"
 msgstr " [CONTEÚDO SENSÍVEL]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Votar"
 msgstr "Votar"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Encerrada"
 msgstr "Encerrada"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Encerra em"
 msgstr "Encerra em"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Vídeo"
 msgstr "Vídeo"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Áudio"
 msgstr "Áudio"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Anexo"
 msgstr "Anexo"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Texto alternativo..."
 msgstr "Texto alternativo..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Canal ou comunidade de origem"
 msgstr "Canal ou comunidade de origem"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Horário: "
 msgstr "Horário: "
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Anteriores..."
 msgstr "Anteriores..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "sobre este sítio eletrônico"
 msgstr "sobre este sítio eletrônico"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "movido por "
 msgstr "movido por "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Dispensar"
 msgstr "Dispensar"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Linha do tempo da lista '%s'"
 msgstr "Linha do tempo da lista '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Publicações afixadas"
 msgstr "Publicações afixadas"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Publicações marcadas"
 msgstr "Publicações marcadas"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Publicações em rascunho"
 msgstr "Publicações em rascunho"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "Sem mais publicações não vistas"
 msgstr "Sem mais publicações não vistas"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Voltar ao topo"
 msgstr "Voltar ao topo"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Histórico"
 msgstr "Histórico"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Mais..."
 msgstr "Mais..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Retirar restrição"
 msgstr "Retirar restrição"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Permitir anúncios (impulsionamentos) deste perfil"
 msgstr "Permitir anúncios (impulsionamentos) deste perfil"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Restringir"
 msgstr "Restringir"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Bloquear anúncios (impulsionamentos) deste perfil"
 msgstr "Bloquear anúncios (impulsionamentos) deste perfil"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Apagar este perfil"
 msgstr "Apagar este perfil"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Aprovar"
 msgstr "Aprovar"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Aprovar esta solicitação de seguimento"
 msgstr "Aprovar esta solicitação de seguimento"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Descartar"
 msgstr "Descartar"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Descartar esta solicitação de seguimento"
 msgstr "Descartar esta solicitação de seguimento"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Desbloquear"
 msgstr "Desbloquear"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Parar de bloquear as atividades deste perfil"
 msgstr "Parar de bloquear as atividades deste perfil"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Bloquear toda atividade deste perfil"
 msgstr "Bloquear toda atividade deste perfil"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Mensagem direta..."
 msgstr "Mensagem direta..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Confirmações de seguimento pendentes"
 msgstr "Confirmações de seguimento pendentes"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Pessoas que você segue"
 msgstr "Pessoas que você segue"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Pessoas que seguem você"
 msgstr "Pessoas que seguem você"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Limpar tudo"
 msgstr "Limpar tudo"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Menção"
 msgstr "Menção"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Enquete encerrada"
 msgstr "Enquete encerrada"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Solicitação de seguimento"
 msgstr "Solicitação de seguimento"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Contexto"
 msgstr "Contexto"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Novas"
 msgstr "Novas"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Já vistas"
 msgstr "Já vistas"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Nenhuma"
 msgstr "Nenhuma"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Resultados da busca pela conta %s"
 msgstr "Resultados da busca pela conta %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "Conta %s não encontrada"
 msgstr "Conta %s não encontrada"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Resultados da busca pela hashtag %s"
 msgstr "Resultados da busca pela hashtag %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "Nada consta com hashtag %s"
 msgstr "Nada consta com hashtag %s"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Resultados da busca por '%s' (pode haver mais)"
 msgstr "Resultados da busca por '%s' (pode haver mais)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Resultados da busca por '%s'"
 msgstr "Resultados da busca por '%s'"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "Sem mais combinações para '%s'"
 msgstr "Sem mais combinações para '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "Nada consta com '%s'"
 msgstr "Nada consta com '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Exibindo linha do tempo da instância"
 msgstr "Exibindo linha do tempo da instância"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Exibindo linha do tempo da lista '%s'"
 msgstr "Exibindo linha do tempo da lista '%s'"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Resultados da busca pela hashtag #%s"
 msgstr "Resultados da busca pela hashtag #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Publicações recentes de perfis desta instância"
 msgstr "Publicações recentes de perfis desta instância"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Hashtags bloqueadas..."
 msgstr "Hashtags bloqueadas..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "URL opcional para a qual responder"
 msgstr "URL opcional para a qual responder"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -712,54 +712,75 @@ msgstr ""
 "Opção 3...\n"
 "Opção 3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "Chave de API do robô"
 msgstr "Chave de API do robô"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "ID da conversa"
 msgstr "ID da conversa"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
-msgstr "Servidor ntfy - URL completa (exemplo: https://ntfy.sh/SeuTópico)"
+msgstr "ntfy - servidor - URL completa (exemplo: https://ntfy.sh/SeuTópico)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
-msgstr "Token ntfy - se necessário"
+msgstr "ntfy - token (se necessário)"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "afixadas"
 msgstr "afixadas"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "marcadores"
 msgstr "marcadores"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "rascunhos"
 msgstr "rascunhos"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr "Publicação agendada..."
 msgstr "Publicação agendada..."
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr "Data e horário da publicação:"
 msgstr "Data e horário da publicação:"
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr "Publicações agendadas"
 msgstr "Publicações agendadas"
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr "publicações agendadas"
 msgstr "publicações agendadas"
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr "Data e hora da publicação (fuso horário: %s):"
 msgstr "Data e hora da publicação (fuso horário: %s):"
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr "Fuso horário:"
 msgstr "Fuso horário:"
+
+#: html.c:491
+msgid "Language:"
+msgstr "Idioma:"
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr "Webhook para notificar:"
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr "http://exemplo.com.br/webhook"
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr "Idiomas em que costuma postar:"
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr "pt en fr es de_AT"
+

+ 201 - 181
po/ru.po

@@ -15,120 +15,120 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Poedit 3.0\n"
 "X-Generator: Poedit 3.0\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Чувствительное содержимое: "
 msgstr "Чувствительное содержимое: "
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Описание чувствительного содержимого"
 msgstr "Описание чувствительного содержимого"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Только для упомянутых людей: "
 msgstr "Только для упомянутых людей: "
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Ответ на (URL): "
 msgstr "Ответ на (URL): "
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "Не отправлять, сохранить черновик"
 msgstr "Не отправлять, сохранить черновик"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Черновик:"
 msgstr "Черновик:"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Вложения..."
 msgstr "Вложения..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Файл:"
 msgstr "Файл:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Очистите это поле, чтоб удалить вложение"
 msgstr "Очистите это поле, чтоб удалить вложение"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Описание вложения"
 msgstr "Описание вложения"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Опрос..."
 msgstr "Опрос..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Варианты ответа (один на строку, до 8 шт):"
 msgstr "Варианты ответа (один на строку, до 8 шт):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Один выбор"
 msgstr "Один выбор"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Множественный выбор"
 msgstr "Множественный выбор"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Заканчивается через 5 минут"
 msgstr "Заканчивается через 5 минут"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Заканчивается через 1 час"
 msgstr "Заканчивается через 1 час"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Заканчивается через 1 день"
 msgstr "Заканчивается через 1 день"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Отправить"
 msgstr "Отправить"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Описание сайта"
 msgstr "Описание сайта"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Почта админа"
 msgstr "Почта админа"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Учётная запись админа"
 msgstr "Учётная запись админа"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d подписан, %d подписчиков"
 msgstr "%d подписан, %d подписчиков"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "личное"
 msgstr "личное"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "публичное"
 msgstr "публичное"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "уведомления"
 msgstr "уведомления"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "люди"
 msgstr "люди"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "сервер"
 msgstr "сервер"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -136,574 +136,574 @@ msgstr ""
 "Поиск сообщений по URL или содержимому (регулярное выражение), учетной "
 "Поиск сообщений по URL или содержимому (регулярное выражение), учетной "
 "записи вида @user@host, или #тегу"
 "записи вида @user@host, или #тегу"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Поиск содержимого"
 msgstr "Поиск содержимого"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "проверенная ссылка"
 msgstr "проверенная ссылка"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Местоположение: "
 msgstr "Местоположение: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Новое сообщение..."
 msgstr "Новое сообщение..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "Что у вас на уме?"
 msgstr "Что у вас на уме?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Действия..."
 msgstr "Действия..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Подписаться"
 msgstr "Подписаться"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(по URL или user@host)"
 msgstr "(по URL или user@host)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Продвинуть"
 msgstr "Продвинуть"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(по URL)"
 msgstr "(по URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Лайкнуть"
 msgstr "Лайкнуть"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Пользовательские настройки..."
 msgstr "Пользовательские настройки..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Отображаемое имя:"
 msgstr "Отображаемое имя:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Ваше имя"
 msgstr "Ваше имя"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Аватар: "
 msgstr "Аватар: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Удалить текущий аватар"
 msgstr "Удалить текущий аватар"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Заглавное изображение (баннер): "
 msgstr "Заглавное изображение (баннер): "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Удалить текущее заглавное изображение"
 msgstr "Удалить текущее заглавное изображение"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "О себе:"
 msgstr "О себе:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Напишите что-нибудь про себя..."
 msgstr "Напишите что-нибудь про себя..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Всегда показывать чувствительное содержимое"
 msgstr "Всегда показывать чувствительное содержимое"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Почтовый адрес для уведомлений:"
 msgstr "Почтовый адрес для уведомлений:"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Уведомления в Telegram (ключ бота и id чата):"
 msgstr "Уведомления в Telegram (ключ бота и id чата):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "уведомления в ntfy (сервер и токен ntfy):"
 msgstr "уведомления в ntfy (сервер и токен ntfy):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr "Максимальное время хранения сообщений (0: настройки сервера):"
 msgstr "Максимальное время хранения сообщений (0: настройки сервера):"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Отклонять личные сообщения от незнакомцев"
 msgstr "Отклонять личные сообщения от незнакомцев"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Это аккаунт бота"
 msgstr "Это аккаунт бота"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Автоматически продвигать все упоминания этого аккаунта"
 msgstr "Автоматически продвигать все упоминания этого аккаунта"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr "Это закрытый аккаунт (сообщения не показываются в сети)"
 msgstr "Это закрытый аккаунт (сообщения не показываются в сети)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Сворачивать обсуждения по умолчанию"
 msgstr "Сворачивать обсуждения по умолчанию"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Запросы подписки требуют подтверждения"
 msgstr "Запросы подписки требуют подтверждения"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Публиковать статистику подписок и подписчиков"
 msgstr "Публиковать статистику подписок и подписчиков"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Текущее метоположение:"
 msgstr "Текущее метоположение:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Метаданные профиля (пары ключ=значение, по одной на строку)"
 msgstr "Метаданные профиля (пары ключ=значение, по одной на строку)"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Язык интерфейса:"
 msgstr "Язык интерфейса:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Новый пароль:"
 msgstr "Новый пароль:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Повторите новый пароль:"
 msgstr "Повторите новый пароль:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Обновить данные пользователя"
 msgstr "Обновить данные пользователя"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Отслеживаемые хештеги..."
 msgstr "Отслеживаемые хештеги..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "По одному на строку"
 msgstr "По одному на строку"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Обновить хештеги"
 msgstr "Обновить хештеги"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Отметить сообщение понравившимся"
 msgstr "Отметить сообщение понравившимся"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "Больше не нравится"
 msgstr "Больше не нравится"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Не так уж и понравилось"
 msgstr "Не так уж и понравилось"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Открепить"
 msgstr "Открепить"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Открепить это сообщение из своей ленты"
 msgstr "Открепить это сообщение из своей ленты"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Закрепить"
 msgstr "Закрепить"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Закрепить это сообщение в своей ленте"
 msgstr "Закрепить это сообщение в своей ленте"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Поделиться этим сообщением со своими подписчиками"
 msgstr "Поделиться этим сообщением со своими подписчиками"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Отменить продвижение"
 msgstr "Отменить продвижение"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Не буду продвигать, пожалуй"
 msgstr "Не буду продвигать, пожалуй"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Удалить из закладок"
 msgstr "Удалить из закладок"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Удалить это сообщение из закладок"
 msgstr "Удалить это сообщение из закладок"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Добавить в закладки"
 msgstr "Добавить в закладки"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Добавить сообщение в закладки"
 msgstr "Добавить сообщение в закладки"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Отписаться"
 msgstr "Отписаться"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Отменить подписку на этого пользователя"
 msgstr "Отменить подписку на этого пользователя"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Начать следовать за этим пользователем"
 msgstr "Начать следовать за этим пользователем"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Отписаться от группы"
 msgstr "Отписаться от группы"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Отписаться от группы или канала"
 msgstr "Отписаться от группы или канала"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Подписаться на группу"
 msgstr "Подписаться на группу"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Подписаться на группу или канал"
 msgstr "Подписаться на группу или канал"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "Заглушить"
 msgstr "Заглушить"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Заглушить всю активность от этого пользователя, навсегда"
 msgstr "Заглушить всю активность от этого пользователя, навсегда"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Удалить"
 msgstr "Удалить"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Удалить это сообщение"
 msgstr "Удалить это сообщение"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Скрыть"
 msgstr "Скрыть"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Скрыть это сообщение вместе с обсуждением"
 msgstr "Скрыть это сообщение вместе с обсуждением"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Редактировать..."
 msgstr "Редактировать..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Ответить..."
 msgstr "Ответить..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Обрезано (слишком много)"
 msgstr "Обрезано (слишком много)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "подписан на вас"
 msgstr "подписан на вас"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Закреплено"
 msgstr "Закреплено"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Добавлено в закладки"
 msgstr "Добавлено в закладки"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Опрос"
 msgstr "Опрос"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Проголосовано"
 msgstr "Проголосовано"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Событие"
 msgstr "Событие"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "поделился"
 msgstr "поделился"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "в ответ на"
 msgstr "в ответ на"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [ЧУВСТВИТЕЛЬНО СОДЕРЖИМОЕ]"
 msgstr " [ЧУВСТВИТЕЛЬНО СОДЕРЖИМОЕ]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Голос"
 msgstr "Голос"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Закрыт"
 msgstr "Закрыт"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Закрывается через"
 msgstr "Закрывается через"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Видео"
 msgstr "Видео"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Аудио"
 msgstr "Аудио"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Вложение"
 msgstr "Вложение"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Описание..."
 msgstr "Описание..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Исходный канал или сообщество"
 msgstr "Исходный канал или сообщество"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Время: "
 msgstr "Время: "
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Ранее..."
 msgstr "Ранее..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "про этот сайт"
 msgstr "про этот сайт"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "на основе "
 msgstr "на основе "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Скрыть"
 msgstr "Скрыть"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Ленты для списка '%s'"
 msgstr "Ленты для списка '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Закреплённые сообщения"
 msgstr "Закреплённые сообщения"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Сообщения в закладках"
 msgstr "Сообщения в закладках"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Черновики сообщений"
 msgstr "Черновики сообщений"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "Всё просмотрено"
 msgstr "Всё просмотрено"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Вернуться наверх"
 msgstr "Вернуться наверх"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "История"
 msgstr "История"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Ещё..."
 msgstr "Ещё..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Без ограничения"
 msgstr "Без ограничения"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Разрешить продвижения от этого пользователя"
 msgstr "Разрешить продвижения от этого пользователя"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Лимит"
 msgstr "Лимит"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Запретить продвижения от этого пользователя"
 msgstr "Запретить продвижения от этого пользователя"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Удалить пользователя"
 msgstr "Удалить пользователя"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Подтвердить"
 msgstr "Подтвердить"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Подтвердить запрос на подписку"
 msgstr "Подтвердить запрос на подписку"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Отклонить"
 msgstr "Отклонить"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Отклонить этот запрос на подписку"
 msgstr "Отклонить этот запрос на подписку"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Отменить глушение"
 msgstr "Отменить глушение"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Прекратить глушение действий этого пользователя"
 msgstr "Прекратить глушение действий этого пользователя"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Заглушить все действия этого пользователя"
 msgstr "Заглушить все действия этого пользователя"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Личное сообщение..."
 msgstr "Личное сообщение..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Ожидающие запросы на подписку"
 msgstr "Ожидающие запросы на подписку"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Ваши подписки"
 msgstr "Ваши подписки"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Ваши подписчики"
 msgstr "Ваши подписчики"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Очистить всё"
 msgstr "Очистить всё"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Упоминание"
 msgstr "Упоминание"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Завершённый опрос"
 msgstr "Завершённый опрос"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Запрос на подписку"
 msgstr "Запрос на подписку"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Контекст"
 msgstr "Контекст"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Новое"
 msgstr "Новое"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Уже просмотрено"
 msgstr "Уже просмотрено"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Нет"
 msgstr "Нет"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Результаты поиска для учётной записи %s"
 msgstr "Результаты поиска для учётной записи %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "Учётная запись %s не найдена"
 msgstr "Учётная запись %s не найдена"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Результаты поиска тега %s"
 msgstr "Результаты поиска тега %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "Ничего не найдено по тегу %s"
 msgstr "Ничего не найдено по тегу %s"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Результаты поиска для '%s' (возможно, есть ещё)"
 msgstr "Результаты поиска для '%s' (возможно, есть ещё)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Результаты поиска для '%s'"
 msgstr "Результаты поиска для '%s'"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "Больше нет совпадений для '%s'"
 msgstr "Больше нет совпадений для '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "Ничего не найдено для '%s'"
 msgstr "Ничего не найдено для '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Показываем ленту сервера"
 msgstr "Показываем ленту сервера"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Показываем ленту для списка '%s'"
 msgstr "Показываем ленту для списка '%s'"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Результаты поиска для тега #%s"
 msgstr "Результаты поиска для тега #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Последние сообщения на этом сервере"
 msgstr "Последние сообщения на этом сервере"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Заблокированные теги..."
 msgstr "Заблокированные теги..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "Необязательный URL для ответа"
 msgstr "Необязательный URL для ответа"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -715,54 +715,74 @@ msgstr ""
 "Вариант 3...\n"
 "Вариант 3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "Ключ API для бота"
 msgstr "Ключ API для бота"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "Id чата"
 msgstr "Id чата"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "полный URL сервера ntfy (например https://ntfy.sh/YourTopic)"
 msgstr "полный URL сервера ntfy (например https://ntfy.sh/YourTopic)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "токен ntfy - если нужен"
 msgstr "токен ntfy - если нужен"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "закреплено"
 msgstr "закреплено"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "закладки"
 msgstr "закладки"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "черновики"
 msgstr "черновики"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr "Запланировать..."
 msgstr "Запланировать..."
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr "Время поста:"
 msgstr "Время поста:"
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr "Запланированные посты"
 msgstr "Запланированные посты"
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr "запланированные посты"
 msgstr "запланированные посты"
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr "Время поста (Часовой пояс: %s):"
 msgstr "Время поста (Часовой пояс: %s):"
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr "Часовой пояс:"
 msgstr "Часовой пояс:"
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/uk.po

@@ -15,120 +15,120 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Poedit 3.0\n"
 "X-Generator: Poedit 3.0\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "Делікатний вміст: "
 msgstr "Делікатний вміст: "
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "Опис делікатного вмісту"
 msgstr "Опис делікатного вмісту"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "Тільки для зазначених осіб: "
 msgstr "Тільки для зазначених осіб: "
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "Відповісти до (URL): "
 msgstr "Відповісти до (URL): "
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "Не надсилати, але зберігти як чернетку"
 msgstr "Не надсилати, але зберігти як чернетку"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "Чернетка:"
 msgstr "Чернетка:"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "Вкладення..."
 msgstr "Вкладення..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "Файл:"
 msgstr "Файл:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "Очистіть це поле, щоб видалити вкладення"
 msgstr "Очистіть це поле, щоб видалити вкладення"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "Опис вкладення"
 msgstr "Опис вкладення"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "Опитування..."
 msgstr "Опитування..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "Варіанти відповідей (по одному в рядку, до 8):"
 msgstr "Варіанти відповідей (по одному в рядку, до 8):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "Єдиний вибір"
 msgstr "Єдиний вибір"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "Декілька варіантів вибору"
 msgstr "Декілька варіантів вибору"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "Закінчення через 5 хвилин"
 msgstr "Закінчення через 5 хвилин"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "Закінчення через 1 годину"
 msgstr "Закінчення через 1 годину"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "Закінчення через 1 день"
 msgstr "Закінчення через 1 день"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr "Надіслати"
 msgstr "Надіслати"
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "Опис сайту"
 msgstr "Опис сайту"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "Пошта админа"
 msgstr "Пошта админа"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "Обліковий запис адміна"
 msgstr "Обліковий запис адміна"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d підписок, %d підписників"
 msgstr "%d підписок, %d підписників"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "особисте"
 msgstr "особисте"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "публічне"
 msgstr "публічне"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "повідомлення"
 msgstr "повідомлення"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "люди"
 msgstr "люди"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "сервер"
 msgstr "сервер"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
@@ -136,574 +136,574 @@ msgstr ""
 "Шукати дописи за URL або вмістом (регулярний вираз), акаунтами @user@host "
 "Шукати дописи за URL або вмістом (регулярний вираз), акаунтами @user@host "
 "або #тегом"
 "або #тегом"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "Пошук за вмістом"
 msgstr "Пошук за вмістом"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "перевірене посилання"
 msgstr "перевірене посилання"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "Місце знаходження: "
 msgstr "Місце знаходження: "
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "Новий допис..."
 msgstr "Новий допис..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "Що у вас на думці?"
 msgstr "Що у вас на думці?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "Дії..."
 msgstr "Дії..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "Підписатися"
 msgstr "Підписатися"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(за URL або user@host)"
 msgstr "(за URL або user@host)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "Просувати"
 msgstr "Просувати"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(за URL)"
 msgstr "(за URL)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "Вподобайка"
 msgstr "Вподобайка"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "Налаштування користувача..."
 msgstr "Налаштування користувача..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "Видиме ім'я:"
 msgstr "Видиме ім'я:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "Ваше ім'я"
 msgstr "Ваше ім'я"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "Аватар: "
 msgstr "Аватар: "
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "Видалити поточний аватар"
 msgstr "Видалити поточний аватар"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "Зображення заголовка (банер): "
 msgstr "Зображення заголовка (банер): "
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "Видалити поточне зображення заголовка"
 msgstr "Видалити поточне зображення заголовка"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "Про себе:"
 msgstr "Про себе:"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "Напишіть про себе тут..."
 msgstr "Напишіть про себе тут..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "Завжди показувати делікатний вміст"
 msgstr "Завжди показувати делікатний вміст"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "Поштова адреса для повідомлень:"
 msgstr "Поштова адреса для повідомлень:"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Повідомлення в Telegram (ключ бота та id чату):"
 msgstr "Повідомлення в Telegram (ключ бота та id чату):"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "Повідомлення в ntfy (сервер та токен ntfy):"
 msgstr "Повідомлення в ntfy (сервер та токен ntfy):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr "Максимальний час для зберігання дописів (0: налаштування сервера):"
 msgstr "Максимальний час для зберігання дописів (0: налаштування сервера):"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "Відхиляти особисті повідомлення від незнайомців"
 msgstr "Відхиляти особисті повідомлення від незнайомців"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "Цей акаунт є ботом"
 msgstr "Цей акаунт є ботом"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "Автоматично просувати всі згадки цього акаунта"
 msgstr "Автоматично просувати всі згадки цього акаунта"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr "Це закритий акаунт (дописи не показуються в мережі)"
 msgstr "Це закритий акаунт (дописи не показуються в мережі)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "Згорнути потоки за замовчуванням"
 msgstr "Згорнути потоки за замовчуванням"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "Запити на підписку мають бути схвалені"
 msgstr "Запити на підписку мають бути схвалені"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "Публікувати метрики підписок та підписників"
 msgstr "Публікувати метрики підписок та підписників"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "Поточне місцезнаходження:"
 msgstr "Поточне місцезнаходження:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "Метадані профілю (пари ключ=значення в кожному рядку):"
 msgstr "Метадані профілю (пари ключ=значення в кожному рядку):"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "Мова інтерфейсу:"
 msgstr "Мова інтерфейсу:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "Новий пароль:"
 msgstr "Новий пароль:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "Повторити новий пароль:"
 msgstr "Повторити новий пароль:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "Оновлення даних користувача"
 msgstr "Оновлення даних користувача"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "Підписані хештеги..."
 msgstr "Підписані хештеги..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "Один хештег на рядок"
 msgstr "Один хештег на рядок"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "Оновити хештеги"
 msgstr "Оновити хештеги"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "Позначте допис як вподобаний"
 msgstr "Позначте допис як вподобаний"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "Більше не подобається"
 msgstr "Більше не подобається"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "Мені це не дуже подобається"
 msgstr "Мені це не дуже подобається"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "Відкріпити"
 msgstr "Відкріпити"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "Відкріпити цей допис зі власної стрічки"
 msgstr "Відкріпити цей допис зі власної стрічки"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "Закріпити"
 msgstr "Закріпити"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "Закріпити цей допис до власної стрічки"
 msgstr "Закріпити цей допис до власної стрічки"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "Поділитися цим дописом зі своїми підписниками"
 msgstr "Поділитися цим дописом зі своїми підписниками"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "Скасувати просування"
 msgstr "Скасувати просування"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "Я шкодую, що просував це"
 msgstr "Я шкодую, що просував це"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "Видалити з закладок"
 msgstr "Видалити з закладок"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "Видалити цей допис з закладок"
 msgstr "Видалити цей допис з закладок"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "Додати в закладки"
 msgstr "Додати в закладки"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "Додайте цей допис в закладки"
 msgstr "Додайте цей допис в закладки"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "Відписатися"
 msgstr "Відписатися"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "Відписатися від цього користувача"
 msgstr "Відписатися від цього користувача"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "Підписатися до цього користувача"
 msgstr "Підписатися до цього користувача"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "Відписатися від групи"
 msgstr "Відписатися від групи"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "Відписатися від групи чи канала"
 msgstr "Відписатися від групи чи канала"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "Підписатися на групу"
 msgstr "Підписатися на групу"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "Підписатися на групу чи канал"
 msgstr "Підписатися на групу чи канал"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "Заглушити"
 msgstr "Заглушити"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "Назавжди заблокувати активність цього користувача"
 msgstr "Назавжди заблокувати активність цього користувача"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "Видалити"
 msgstr "Видалити"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "Видалити цей допис"
 msgstr "Видалити цей допис"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "Приховати"
 msgstr "Приховати"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "Приховати цей допис разом з обговоренням"
 msgstr "Приховати цей допис разом з обговоренням"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "Редагувати..."
 msgstr "Редагувати..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "Відповісти..."
 msgstr "Відповісти..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "Обрізано (занадто багато)"
 msgstr "Обрізано (занадто багато)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "підписан на вас"
 msgstr "підписан на вас"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "Закріплено"
 msgstr "Закріплено"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "Додано до закладок"
 msgstr "Додано до закладок"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "Опитування"
 msgstr "Опитування"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "Проголосовано"
 msgstr "Проголосовано"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "Подія"
 msgstr "Подія"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "просунуто"
 msgstr "просунуто"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "у відповідь на"
 msgstr "у відповідь на"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr " [ДЕЛІКАТНИЙ ВМІСТ]"
 msgstr " [ДЕЛІКАТНИЙ ВМІСТ]"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "Голос"
 msgstr "Голос"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "Завершено"
 msgstr "Завершено"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "Завершується через"
 msgstr "Завершується через"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "Відео"
 msgstr "Відео"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "Аудіо"
 msgstr "Аудіо"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "Вкладення"
 msgstr "Вкладення"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "Опис..."
 msgstr "Опис..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "Вихідний канал або спільнота"
 msgstr "Вихідний канал або спільнота"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "Час: "
 msgstr "Час: "
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "Раніше..."
 msgstr "Раніше..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "про цей сайт"
 msgstr "про цей сайт"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "на базі "
 msgstr "на базі "
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "Відхилити"
 msgstr "Відхилити"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "Стрічки для списку '%s'"
 msgstr "Стрічки для списку '%s'"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "Закріплені дописи"
 msgstr "Закріплені дописи"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "Дописи у закладках"
 msgstr "Дописи у закладках"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "Чернетки дописів"
 msgstr "Чернетки дописів"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "Усе переглянуто"
 msgstr "Усе переглянуто"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "Повернутися до початку"
 msgstr "Повернутися до початку"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "Історія"
 msgstr "Історія"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "Більше..."
 msgstr "Більше..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "Без обмеження"
 msgstr "Без обмеження"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "Дозволити просування від цього користувача"
 msgstr "Дозволити просування від цього користувача"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "Обмежити"
 msgstr "Обмежити"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "Заборонити просування від цього користувача"
 msgstr "Заборонити просування від цього користувача"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "Видалити користувача"
 msgstr "Видалити користувача"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "Підтвердити"
 msgstr "Підтвердити"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "Підтвердити цей запит на підписку"
 msgstr "Підтвердити цей запит на підписку"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "Відхилити"
 msgstr "Відхилити"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "Відхилити цей запит на підписку"
 msgstr "Відхилити цей запит на підписку"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "Скасувати глушіння"
 msgstr "Скасувати глушіння"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "Припинити глушіння дій цього користувача"
 msgstr "Припинити глушіння дій цього користувача"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "Заглушити всі дії цього користувача"
 msgstr "Заглушити всі дії цього користувача"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "Особисте повідомлення..."
 msgstr "Особисте повідомлення..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "Запити на підписку очікують на розгляд"
 msgstr "Запити на підписку очікують на розгляд"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "Ваші підписки"
 msgstr "Ваші підписки"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "Ваші підписники"
 msgstr "Ваші підписники"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "Очистити все"
 msgstr "Очистити все"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "Згадка"
 msgstr "Згадка"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "Завершене опитування"
 msgstr "Завершене опитування"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "Запит на підписку"
 msgstr "Запит на підписку"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "Контекст"
 msgstr "Контекст"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "Нове"
 msgstr "Нове"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "Вже переглянуто"
 msgstr "Вже переглянуто"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "Нема"
 msgstr "Нема"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "Результати пошуку для облікового запису %s"
 msgstr "Результати пошуку для облікового запису %s"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "Обліковий запис %s не знайдений"
 msgstr "Обліковий запис %s не знайдений"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "Результати пошуку тега %s"
 msgstr "Результати пошуку тега %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "Нічого не знайдено за тегом %s"
 msgstr "Нічого не знайдено за тегом %s"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "Результати пошуку для '%s' (можливо є більше)"
 msgstr "Результати пошуку для '%s' (можливо є більше)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "Результати пошуку для '%s'"
 msgstr "Результати пошуку для '%s'"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "Немає більше збігів для '%s'"
 msgstr "Немає більше збігів для '%s'"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "Нічого не знайдено для '%s'"
 msgstr "Нічого не знайдено для '%s'"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "Показуємо стрічку сервера"
 msgstr "Показуємо стрічку сервера"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "Показуємо стрічку для списку '%s'"
 msgstr "Показуємо стрічку для списку '%s'"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "Результати пошуку для тега #%s"
 msgstr "Результати пошуку для тега #%s"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "Останні повідомлення на цьому сервері"
 msgstr "Останні повідомлення на цьому сервері"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "Заблоковані теги..."
 msgstr "Заблоковані теги..."
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "Необов'язковий URL для відповіді"
 msgstr "Необов'язковий URL для відповіді"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -715,54 +715,74 @@ msgstr ""
 "Варіант 3...\n"
 "Варіант 3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "Ключ API для бота"
 msgstr "Ключ API для бота"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "Id чату"
 msgstr "Id чату"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "повна URL сервера ntfy (наприклад https://ntfy.sh/YourTopic)"
 msgstr "повна URL сервера ntfy (наприклад https://ntfy.sh/YourTopic)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "токен ntfy - якщо потрібно"
 msgstr "токен ntfy - якщо потрібно"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "закріплено"
 msgstr "закріплено"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "закладки"
 msgstr "закладки"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "чернетки"
 msgstr "чернетки"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr "Запланувати..."
 msgstr "Запланувати..."
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr "Час допису:"
 msgstr "Час допису:"
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr "Заплановані дописи"
 msgstr "Заплановані дописи"
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr "заплановані дописи"
 msgstr "заплановані дописи"
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr "Дата та час допису (часовий пояс: %s):"
 msgstr "Дата та час допису (часовий пояс: %s):"
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr "Часовий пояс:"
 msgstr "Часовий пояс:"
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 201 - 181
po/zh.po

@@ -8,694 +8,694 @@ msgstr ""
 "Language: zh\n"
 "Language: zh\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 
 
-#: html.c:384
+#: html.c:402
 msgid "Sensitive content: "
 msgid "Sensitive content: "
 msgstr "敏感内容:"
 msgstr "敏感内容:"
 
 
-#: html.c:392
+#: html.c:410
 msgid "Sensitive content description"
 msgid "Sensitive content description"
 msgstr "敏感内容描述"
 msgstr "敏感内容描述"
 
 
-#: html.c:405
+#: html.c:423
 msgid "Only for mentioned people: "
 msgid "Only for mentioned people: "
 msgstr "只有提及到的人:"
 msgstr "只有提及到的人:"
 
 
-#: html.c:428
+#: html.c:446
 msgid "Reply to (URL): "
 msgid "Reply to (URL): "
 msgstr "回复给(网址):"
 msgstr "回复给(网址):"
 
 
-#: html.c:437
+#: html.c:455
 msgid "Don't send, but store as a draft"
 msgid "Don't send, but store as a draft"
 msgstr "不要发送,但是保存为草稿"
 msgstr "不要发送,但是保存为草稿"
 
 
-#: html.c:438
+#: html.c:456
 msgid "Draft:"
 msgid "Draft:"
 msgstr "草稿:"
 msgstr "草稿:"
 
 
-#: html.c:494
+#: html.c:546
 msgid "Attachments..."
 msgid "Attachments..."
 msgstr "附件..."
 msgstr "附件..."
 
 
-#: html.c:517
+#: html.c:569
 msgid "File:"
 msgid "File:"
 msgstr "文件:"
 msgstr "文件:"
 
 
-#: html.c:521
+#: html.c:573
 msgid "Clear this field to delete the attachment"
 msgid "Clear this field to delete the attachment"
 msgstr "清除此项以删除附件"
 msgstr "清除此项以删除附件"
 
 
-#: html.c:530 html.c:555
+#: html.c:582 html.c:607
 msgid "Attachment description"
 msgid "Attachment description"
 msgstr "附件描述"
 msgstr "附件描述"
 
 
-#: html.c:566
+#: html.c:618
 msgid "Poll..."
 msgid "Poll..."
 msgstr "投票..."
 msgstr "投票..."
 
 
-#: html.c:568
+#: html.c:620
 msgid "Poll options (one per line, up to 8):"
 msgid "Poll options (one per line, up to 8):"
 msgstr "投票选项(每项一行,最多八项):"
 msgstr "投票选项(每项一行,最多八项):"
 
 
-#: html.c:580
+#: html.c:632
 msgid "One choice"
 msgid "One choice"
 msgstr "单选"
 msgstr "单选"
 
 
-#: html.c:583
+#: html.c:635
 msgid "Multiple choices"
 msgid "Multiple choices"
 msgstr "多选"
 msgstr "多选"
 
 
-#: html.c:589
+#: html.c:641
 msgid "End in 5 minutes"
 msgid "End in 5 minutes"
 msgstr "五分钟后结束"
 msgstr "五分钟后结束"
 
 
-#: html.c:593
+#: html.c:645
 msgid "End in 1 hour"
 msgid "End in 1 hour"
 msgstr "一小时后结束"
 msgstr "一小时后结束"
 
 
-#: html.c:596
+#: html.c:648
 msgid "End in 1 day"
 msgid "End in 1 day"
 msgstr "一天后结束"
 msgstr "一天后结束"
 
 
-#: html.c:604
+#: html.c:656
 msgid "Post"
 msgid "Post"
 msgstr ""
 msgstr ""
 
 
-#: html.c:701 html.c:708
+#: html.c:758 html.c:765
 msgid "Site description"
 msgid "Site description"
 msgstr "站点描述"
 msgstr "站点描述"
 
 
-#: html.c:719
+#: html.c:776
 msgid "Admin email"
 msgid "Admin email"
 msgstr "管理员电子邮箱"
 msgstr "管理员电子邮箱"
 
 
-#: html.c:732
+#: html.c:789
 msgid "Admin account"
 msgid "Admin account"
 msgstr "管理员帐号"
 msgstr "管理员帐号"
 
 
-#: html.c:800 html.c:1136
+#: html.c:854 html.c:1210
 #, c-format
 #, c-format
 msgid "%d following, %d followers"
 msgid "%d following, %d followers"
 msgstr "%d 个正在关注,%d 个关注者"
 msgstr "%d 个正在关注,%d 个关注者"
 
 
-#: html.c:890
+#: html.c:951
 msgid "RSS"
 msgid "RSS"
 msgstr "RSS"
 msgstr "RSS"
 
 
-#: html.c:895 html.c:923
+#: html.c:956 html.c:995
 msgid "private"
 msgid "private"
 msgstr "私密"
 msgstr "私密"
 
 
-#: html.c:919
+#: html.c:991
 msgid "public"
 msgid "public"
 msgstr "公开"
 msgstr "公开"
 
 
-#: html.c:927
+#: html.c:999
 msgid "notifications"
 msgid "notifications"
 msgstr "通知"
 msgstr "通知"
 
 
-#: html.c:932
+#: html.c:1004
 msgid "people"
 msgid "people"
 msgstr "成员"
 msgstr "成员"
 
 
-#: html.c:936
+#: html.c:1009
 msgid "instance"
 msgid "instance"
 msgstr "实例"
 msgstr "实例"
 
 
-#: html.c:945
+#: html.c:1018
 msgid ""
 msgid ""
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "Search posts by URL or content (regular expression), @user@host accounts, or "
 "#tag"
 "#tag"
 msgstr ""
 msgstr ""
 "通过网址、内容(正则表达式)、@用户@服务器 帐号,或者 #话题标签搜索贴子"
 "通过网址、内容(正则表达式)、@用户@服务器 帐号,或者 #话题标签搜索贴子"
 
 
-#: html.c:946
+#: html.c:1019
 msgid "Content search"
 msgid "Content search"
 msgstr "内容搜索"
 msgstr "内容搜索"
 
 
-#: html.c:1068
+#: html.c:1145
 msgid "verified link"
 msgid "verified link"
 msgstr "已验证的链接"
 msgstr "已验证的链接"
 
 
-#: html.c:1125 html.c:2540 html.c:2553 html.c:2562
+#: html.c:1202 html.c:2657 html.c:2670 html.c:2679 html.c:3603
 msgid "Location: "
 msgid "Location: "
 msgstr "位置:"
 msgstr "位置:"
 
 
-#: html.c:1161
+#: html.c:1234
 msgid "New Post..."
 msgid "New Post..."
 msgstr "新贴子..."
 msgstr "新贴子..."
 
 
-#: html.c:1163
+#: html.c:1236
 msgid "What's on your mind?"
 msgid "What's on your mind?"
 msgstr "你在想什么?"
 msgstr "你在想什么?"
 
 
-#: html.c:1172
+#: html.c:1245
 msgid "Operations..."
 msgid "Operations..."
 msgstr "操作..."
 msgstr "操作..."
 
 
-#: html.c:1187 html.c:1788 html.c:3193 html.c:4578
+#: html.c:1260 html.c:1881 html.c:3323 html.c:4729
 msgid "Follow"
 msgid "Follow"
 msgstr "关注"
 msgstr "关注"
 
 
-#: html.c:1189
+#: html.c:1262
 msgid "(by URL or user@host)"
 msgid "(by URL or user@host)"
 msgstr "(通过网址或者 用户名@服务器)"
 msgstr "(通过网址或者 用户名@服务器)"
 
 
-#: html.c:1204 html.c:1764 html.c:4527
+#: html.c:1277 html.c:1857 html.c:4678
 msgid "Boost"
 msgid "Boost"
 msgstr "转发"
 msgstr "转发"
 
 
-#: html.c:1206 html.c:1223
+#: html.c:1279 html.c:1296
 msgid "(by URL)"
 msgid "(by URL)"
 msgstr "(通过网址)"
 msgstr "(通过网址)"
 
 
-#: html.c:1221 html.c:1743 html.c:4518
+#: html.c:1294 html.c:1836 html.c:4669
 msgid "Like"
 msgid "Like"
 msgstr "点赞"
 msgstr "点赞"
 
 
-#: html.c:1347
+#: html.c:1422
 msgid "User Settings..."
 msgid "User Settings..."
 msgstr "用户设置..."
 msgstr "用户设置..."
 
 
-#: html.c:1356
+#: html.c:1431
 msgid "Display name:"
 msgid "Display name:"
 msgstr "显示名字:"
 msgstr "显示名字:"
 
 
-#: html.c:1362
+#: html.c:1437
 msgid "Your name"
 msgid "Your name"
 msgstr "你的名字"
 msgstr "你的名字"
 
 
-#: html.c:1364
+#: html.c:1439
 msgid "Avatar: "
 msgid "Avatar: "
 msgstr "头像:"
 msgstr "头像:"
 
 
-#: html.c:1372
+#: html.c:1447
 msgid "Delete current avatar"
 msgid "Delete current avatar"
 msgstr "删除当前头像"
 msgstr "删除当前头像"
 
 
-#: html.c:1374
+#: html.c:1449
 msgid "Header image (banner): "
 msgid "Header image (banner): "
 msgstr "页眉图像(横幅)"
 msgstr "页眉图像(横幅)"
 
 
-#: html.c:1382
+#: html.c:1457
 msgid "Delete current header image"
 msgid "Delete current header image"
 msgstr "删除当前的页眉图像"
 msgstr "删除当前的页眉图像"
 
 
-#: html.c:1384
+#: html.c:1459
 msgid "Bio:"
 msgid "Bio:"
 msgstr "简介"
 msgstr "简介"
 
 
-#: html.c:1390
+#: html.c:1465
 msgid "Write about yourself here..."
 msgid "Write about yourself here..."
 msgstr "在这里介绍你自己..."
 msgstr "在这里介绍你自己..."
 
 
-#: html.c:1399
+#: html.c:1474
 msgid "Always show sensitive content"
 msgid "Always show sensitive content"
 msgstr "总是显示敏感内容"
 msgstr "总是显示敏感内容"
 
 
-#: html.c:1401
+#: html.c:1476
 msgid "Email address for notifications:"
 msgid "Email address for notifications:"
 msgstr "用于通知的电子邮箱地址"
 msgstr "用于通知的电子邮箱地址"
 
 
-#: html.c:1409
+#: html.c:1484
 msgid "Telegram notifications (bot key and chat id):"
 msgid "Telegram notifications (bot key and chat id):"
 msgstr "Telegram通知(bot密钥和聊天ID)"
 msgstr "Telegram通知(bot密钥和聊天ID)"
 
 
-#: html.c:1423
+#: html.c:1498
 msgid "ntfy notifications (ntfy server and token):"
 msgid "ntfy notifications (ntfy server and token):"
 msgstr "ntfy通知(ntfy服务器和令牌):"
 msgstr "ntfy通知(ntfy服务器和令牌):"
 
 
-#: html.c:1437
+#: html.c:1520
 msgid "Maximum days to keep posts (0: server settings):"
 msgid "Maximum days to keep posts (0: server settings):"
 msgstr "保存贴子的最大天数(0:服务器设置)"
 msgstr "保存贴子的最大天数(0:服务器设置)"
 
 
-#: html.c:1451
+#: html.c:1534
 msgid "Drop direct messages from people you don't follow"
 msgid "Drop direct messages from people you don't follow"
 msgstr "丢弃你没有关注的人的私信"
 msgstr "丢弃你没有关注的人的私信"
 
 
-#: html.c:1460
+#: html.c:1543
 msgid "This account is a bot"
 msgid "This account is a bot"
 msgstr "此帐号是机器人"
 msgstr "此帐号是机器人"
 
 
-#: html.c:1469
+#: html.c:1552
 msgid "Auto-boost all mentions to this account"
 msgid "Auto-boost all mentions to this account"
 msgstr "自动转发所有对此帐号的提及"
 msgstr "自动转发所有对此帐号的提及"
 
 
-#: html.c:1478
+#: html.c:1561
 msgid "This account is private (posts are not shown through the web)"
 msgid "This account is private (posts are not shown through the web)"
 msgstr "这是一个私密帐号(贴子不会在网页中显示)"
 msgstr "这是一个私密帐号(贴子不会在网页中显示)"
 
 
-#: html.c:1488
+#: html.c:1571
 msgid "Collapse top threads by default"
 msgid "Collapse top threads by default"
 msgstr "默认收起主题帖"
 msgstr "默认收起主题帖"
 
 
-#: html.c:1497
+#: html.c:1580
 msgid "Follow requests must be approved"
 msgid "Follow requests must be approved"
 msgstr "关注请求必须经过审批"
 msgstr "关注请求必须经过审批"
 
 
-#: html.c:1506
+#: html.c:1589
 msgid "Publish follower and following metrics"
 msgid "Publish follower and following metrics"
 msgstr "展示关注者和正在关注的数量"
 msgstr "展示关注者和正在关注的数量"
 
 
-#: html.c:1508
+#: html.c:1591
 msgid "Current location:"
 msgid "Current location:"
 msgstr "当前位置:"
 msgstr "当前位置:"
 
 
-#: html.c:1522
+#: html.c:1605
 msgid "Profile metadata (key=value pairs in each line):"
 msgid "Profile metadata (key=value pairs in each line):"
 msgstr "个人资料元数据(每行一条 键=值)"
 msgstr "个人资料元数据(每行一条 键=值)"
 
 
-#: html.c:1533
+#: html.c:1616
 msgid "Web interface language:"
 msgid "Web interface language:"
 msgstr "网页界面语言:"
 msgstr "网页界面语言:"
 
 
-#: html.c:1543
+#: html.c:1635
 msgid "New password:"
 msgid "New password:"
 msgstr "新密码:"
 msgstr "新密码:"
 
 
-#: html.c:1550
+#: html.c:1642
 msgid "Repeat new password:"
 msgid "Repeat new password:"
 msgstr "重复新密码:"
 msgstr "重复新密码:"
 
 
-#: html.c:1560
+#: html.c:1652
 msgid "Update user info"
 msgid "Update user info"
 msgstr "更新用户信息:"
 msgstr "更新用户信息:"
 
 
-#: html.c:1571
+#: html.c:1663
 msgid "Followed hashtags..."
 msgid "Followed hashtags..."
 msgstr "已关注的话题标签..."
 msgstr "已关注的话题标签..."
 
 
-#: html.c:1573 html.c:1605
+#: html.c:1665 html.c:1698
 msgid "One hashtag per line"
 msgid "One hashtag per line"
 msgstr "每行一个话题标签"
 msgstr "每行一个话题标签"
 
 
-#: html.c:1594 html.c:1626
+#: html.c:1687 html.c:1719
 msgid "Update hashtags"
 msgid "Update hashtags"
 msgstr "更新话题标签"
 msgstr "更新话题标签"
 
 
-#: html.c:1743
+#: html.c:1836
 msgid "Say you like this post"
 msgid "Say you like this post"
 msgstr "说你喜欢这个贴子"
 msgstr "说你喜欢这个贴子"
 
 
-#: html.c:1748 html.c:4536
+#: html.c:1841 html.c:4687
 msgid "Unlike"
 msgid "Unlike"
 msgstr "不喜欢"
 msgstr "不喜欢"
 
 
-#: html.c:1748
+#: html.c:1841
 msgid "Nah don't like it that much"
 msgid "Nah don't like it that much"
 msgstr "啊,不怎么喜欢这个"
 msgstr "啊,不怎么喜欢这个"
 
 
-#: html.c:1754 html.c:4673
+#: html.c:1847 html.c:4824
 msgid "Unpin"
 msgid "Unpin"
 msgstr "取消置顶"
 msgstr "取消置顶"
 
 
-#: html.c:1754
+#: html.c:1847
 msgid "Unpin this post from your timeline"
 msgid "Unpin this post from your timeline"
 msgstr "从你的时间线上取消置顶这个贴子"
 msgstr "从你的时间线上取消置顶这个贴子"
 
 
-#: html.c:1757 html.c:4668
+#: html.c:1850 html.c:4819
 msgid "Pin"
 msgid "Pin"
 msgstr "置顶"
 msgstr "置顶"
 
 
-#: html.c:1757
+#: html.c:1850
 msgid "Pin this post to the top of your timeline"
 msgid "Pin this post to the top of your timeline"
 msgstr "把这条贴子置顶在你的时间线上"
 msgstr "把这条贴子置顶在你的时间线上"
 
 
-#: html.c:1764
+#: html.c:1857
 msgid "Announce this post to your followers"
 msgid "Announce this post to your followers"
 msgstr "向你的关注者宣布这条贴子"
 msgstr "向你的关注者宣布这条贴子"
 
 
-#: html.c:1769 html.c:4544
+#: html.c:1862 html.c:4695
 msgid "Unboost"
 msgid "Unboost"
 msgstr "取消转发"
 msgstr "取消转发"
 
 
-#: html.c:1769
+#: html.c:1862
 msgid "I regret I boosted this"
 msgid "I regret I boosted this"
 msgstr "我后悔转发这个了"
 msgstr "我后悔转发这个了"
 
 
-#: html.c:1775 html.c:4683
+#: html.c:1868 html.c:4834
 msgid "Unbookmark"
 msgid "Unbookmark"
 msgstr "取消收藏"
 msgstr "取消收藏"
 
 
-#: html.c:1775
+#: html.c:1868
 msgid "Delete this post from your bookmarks"
 msgid "Delete this post from your bookmarks"
 msgstr "从收藏夹中删除这个贴子"
 msgstr "从收藏夹中删除这个贴子"
 
 
-#: html.c:1778 html.c:4678
+#: html.c:1871 html.c:4829
 msgid "Bookmark"
 msgid "Bookmark"
 msgstr "收藏"
 msgstr "收藏"
 
 
-#: html.c:1778
+#: html.c:1871
 msgid "Add this post to your bookmarks"
 msgid "Add this post to your bookmarks"
 msgstr "把这个贴子加入收藏夹"
 msgstr "把这个贴子加入收藏夹"
 
 
-#: html.c:1784 html.c:3179 html.c:3367 html.c:4591
+#: html.c:1877 html.c:3309 html.c:3500 html.c:4742
 msgid "Unfollow"
 msgid "Unfollow"
 msgstr "取消关注"
 msgstr "取消关注"
 
 
-#: html.c:1784 html.c:3180
+#: html.c:1877 html.c:3310
 msgid "Stop following this user's activity"
 msgid "Stop following this user's activity"
 msgstr "停止关注此用户的动态"
 msgstr "停止关注此用户的动态"
 
 
-#: html.c:1788 html.c:3194
+#: html.c:1881 html.c:3324
 msgid "Start following this user's activity"
 msgid "Start following this user's activity"
 msgstr "开始关注此用户的动态"
 msgstr "开始关注此用户的动态"
 
 
-#: html.c:1794 html.c:4621
+#: html.c:1887 html.c:4772
 msgid "Unfollow Group"
 msgid "Unfollow Group"
 msgstr "取消关注群组"
 msgstr "取消关注群组"
 
 
-#: html.c:1795
+#: html.c:1888
 msgid "Stop following this group or channel"
 msgid "Stop following this group or channel"
 msgstr "取消关注这个群组或频道"
 msgstr "取消关注这个群组或频道"
 
 
-#: html.c:1799 html.c:4608
+#: html.c:1892 html.c:4759
 msgid "Follow Group"
 msgid "Follow Group"
 msgstr "关注群组"
 msgstr "关注群组"
 
 
-#: html.c:1800
+#: html.c:1893
 msgid "Start following this group or channel"
 msgid "Start following this group or channel"
 msgstr "开始关注这个群组或频道"
 msgstr "开始关注这个群组或频道"
 
 
-#: html.c:1805 html.c:3216 html.c:4552
+#: html.c:1898 html.c:3346 html.c:4703
 msgid "MUTE"
 msgid "MUTE"
 msgstr "静音"
 msgstr "静音"
 
 
-#: html.c:1806
+#: html.c:1899
 msgid "Block any activity from this user forever"
 msgid "Block any activity from this user forever"
 msgstr "永久屏蔽来自这个用户的任何动态"
 msgstr "永久屏蔽来自这个用户的任何动态"
 
 
-#: html.c:1811 html.c:3198 html.c:4638
+#: html.c:1904 html.c:3328 html.c:4789
 msgid "Delete"
 msgid "Delete"
 msgstr "删除"
 msgstr "删除"
 
 
-#: html.c:1811
+#: html.c:1904
 msgid "Delete this post"
 msgid "Delete this post"
 msgstr "删除这条贴子"
 msgstr "删除这条贴子"
 
 
-#: html.c:1814 html.c:4560
+#: html.c:1907 html.c:4711
 msgid "Hide"
 msgid "Hide"
 msgstr "隐藏"
 msgstr "隐藏"
 
 
-#: html.c:1814
+#: html.c:1907
 msgid "Hide this post and its children"
 msgid "Hide this post and its children"
 msgstr "删除这条贴子及其回复"
 msgstr "删除这条贴子及其回复"
 
 
-#: html.c:1845
+#: html.c:1947
 msgid "Edit..."
 msgid "Edit..."
 msgstr "编辑..."
 msgstr "编辑..."
 
 
-#: html.c:1865
+#: html.c:1967
 msgid "Reply..."
 msgid "Reply..."
 msgstr "回复..."
 msgstr "回复..."
 
 
-#: html.c:1916
+#: html.c:2018
 msgid "Truncated (too deep)"
 msgid "Truncated (too deep)"
 msgstr "已被截断(太深了)"
 msgstr "已被截断(太深了)"
 
 
-#: html.c:1925
+#: html.c:2036
 msgid "follows you"
 msgid "follows you"
 msgstr "关注了你"
 msgstr "关注了你"
 
 
-#: html.c:1988
+#: html.c:2104
 msgid "Pinned"
 msgid "Pinned"
 msgstr "已置顶"
 msgstr "已置顶"
 
 
-#: html.c:1996
+#: html.c:2112
 msgid "Bookmarked"
 msgid "Bookmarked"
 msgstr "已收藏"
 msgstr "已收藏"
 
 
-#: html.c:2004
+#: html.c:2120
 msgid "Poll"
 msgid "Poll"
 msgstr "投票"
 msgstr "投票"
 
 
-#: html.c:2011
+#: html.c:2127
 msgid "Voted"
 msgid "Voted"
 msgstr "已投票"
 msgstr "已投票"
 
 
-#: html.c:2020
+#: html.c:2136
 msgid "Event"
 msgid "Event"
 msgstr "事件"
 msgstr "事件"
 
 
-#: html.c:2052 html.c:2081
+#: html.c:2168 html.c:2197
 msgid "boosted"
 msgid "boosted"
 msgstr "已转发"
 msgstr "已转发"
 
 
-#: html.c:2097
+#: html.c:2211
 msgid "in reply to"
 msgid "in reply to"
 msgstr "回复给"
 msgstr "回复给"
 
 
-#: html.c:2148
+#: html.c:2266
 msgid " [SENSITIVE CONTENT]"
 msgid " [SENSITIVE CONTENT]"
 msgstr "【敏感内容】"
 msgstr "【敏感内容】"
 
 
-#: html.c:2325
+#: html.c:2443
 msgid "Vote"
 msgid "Vote"
 msgstr "投票"
 msgstr "投票"
 
 
-#: html.c:2335
+#: html.c:2453
 msgid "Closed"
 msgid "Closed"
 msgstr "已关闭"
 msgstr "已关闭"
 
 
-#: html.c:2360
+#: html.c:2478
 msgid "Closes in"
 msgid "Closes in"
 msgstr "距离关闭还有"
 msgstr "距离关闭还有"
 
 
-#: html.c:2441
+#: html.c:2558
 msgid "Video"
 msgid "Video"
 msgstr "视频"
 msgstr "视频"
 
 
-#: html.c:2456
+#: html.c:2573
 msgid "Audio"
 msgid "Audio"
 msgstr "音频"
 msgstr "音频"
 
 
-#: html.c:2484
+#: html.c:2601
 msgid "Attachment"
 msgid "Attachment"
 msgstr "附件"
 msgstr "附件"
 
 
-#: html.c:2498
+#: html.c:2615
 msgid "Alt..."
 msgid "Alt..."
 msgstr "描述..."
 msgstr "描述..."
 
 
-#: html.c:2511
+#: html.c:2628
 msgid "Source channel or community"
 msgid "Source channel or community"
 msgstr "来源频道或者社群"
 msgstr "来源频道或者社群"
 
 
-#: html.c:2605
+#: html.c:2722
 msgid "Time: "
 msgid "Time: "
 msgstr "时间:"
 msgstr "时间:"
 
 
-#: html.c:2686
+#: html.c:2803
 msgid "Older..."
 msgid "Older..."
 msgstr "更早的..."
 msgstr "更早的..."
 
 
-#: html.c:2788
+#: html.c:2905
 msgid "about this site"
 msgid "about this site"
 msgstr "关于此站点"
 msgstr "关于此站点"
 
 
-#: html.c:2790
+#: html.c:2907
 msgid "powered by "
 msgid "powered by "
 msgstr "驱动自"
 msgstr "驱动自"
 
 
-#: html.c:2855
+#: html.c:2972
 msgid "Dismiss"
 msgid "Dismiss"
 msgstr "忽略"
 msgstr "忽略"
 
 
-#: html.c:2872
+#: html.c:2989
 #, c-format
 #, c-format
 msgid "Timeline for list '%s'"
 msgid "Timeline for list '%s'"
 msgstr "列表'%s'的时间线"
 msgstr "列表'%s'的时间线"
 
 
-#: html.c:2891 html.c:3944
+#: html.c:3008 html.c:4092
 msgid "Pinned posts"
 msgid "Pinned posts"
 msgstr "置顶的贴子"
 msgstr "置顶的贴子"
 
 
-#: html.c:2903 html.c:3959
+#: html.c:3020 html.c:4107
 msgid "Bookmarked posts"
 msgid "Bookmarked posts"
 msgstr "收藏的贴子"
 msgstr "收藏的贴子"
 
 
-#: html.c:2915 html.c:3974
+#: html.c:3032 html.c:4122
 msgid "Post drafts"
 msgid "Post drafts"
 msgstr "贴子草稿"
 msgstr "贴子草稿"
 
 
-#: html.c:2986
+#: html.c:3109
 msgid "No more unseen posts"
 msgid "No more unseen posts"
 msgstr "没有更多未读贴子了"
 msgstr "没有更多未读贴子了"
 
 
-#: html.c:2990 html.c:3090
+#: html.c:3113 html.c:3213
 msgid "Back to top"
 msgid "Back to top"
 msgstr "返回顶部"
 msgstr "返回顶部"
 
 
-#: html.c:3043
+#: html.c:3166
 msgid "History"
 msgid "History"
 msgstr "历史"
 msgstr "历史"
 
 
-#: html.c:3095 html.c:3515
+#: html.c:3218 html.c:3657
 msgid "More..."
 msgid "More..."
 msgstr "更多..."
 msgstr "更多..."
 
 
-#: html.c:3184 html.c:4574
+#: html.c:3314 html.c:4725
 msgid "Unlimit"
 msgid "Unlimit"
 msgstr "取消限制"
 msgstr "取消限制"
 
 
-#: html.c:3185
+#: html.c:3315
 msgid "Allow announces (boosts) from this user"
 msgid "Allow announces (boosts) from this user"
 msgstr "允许来自这个用户的通知(转发)"
 msgstr "允许来自这个用户的通知(转发)"
 
 
-#: html.c:3188 html.c:4570
+#: html.c:3318 html.c:4721
 msgid "Limit"
 msgid "Limit"
 msgstr "限制"
 msgstr "限制"
 
 
-#: html.c:3189
+#: html.c:3319
 msgid "Block announces (boosts) from this user"
 msgid "Block announces (boosts) from this user"
 msgstr "屏蔽来自这个用户的通知(转发)"
 msgstr "屏蔽来自这个用户的通知(转发)"
 
 
-#: html.c:3198
+#: html.c:3328
 msgid "Delete this user"
 msgid "Delete this user"
 msgstr "删除此用户"
 msgstr "删除此用户"
 
 
-#: html.c:3203 html.c:4688
+#: html.c:3333 html.c:4839
 msgid "Approve"
 msgid "Approve"
 msgstr "允许"
 msgstr "允许"
 
 
-#: html.c:3204
+#: html.c:3334
 msgid "Approve this follow request"
 msgid "Approve this follow request"
 msgstr "允许这个关注请求"
 msgstr "允许这个关注请求"
 
 
-#: html.c:3207 html.c:4712
+#: html.c:3337 html.c:4863
 msgid "Discard"
 msgid "Discard"
 msgstr "丢弃"
 msgstr "丢弃"
 
 
-#: html.c:3207
+#: html.c:3337
 msgid "Discard this follow request"
 msgid "Discard this follow request"
 msgstr "丢弃这个关注请求"
 msgstr "丢弃这个关注请求"
 
 
-#: html.c:3212 html.c:4556
+#: html.c:3342 html.c:4707
 msgid "Unmute"
 msgid "Unmute"
 msgstr "取消静音"
 msgstr "取消静音"
 
 
-#: html.c:3213
+#: html.c:3343
 msgid "Stop blocking activities from this user"
 msgid "Stop blocking activities from this user"
 msgstr "停止屏蔽来自此用户的动态"
 msgstr "停止屏蔽来自此用户的动态"
 
 
-#: html.c:3217
+#: html.c:3347
 msgid "Block any activity from this user"
 msgid "Block any activity from this user"
 msgstr "屏蔽来自此用户的任何动态"
 msgstr "屏蔽来自此用户的任何动态"
 
 
-#: html.c:3225
+#: html.c:3355
 msgid "Direct Message..."
 msgid "Direct Message..."
 msgstr "私信..."
 msgstr "私信..."
 
 
-#: html.c:3260
+#: html.c:3390
 msgid "Pending follow confirmations"
 msgid "Pending follow confirmations"
 msgstr "待处理的关注确认"
 msgstr "待处理的关注确认"
 
 
-#: html.c:3264
+#: html.c:3394
 msgid "People you follow"
 msgid "People you follow"
 msgstr "你关注的人"
 msgstr "你关注的人"
 
 
-#: html.c:3265
+#: html.c:3395
 msgid "People that follow you"
 msgid "People that follow you"
 msgstr "关注你的人"
 msgstr "关注你的人"
 
 
-#: html.c:3304
+#: html.c:3434
 msgid "Clear all"
 msgid "Clear all"
 msgstr "清除全部"
 msgstr "清除全部"
 
 
-#: html.c:3361
+#: html.c:3494
 msgid "Mention"
 msgid "Mention"
 msgstr "提及"
 msgstr "提及"
 
 
-#: html.c:3364
+#: html.c:3497
 msgid "Finished poll"
 msgid "Finished poll"
 msgstr "结束投票"
 msgstr "结束投票"
 
 
-#: html.c:3379
+#: html.c:3513
 msgid "Follow Request"
 msgid "Follow Request"
 msgstr "关注请求"
 msgstr "关注请求"
 
 
-#: html.c:3462
+#: html.c:3597
 msgid "Context"
 msgid "Context"
 msgstr "上下文"
 msgstr "上下文"
 
 
-#: html.c:3473
+#: html.c:3615
 msgid "New"
 msgid "New"
 msgstr "新建"
 msgstr "新建"
 
 
-#: html.c:3488
+#: html.c:3630
 msgid "Already seen"
 msgid "Already seen"
 msgstr "已经看过"
 msgstr "已经看过"
 
 
-#: html.c:3503
+#: html.c:3645
 msgid "None"
 msgid "None"
 msgstr "没有"
 msgstr "没有"
 
 
-#: html.c:3769
+#: html.c:3917
 #, c-format
 #, c-format
 msgid "Search results for account %s"
 msgid "Search results for account %s"
 msgstr "账户 %s 的搜索结果"
 msgstr "账户 %s 的搜索结果"
 
 
-#: html.c:3776
+#: html.c:3924
 #, c-format
 #, c-format
 msgid "Account %s not found"
 msgid "Account %s not found"
 msgstr "没有找到账户 %s"
 msgstr "没有找到账户 %s"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Search results for tag %s"
 msgid "Search results for tag %s"
 msgstr "标签 %s 的搜索结果"
 msgstr "标签 %s 的搜索结果"
 
 
-#: html.c:3807
+#: html.c:3955
 #, c-format
 #, c-format
 msgid "Nothing found for tag %s"
 msgid "Nothing found for tag %s"
 msgstr "没有找到标签'%s'的结果"
 msgstr "没有找到标签'%s'的结果"
 
 
-#: html.c:3823
+#: html.c:3971
 #, c-format
 #, c-format
 msgid "Search results for '%s' (may be more)"
 msgid "Search results for '%s' (may be more)"
 msgstr "'%s'的搜索结果(可能还有更多)"
 msgstr "'%s'的搜索结果(可能还有更多)"
 
 
-#: html.c:3826
+#: html.c:3974
 #, c-format
 #, c-format
 msgid "Search results for '%s'"
 msgid "Search results for '%s'"
 msgstr "'%s'的搜索结果"
 msgstr "'%s'的搜索结果"
 
 
-#: html.c:3829
+#: html.c:3977
 #, c-format
 #, c-format
 msgid "No more matches for '%s'"
 msgid "No more matches for '%s'"
 msgstr "没有更多匹配'%s'的结果了"
 msgstr "没有更多匹配'%s'的结果了"
 
 
-#: html.c:3831
+#: html.c:3979
 #, c-format
 #, c-format
 msgid "Nothing found for '%s'"
 msgid "Nothing found for '%s'"
 msgstr "没有找到'%s'的结果"
 msgstr "没有找到'%s'的结果"
 
 
-#: html.c:3929
+#: html.c:4077
 msgid "Showing instance timeline"
 msgid "Showing instance timeline"
 msgstr "显示实例时间线"
 msgstr "显示实例时间线"
 
 
-#: html.c:4012
+#: html.c:4160
 #, c-format
 #, c-format
 msgid "Showing timeline for list '%s'"
 msgid "Showing timeline for list '%s'"
 msgstr "显示列表'%s'的事件线"
 msgstr "显示列表'%s'的事件线"
 
 
-#: httpd.c:250
+#: httpd.c:258
 #, c-format
 #, c-format
 msgid "Search results for tag #%s"
 msgid "Search results for tag #%s"
 msgstr "标签 #%s 的搜索结果"
 msgstr "标签 #%s 的搜索结果"
 
 
-#: httpd.c:259
+#: httpd.c:267
 msgid "Recent posts by users in this instance"
 msgid "Recent posts by users in this instance"
 msgstr "此实例上的用户最近的贴子"
 msgstr "此实例上的用户最近的贴子"
 
 
-#: html.c:1603
+#: html.c:1696
 msgid "Blocked hashtags..."
 msgid "Blocked hashtags..."
 msgstr "已屏蔽的话题标签"
 msgstr "已屏蔽的话题标签"
 
 
-#: html.c:432
+#: html.c:450
 msgid "Optional URL to reply to"
 msgid "Optional URL to reply to"
 msgstr "可选的回复的网址"
 msgstr "可选的回复的网址"
 
 
-#: html.c:575
+#: html.c:627
 msgid ""
 msgid ""
 "Option 1...\n"
 "Option 1...\n"
 "Option 2...\n"
 "Option 2...\n"
@@ -707,54 +707,74 @@ msgstr ""
 "选项3...\n"
 "选项3...\n"
 "..."
 "..."
 
 
-#: html.c:1415
+#: html.c:1490
 msgid "Bot API key"
 msgid "Bot API key"
 msgstr "Bot API 密钥"
 msgstr "Bot API 密钥"
 
 
-#: html.c:1421
+#: html.c:1496
 msgid "Chat id"
 msgid "Chat id"
 msgstr "聊天ID"
 msgstr "聊天ID"
 
 
-#: html.c:1429
+#: html.c:1504
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgid "ntfy server - full URL (example: https://ntfy.sh/YourTopic)"
 msgstr "ntfy服务器 - 完整网址(例如:https://ntft.sh/YourTopic)"
 msgstr "ntfy服务器 - 完整网址(例如:https://ntft.sh/YourTopic)"
 
 
-#: html.c:1435
+#: html.c:1510
 msgid "ntfy token - if needed"
 msgid "ntfy token - if needed"
 msgstr "ntft令牌 - 如果需要的话"
 msgstr "ntft令牌 - 如果需要的话"
 
 
-#: html.c:2892
+#: html.c:3009
 msgid "pinned"
 msgid "pinned"
 msgstr "置顶"
 msgstr "置顶"
 
 
-#: html.c:2904
+#: html.c:3021
 msgid "bookmarks"
 msgid "bookmarks"
 msgstr "收藏夹"
 msgstr "收藏夹"
 
 
-#: html.c:2916
+#: html.c:3033
 msgid "drafts"
 msgid "drafts"
 msgstr "草稿"
 msgstr "草稿"
 
 
-#: html.c:464
+#: html.c:516
 msgid "Scheduled post..."
 msgid "Scheduled post..."
 msgstr ""
 msgstr ""
 
 
 msgid "Post date and time:"
 msgid "Post date and time:"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2927 html.c:3989
+#: html.c:3044 html.c:4137
 msgid "Scheduled posts"
 msgid "Scheduled posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:2928
+#: html.c:3045
 msgid "scheduled posts"
 msgid "scheduled posts"
 msgstr ""
 msgstr ""
 
 
-#: html.c:458
+#: html.c:510
 #, c-format
 #, c-format
 msgid "Post date and time (timezone: %s):"
 msgid "Post date and time (timezone: %s):"
 msgstr ""
 msgstr ""
 
 
-#: html.c:1538
+#: html.c:1621
 msgid "Time zone:"
 msgid "Time zone:"
 msgstr ""
 msgstr ""
+
+#: html.c:491
+msgid "Language:"
+msgstr ""
+
+#: html.c:1512
+msgid "Notify webhook:"
+msgstr ""
+
+#: html.c:1518
+msgid "http://example.com/webhook"
+msgstr ""
+
+#: html.c:1626
+msgid "Languages you usually post in:"
+msgstr ""
+
+#: html.c:1632
+msgid "en fr es de_AT"
+msgstr ""

+ 3 - 1
snac.h

@@ -1,11 +1,12 @@
 /* snac - A simple, minimalistic ActivityPub instance */
 /* snac - A simple, minimalistic ActivityPub instance */
 /* copyright (c) 2022 - 2025 grunfink et al. / MIT license */
 /* copyright (c) 2022 - 2025 grunfink et al. / MIT license */
 
 
-#define VERSION "2.81-dev"
+#define VERSION "2.82-dev"
 
 
 #define USER_AGENT "snac/" VERSION
 #define USER_AGENT "snac/" VERSION
 
 
 #define WHAT_IS_SNAC_URL "https:/" "/comam.es/what-is-snac"
 #define WHAT_IS_SNAC_URL "https:/" "/comam.es/what-is-snac"
+#define SNAC_DOC_URL "https:/" "/comam.es/snac-doc"
 
 
 #define DIR_PERM 00770
 #define DIR_PERM 00770
 #define DIR_PERM_ADD 02770
 #define DIR_PERM_ADD 02770
@@ -223,6 +224,7 @@ int limited(snac *user, const char *id, int cmd);
 
 
 void hide(snac *snac, const char *id);
 void hide(snac *snac, const char *id);
 int is_hidden(snac *snac, const char *id);
 int is_hidden(snac *snac, const char *id);
+int unhide(snac *user, const char *id);
 
 
 void tag_index(const char *id, const xs_dict *obj);
 void tag_index(const char *id, const xs_dict *obj);
 xs_str *tag_fn(const char *tag);
 xs_str *tag_fn(const char *tag);