log.Error("Couldn't parse signup form request: %v\n", err)
return nil, ErrBadFormData
}
err = app.formDecoder.Decode(&ur, r.PostForm)
if err != nil {
log.Error("Couldn't decode signup form request: %v\n", err)
return nil, ErrBadFormData
}
}
return signupWithRegistration(app, ur, w, r)
}
func signupWithRegistration(app *App, signup userRegistration, w http.ResponseWriter, r *http.Request) (*AuthUser, error) {
reqJSON := IsJSON(r)
// Validate required params (alias)
if signup.Alias == "" {
return nil, impart.HTTPError{http.StatusBadRequest, "A username is required."}
}
if signup.Pass == "" {
return nil, impart.HTTPError{http.StatusBadRequest, "A password is required."}
}
var desiredUsername string
if signup.Normalize {
// With this option we simply conform the username to what we expect
// without complaining. Since they might've done something funny, like
// enter: write.as/Way Out There, we'll use their raw input for the new
// collection name and sanitize for the slug / username.
desiredUsername = signup.Alias
signup.Alias = getSlug(signup.Alias, "")
}
if !author.IsValidUsername(app.cfg, signup.Alias) {
// Ensure the username is syntactically correct.
return nil, impart.HTTPError{http.StatusPreconditionFailed, "Username is reserved or isn't valid. It must be at least 3 characters long, and can only include letters, numbers, and hyphens."}
// If this is true, the human programmers screwed up. So ask for a bug report and fail, fail, fail
log.Error("[PROGRAMMER ERROR] WARNING: Collection.hostName is empty! Federation and many other things will fail! If you're seeing this in the wild, please report this bug and let us know what you were doing just before this: https://github.com/writefreely/writefreely/issues/new?template=bug_report.md")
}
if isSingleUser {
return c.hostName + "/"
}
return fmt.Sprintf("%s/%s/", c.hostName, c.Alias)
}
// PrevPageURL provides a full URL for the previous page of collection posts,
log.Error("Couldn't decode readReq form request: %v\n", err)
return ErrBadFormData
}
}
if readReq.Alias == "" {
return impart.HTTPError{http.StatusBadRequest, "Need a collection `alias` to read."}
}
if readReq.Pass == "" {
return impart.HTTPError{http.StatusBadRequest, "Please supply a password."}
}
var collHashedPass []byte
err := app.db.QueryRow("SELECT password FROM collectionpasswords INNER JOIN collections ON id = collection_id WHERE alias = ?", readReq.Alias).Scan(&collHashedPass)
if err != nil {
if err == sql.ErrNoRows {
log.Error("No collectionpassword found when trying to read collection %s", readReq.Alias)
return impart.HTTPError{http.StatusInternalServerError, "Something went very wrong. The humans have been alerted."}
}
return err
}
if !auth.Authenticated(collHashedPass, []byte(readReq.Pass)) {
ErrPostUnpublished = impart.HTTPError{Status: http.StatusGone, Message: "Post unpublished by author."}
ErrPostFetchError = impart.HTTPError{Status: http.StatusInternalServerError, Message: "We encountered an error getting the post. The humans have been alerted."}
+msgid "This post has been updated elsewhere since you last published!"
+msgstr "This post has been updated elsewhere since you last published!"
+
+# pad.tmpl 20
+# bare.tmpl 20
+msgid "Delete draft and reload"
+msgstr "Delete draft and reload"
+
+msgid "Updates"
+msgstr "Updates"
+
+# classic.tmpl 42
+# pad.tmpl 37
+# user/collection.tmpl 32
+# collection.tmpl 54
+# nav.tmpl 10
+# header.tmpl 19
+msgid "Customize"
+msgstr "Customize"
+
+# classic.tmpl 43
+# collection.tmpl 55
+# pad.tmpl 38
+# stats.tmpl 26
+# nav.tmpl 11
+# header.tmpl 20
+msgid "Stats"
+msgstr "Stats"
+
+# classic.tmpl 47
+# collection.tmpl 58
+# pad.tmpl 42
+msgid "View Draft"
+msgid_plural "View Drafts"
+msgstr[0] "View Draft"
+msgstr[1] "View Drafts"
+
+# header.tmpl 111
+msgid "Monitor"
+msgstr "Monitor"
+
+# read.tmpl 108,110
+msgid "Read more..."
+msgstr "Read more..."
+
+# silenced.tmpl 3
+msgid "Your account has been silenced."
+msgstr "Your account has been silenced."
+
+# silenced.tmpl 3
+msgid "You can still access all of your posts and blogs, but no one else can currently see them."
+msgstr "You can still access all of your posts and blogs, but no one else can currently see them."
+
+# articles.tmpl 28
+msgid "These are your draft posts. You can share them individually (without a blog) or move them to your blog when you're ready."
+msgstr "These are your draft posts. You can share them individually (without a blog) or move them to your blog when you're ready."
+
+# articles.tmpl 57
+msgid "Your anonymous and draft posts will show up here once you've published some. You'll be able to share them individually (without a blog) or move them to a blog when you're ready."
+msgstr "Your anonymous and draft posts will show up here once you've published some. You'll be able to share them individually (without a blog) or move them to a blog when you're ready."
+
+# articles.tmpl 58
+msgid "Alternatively, see your blogs and their posts on your %s page."
+msgstr "Alternatively, see your blogs and their posts on your %s page."
+
+# articles.tmpl 60
+msgid "Start writing"
+msgstr "Start writing"
+
+# articles.tmpl 64
+# static/js/postactions.jsmsgid "unsynced posts"
+msgstr "unsynced posts"
+
+# articles.tmpl 64
+# collection.tmpl 43
+# view-page.tmpl 51
+# view-user 116
+msgid "Title"
+msgstr "Title"
+
+# user/collection.tmpl 44
+# view-user 120
+msgid "Description"
+msgstr "Description"
+
+# user/collection.tmpl 50
+msgid "This blog uses your username in its URL."
+msgstr "This blog uses your username in its URL."
+
+# user/collection.tmpl 50
+msgid "This blog uses your username in its URL and fediverse handle."
+msgstr "This blog uses your username in its URL and fediverse handle."
+
+# user/collection.tmpl 50
+msgid "You can change it in your %s."
+msgstr "You can change it in your %s."
+
+# user/collection.tmpl 63
+msgid "Publicity"
+msgstr "Publicity"
+
+# user/collection.tmpl 68
+# app-settings.tmpl 120
+msgid "Unlisted"
+msgstr "Unlisted"
+
+# user/collection.tmpl 87
+# app-settings.tmpl 121
+msgid "Public"
+msgstr "Public"
+
+# user/collection.tmpl 74
+# app-settings.tmpl 122
+msgid "Private"
+msgstr "Private"
+
+# user/collection.tmpl 70
+msgid "This blog is visible to any registered user on this instance."
+msgstr "This blog is visible to any registered user on this instance."
+
+# user/collection.tmpl 70
+msgid "This blog is visible to anyone with its link."
+msgstr "This blog is visible to anyone with its link."
+
+# user/collection.tmpl 76
+msgid "Only you may read this blog (while you're logged in)."
+msgstr "Only you may read this blog (while you're logged in)."
+
+# user/collection.tmpl 80
+msgid "Password-protected:"
+msgstr "Password-protected:"
+
+# user/collection.tmpl 80
+msgid "a memorable password"
+msgstr "a memorable password"
+
+# user/collection.tmpl 82
+msgid "A password is required to read this blog."
+msgstr "A password is required to read this blog."
+
+# user/collection.tmpl 89
+msgid "This blog is displayed on the public %s, and is visible to anyone with its link."
+msgstr "This blog is displayed on the public %s, and is visible to anyone with its link."
+
+# user/collection.tmpl 89
+msgid "This blog is displayed on the public %s, and is visible to any registered user on this instance."
+msgstr "This blog is displayed on the public %s, and is visible to any registered user on this instance."
+
+# user/collection.tmpl 90
+msgid "The public reader is currently turned off for this community."
+msgstr "The public reader is currently turned off for this community."
+
+# user/collection.tmpl 98
+msgid "Display Format"
+msgstr "Display Format"
+
+# user/collection.tmpl 100
+msgid "Customize how your posts display on your page."
+msgstr "Customize how your posts display on your page."
+
+# user/collection.tmpl 107
+msgid "Dates are shown. Latest posts listed first."
+msgstr "Dates are shown. Latest posts listed first."
+
+# user/collection.tmpl 113
+msgid "No dates shown. Oldest posts first."
+msgstr "No dates shown. Oldest posts first."
+
+# user/collection.tmpl 119
+msgid "No dates shown. Latest posts first."
+msgstr "No dates shown. Latest posts first."
+
+# user/collection.tmpl 126
+msgid "Text Rendering"
+msgstr "Text Rendering"
+
+# user/collection.tmpl 128
+msgid "Customize how plain text renders on your blog."
+msgstr "Customize how plain text renders on your blog."
+
+# user/collection.tmpl 145
+msgid "Custom CSS"
+msgstr "Custom CSS"
+
+# user/collection.tmpl 148
+msgid "customization"
+msgstr "customization"
+
+# user/collection.tmpl 148
+msgid "See our guide on %s."
+msgstr "See our guide on %s."
+
+# user/collection.tmpl 153
+msgid "Post Signature"
+msgstr "Post Signature"
+
+# user/collection.tmpl 155
+msgid "This content will be added to the end of every post on this blog, as if it were part of the post itself. Markdown, HTML, and shortcodes are allowed."
+msgstr "This content will be added to the end of every post on this blog, as if it were part of the post itself. Markdown, HTML, and shortcodes are allowed."
+
+# user/collection.tmpl 162
+msgid "Web Monetization"
+msgstr "Web Monetization"
+
+# user/collection.tmpl 164
+msgid "Web Monetization enables you to receive micropayments from readers that have a %s. Add your payment pointer to enable Web Monetization on your blog."
+msgstr "Web Monetization enables you to receive micropayments from readers that have a %s. Add your payment pointer to enable Web Monetization on your blog."
+
+# user/collection.tmpl 164
+msgid "Coil membership"
+msgstr "Coil membership"
+
+# edit-meta.tmpl 263
+# settings.tmpl 81
+# user/collection.tmpl 171
+msgid "Save changes"
+msgstr "Save changes"
+
+# user/collection.tmpl 173
+msgid "Delete Blog..."
+msgstr "Delete Blog..."
+
+# user/collection.tmpl 190,220
+# articles.tmpl 36
+# posts.tmpl 19,46
+msgid "Delete"
+msgstr "Delete"
+
+# settings.tmpl 187
+# user/collection.tmpl 189
+# view-user 173
+msgid "Cancel"
+msgstr "Cancel"
+
+# user/collection.tmpl 180
+msgid "Are you sure you want to delete this blog?"
+msgstr "Are you sure you want to delete this blog?"
+
+# posts.js 46,147
+# collection.tmpl 148
+# collection-tags.tmpl 96
+# chorus-collection.tmpl 132
+msgid "Are you sure you want to delete this post?"
+msgstr "Are you sure you want to delete this post?"
+
+# posts.js 302
+# collection.tmpl 175,226
+# collection-tags.tmpl 123,174
+# chorus-collection.tmpl 159,210
+msgid "Post is synced to another account. Delete the post from that account instead."
+msgstr "Post is synced to another account. Delete the post from that account instead."
+
+# posts.js 308
+# collection.tmpl 181
+# collection-tags.tmpl 129
+# chorus-collection.tmpl 165
+msgid "Failed to delete."
+msgstr "Failed to delete."
+
+# posts.js 308
+# collection.tmpl 181
+# collection-tags.tmpl 129
+# chorus-collection.tmpl 165
+msgid "Please try again."
+msgstr "Please try again."
+
+# user/collection.tmpl 182
+msgid "This will permanently erase **%s** (%s/%s) from the internet. Any posts on this blog will be saved and made into drafts (found on your %s page)."
+msgstr "This will permanently erase **%s** (%s/%s) from the internet. Any posts on this blog will be saved and made into drafts (found on your %s page)."
+
+# user/collection.tmpl 183
+msgid "If you're sure you want to delete this blog, enter its name in the box below and press **%s**."
+msgstr "If you're sure you want to delete this blog, enter its name in the box below and press **%s**."
+
+# user/collection.tmpl 202
+msgid "Enter **%s** in the box below."
+msgstr "Enter **%s** in the box below."
+
+# user/collection.tmpl 238
+msgid "Saving changes..."
+msgstr "Saving changes..."
+
+# collections.tmpl 72,75,84
+msgid "This name is taken."
+msgstr "This name is taken."
+
+# pad.tmpl 61
+msgid "Edit post metadata"
+msgstr "Edit post metadata"
+
+# edit-meta.tmpl 5,55
+msgid "Edit metadata"
+msgstr "Edit metadata"
+
+# edit-meta.tmpl 260
+msgid "now"
+msgstr "now"
+
+# edit-meta.tmpl 63
+msgid "Slug"
+msgstr "Slug"
+
+# edit-meta.tmpl 66
+msgid "Language"
+msgstr "Language"
+
+# edit-meta.tmpl 256
+msgid "Direction"
+msgstr "Direction"
+
+# edit-meta.tmpl 258
+msgid "Created"
+msgstr "Created"
+
+# edit-meta.tmpl 257
+msgid "right-to-left"
+msgstr "right-to-left"
+
+# edit-meta.tmpl 47
+msgid "Edit post"
+msgstr "Edit post"
+
+# edit-meta.tmpl 48
+# pad.tmpl 62
+msgid "Toggle theme"
+msgstr "Toggle theme"
+
+# collection-post.tmpl 66
+# posts.tmpl 8
+msgid "Scheduled"
+msgstr "Scheduled"
+
+# collection-post.tmpl 57
+# post.tmpl 45,91
+# articles.tmpl 35
+# posts.tmpl 17,44
+msgid "Edit"
+msgstr "Edit"
+
+# posts.tmpl 18,45
+msgid "Pin"
+msgstr "Pin"
+
+# collection-post.tmpl 58
+msgid "Unpin"
+msgstr "Unpin"
+
+# posts.tmpl 21,48
+msgid "Move this post to another blog"
+msgstr "Move this post to another blog"
+
+# posts.tmpl 30,57
+msgid "Change to a draft"
+msgstr "Change to a draft"
+
+# posts.tmpl 30,57
+msgid "change to _%s_"
+msgstr "change to _%s_"
+
+# articles.tmpl 43,78
+# posts.tmpl 26,53
+msgid "move to..."
+msgstr "move to..."
+
+# articles.tmpl 47,83
+msgid "move to %s"
+msgstr "move to %s"
+
+# post.tmpl 42
+msgid "View raw"
+msgstr "View raw"
+
+# articles.tmpl 47,83
+msgid "Publish this post to your blog %s"
+msgstr "Publish this post to your blog %s"
+
+# articles.tmpl 39,74
+msgid "Move this post to one of your blogs"
+msgstr "Move this post to one of your blogs"
+
+# articles.tmpl 55
+msgid "Load more..."
+msgstr "Load more..."
+
+# stats.tmpl 32
+msgid "Stats for all time."
+msgstr "Stats for all time."
+
+# stats.tmpl 35
+msgid "Fediverse stats"
+msgstr "Fediverse stats"
+
+# stats.tmpl 38
+msgid "Followers"
+msgstr "Followers"
+
+# stats.tmpl 46
+msgid "Top %d post"
+msgid_plural "Top %d posts"
+msgstr[0] "Top %d post"
+msgstr[1] "Top %d posts"
+
+# stats.tmpl 51
+msgid "Total Views"
+msgstr "Total Views"
+
+# settings.tmpl 27
+msgid "Before you go..."
+msgstr "Before you go..."
+
+# settings.tmpl 27
+msgid "Account Settings"
+msgstr "Account Settings"
+
+# settings.tmpl 38
+msgid "Change your account settings here."
+msgstr "Change your account settings here."
+
+# signup.tmpl 80
+# signup-oauth.tmpl 85,87
+# login.tmpl 21
+# landing.tmpl 92
+# settings.tmpl 43
+# view-user.tmpl 62
+msgid "Username"
+msgstr "Username"
+
+# settings.tmpl 46
+msgid "Update"
+msgstr "Update"
+
+# settings.tmpl 56
+msgid "Passphrase"
+msgstr "Passphrase"
+
+# settings.tmpl 58
+msgid "Add a passphrase to easily log in to your account."
+msgstr "Add a passphrase to easily log in to your account."
+
+# settings.tmpl 59,60
+msgid "Current passphrase"
+msgstr "Current passphrase"
+
+# settings.tmpl 61,64
+msgid "New passphrase"
+msgstr "New passphrase"
+
+# settings.tmpl 60,64
+msgid "Show"
+msgstr "Show"
+
+msgid "Account updated."
+msgstr "Account updated."
+
+# signup.tmpl 91
+# signup-oauth.tmpl 92,94
+# landing.tmpl 103
+# settings.tmpl 69
+msgid "Email"
+msgstr "Email"
+
+# settings.tmpl 76
+msgid "Email address"
+msgstr "Email address"
+
+# settings.tmpl 71
+msgid "Add your email to get:"
+msgstr "Add your email to get:"
+
+# settings.tmpl 34
+msgid "Please add an **%s** and/or **%s** so you can log in again later."
+msgstr "Please add an **%s** and/or **%s** so you can log in again later."
+
+# settings.tmpl 73
+msgid "No-passphrase login"
+msgstr "No-passphrase login"
+
+# settings.tmpl 74
+msgid "Account recovery if you forget your passphrase"
+msgstr "Account recovery if you forget your passphrase"
+
+# settings.tmpl 89
+msgid "Linked Accounts"
+msgstr "Linked Accounts"
+
+# settings.tmpl 90
+msgid "These are your linked external accounts."
+msgstr "These are your linked external accounts."
+
+# settings.tmpl 114
+msgid "Link External Accounts"
+msgstr "Link External Accounts"
+
+msgid "Connect additional accounts to enable logging in with those providers, instead of using your username and password."
+msgstr "Connect additional accounts to enable logging in with those providers, instead of using your username and password."
+
+# settings.tmpl 162
+# view-user 149
+msgid "Incinerator"
+msgstr "Incinerator"
+
+# settings.tmpl 166,169,188
+msgid "Delete your account"
+msgstr "Delete your account"
+
+# settings.tmpl 167
+msgid "Permanently erase all your data, with no way to recover it."
+msgstr "Permanently erase all your data, with no way to recover it."
+
+# settings.tmpl 176
+# view-user 163
+msgid "Are you sure?"
+msgstr "Are you sure?"
+
+# settings.tmpl 178
+msgid "export your data"
+msgstr "export your data"
+
+# settings.tmpl 178
+msgid "This action **cannot** be undone. It will immediately and permanently erase your account, including your blogs and posts. Before continuing, you might want to %s."
+msgstr "This action **cannot** be undone. It will immediately and permanently erase your account, including your blogs and posts. Before continuing, you might want to %s."
+
+# settings.tmpl 179
+msgid "If you're sure, please type **%s** to confirm."
+msgstr "If you're sure, please type **%s** to confirm."
+
+# invite-help.tmpl 13
+msgid "Invite to %s"
+msgstr "Invite to %s"
+
+# invite-help.tmpl 15
+msgid "This invite link is expired."
+msgstr "This invite link is expired."
+
+# invite-help.tmpl 21
+msgid "Only **one** user"
+msgstr "Only **one** user"
+
+# invite-help.tmpl 21
+msgid "Up to **%d** users"
+msgstr "Up to **%d** users"
+
+# invite-help.tmpl 21
+msgid "can sign up with this link."
+msgstr "can sign up with this link."
+
+# invite-help.tmpl 23
+msgid "It expires on **%s**."
+msgstr "It expires on **%s**."
+
+# invite-help.tmpl 25
+msgid "It can be used as many times as you like"
+msgstr "It can be used as many times as you like"
+
+# invite-help 25
+msgid "before **%s**, when it expires"
+msgstr "before **%s**, when it expires"
+
+msgid "person has"
+msgid_plural "person have"
+msgstr[0] "person has"
+msgstr[1] "person have"
+
+# invite-help.tmpl 21
+msgid "So far, **%d** %s used it."
+msgstr "So far, **%d** %s used it."
+
+# invite-help.tmpl 17
+msgid "Copy the link below and send it to anyone that you want to join *%s*. You could paste it into an email, instant message, text message, or write it down on paper. Anyone who navigates to this special page will be able to create an account."
+msgstr "Copy the link below and send it to anyone that you want to join *%s*. You could paste it into an email, instant message, text message, or write it down on paper. Anyone who navigates to this special page will be able to create an account."
+
+# IMPORT PAGE
+# import.tmpl 28
+msgid "Publish plain text or Markdown files to your account by uploading them below."
+msgstr "Publish plain text or Markdown files to your account by uploading them below."
+msgid "%d of %d posts imported, see details below."
+msgid_plural "%d of %d posts imported, see details below."
+msgstr[0] "%d of %d posts imported, see details below."
+msgstr[1] "%d of %d posts imported, see details below."
+
+msgid "%s is not a supported post file"
+msgstr "%s is not a supported post file"
+
+# export.tmpl 6
+msgid "Your data on %s is always free. Download and back-up your work any time."
+msgstr "Your data on %s is always free. Download and back-up your work any time."
+
+# export.tmpl 11
+msgid "Format"
+msgstr "Format"
+
+# header.tmpl 101
+msgid "Admin"
+msgstr "Admin"
+
+# app-settings.tmpl 37
+msgid "Site Title"
+msgstr "Site Title"
+
+# app-settings.tmpl 38
+msgid "Your public site name."
+msgstr "Your public site name."
+
+# app-settings.tmpl 44
+msgid "Site Description"
+msgstr "Site Description"
+
+# app-settings.tmpl 45
+msgid "Describe your site — this shows in your site's metadata."
+msgstr "Describe your site — this shows in your site's metadata."
+
+# app-settings.tmpl 51
+msgid "Host"
+msgstr "Host"
+
+# app-settings.tmpl 52
+msgid "The public address where users will access your site, starting with `http://` or `https://`."
+msgstr "The public address where users will access your site, starting with `http://` or `https://`."
+
+# app-settings.tmpl 58
+msgid "Community Mode"
+msgstr "Community Mode"
+
+# app-settings.tmpl 59
+msgid "Whether your site is made for one person or many."
+msgstr "Whether your site is made for one person or many."
+
+# app-settings.tmpl 61
+msgid "Single user"
+msgstr "Single user"
+
+# app-settings.tmpl 61
+msgid "Multiple users"
+msgstr "Multiple users"
+
+# app-settings.tmpl 65
+msgid "Landing Page"
+msgstr "Landing Page"
+
+# app-settings.tmpl 66
+msgid "The page that logged-out visitors will see first. This should be an absolute path like: `/read`."
+msgstr "The page that logged-out visitors will see first. This should be an absolute path like: `/read`."
+
+# app-settings.tmpl 72
+msgid "Open Registrations"
+msgstr "Open Registrations"
+
+# app-settings.tmpl 73
+msgid "Allow anyone who visits the site to create an account."
+msgstr "Allow anyone who visits the site to create an account."
+
+# app-settings.tmpl 80
+msgid "Allow account deletion"
+msgstr "Allow account deletion"
+
+# app-settings.tmpl 81
+msgid "Allow all users to delete their account. Admins can always delete users."
+msgstr "Allow all users to delete their account. Admins can always delete users."
+
+# app-settings.tmpl 88
+msgid "Allow invitations from..."
+msgstr "Allow invitations from..."
+
+# app-settings.tmpl 89
+msgid "Choose who is allowed to invite new people."
+msgstr "Choose who is allowed to invite new people."
+
+# app-settings.tmpl 93
+msgid "No one"
+msgstr "No one"
+
+# app-settings.tmpl 94
+msgid "Only Admins"
+msgstr "Only Admins"
+
+# app-settings.tmpl 95
+msgid "All Users"
+msgstr "All Users"
+
+# app-settings.tmpl 101
+msgid "Private Instance"
+msgstr "Private Instance"
+
+# app-settings.tmpl 102
+msgid "Limit site access to people with an account."
+msgstr "Limit site access to people with an account."
+
+# app-settings.tmpl 109
+msgid "Show a feed of user posts for anyone who chooses to share there."
+msgstr "Show a feed of user posts for anyone who chooses to share there."
+
+# app-settings.tmpl 115
+msgid "Default blog visibility"
+msgstr "Default blog visibility"
+
+# app-settings.tmpl 116
+msgid "The default setting for new accounts and blogs."
+msgstr "The default setting for new accounts and blogs."
+
+# app-settings.tmpl 128
+msgid "Maximum Blogs per User"
+msgstr "Maximum Blogs per User"
+
+# app-settings.tmpl 129
+msgid "Keep things simple by setting this to **1**, unlimited by setting to **0**, or pick another amount."
+msgstr "Keep things simple by setting this to **1**, unlimited by setting to **0**, or pick another amount."
+
+# app-settings.tmpl 135
+msgid "Federation"
+msgstr "Federation"
+
+# app-settings.tmpl 136
+msgid "Enable accounts on this site to propagate their posts via the ActivityPub protocol."
+msgstr "Enable accounts on this site to propagate their posts via the ActivityPub protocol."
+
+# app-settings.tmpl 142
+msgid "Public Stats"
+msgstr "Public Stats"
+
+# app-settings.tmpl 143
+msgid "Publicly display the number of users and posts on your **%s** page."
+msgstr "Publicly display the number of users and posts on your **%s** page."
+
+# app-settings.tmpl 149
+msgid "Monetization"
+msgstr "Monetization"
+
+# app-settings.tmpl 150
+msgid "Enable blogs on this site to receive micropayments from readers via %s."
+msgstr "Enable blogs on this site to receive micropayments from readers via %s."
+
+# app-settings.tmpl 156
+msgid "Minimum Username Length"
+msgstr "Minimum Username Length"
+
+# app-settings.tmpl 157
+msgid "The minimum number of characters allowed in a username. (Recommended: 2 or more.)"
+msgstr "The minimum number of characters allowed in a username. (Recommended: 2 or more.)"
+
+# app-settings.tmpl 162
+msgid "Save Settings"
+msgstr "Save Settings"
+
+# app-settings.tmpl 166
+msgid "configuration docs"
+msgstr "configuration docs"
+
+# app-settings.tmpl 166
+msgid "Still have questions? Read more details in the %s."
+msgstr "Still have questions? Read more details in the %s."
+
+msgid "Configuration saved."
+msgstr "Configuration saved."
+
+# view-user.tmpl 66
+# users.tmpl 22
+msgid "joined"
+msgstr "joined"
+
+# users.tmpl 23
+msgid "type"
+msgstr "type"
+
+# users.tmpl 24
+# view-user.tmpl 79
+msgid "status"
+msgstr "status"
+
+# base.tmpl 31
+# header.tmpl 39
+# invite.tmpl 26
+# users.tmpl 16
+msgid "Invite people"
+msgstr "Invite people"
+
+# invite.tmpl 27
+msgid "Invite others to join *%s* by generating and sharing invite links below."
+msgstr "Invite others to join *%s* by generating and sharing invite links below."
+
+# invite.tmpl 31
+msgid "Maximum number of uses:"
+msgstr "Maximum number of uses:"
+
+# invite.tmpl 33
+msgid "No limit"
+msgstr "No limit"
+
+# invite.tmpl 34,35,36,37,38,39,64
+msgid "use"
+msgid_plural "uses"
+msgstr[0] "use"
+msgstr[1] "uses"
+
+# invite.tmpl 43
+msgid "Expire after:"
+msgstr "Expire after:"
+
+# invite.tmpl 46
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minute"
+msgstr[1] "minutes"
+
+# invite.tmpl 47,48,49
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "hour"
+msgstr[1] "hours"
+
+# invite.tmpl 50,51
+msgid "day"
+msgid_plural "days"
+msgstr[0] "day"
+msgstr[1] "days"
+
+# invite.tmpl 52
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "week"
+msgstr[1] "weeks"
+
+# invite.tmpl 57
+msgid "You cannot generate invites while your account is silenced."
+msgstr "You cannot generate invites while your account is silenced."
+
+# invite.tmpl 57
+msgid "Generate"
+msgstr "Generate"
+
+# invite.tmpl 63
+msgid "Link"
+msgstr "Link"
+
+# invite.tmpl 121,129,137,145,152
+msgid "ToLink"
+msgstr "Link"
+
+# invite.tmpl 65
+msgid "Expires"
+msgstr "Expires"
+
+# invite.tmpl 71
+msgid "Expired"
+msgstr "Expired"
+
+# invite.tmpl 75
+msgid "No invites generated yet."
+msgstr "No invites generated yet."
+
+# pages.tmpl 18
+msgid "last modified"
+msgstr "last modified"
+
+# view-user.tmpl 85
+# users.tmpl 31
+msgid "Active"
+msgstr "Active"
+
+# view-user.tmpl 82
+# users.tmpl 31
+msgid "Silenced"
+msgstr "Silenced"
+
+# view-user.tmpl 83
+msgid "Unsilence"
+msgstr "Unsilence"
+
+# view-user 86
+msgid "disabled"
+msgstr "disabled"
+
+# view-user 86
+msgid "Silence"
+msgstr "Silence"
+
+# view-user.tmpl 54
+msgid "No."
+msgstr "No."
+
+# view-user.tmpl 70
+msgid "total posts"
+msgstr "total posts"
+
+# view-user.tmpl 74,136
+msgid "last post"
+msgstr "last post"
+
+# signup.tmpl 87
+# login.tmpl 22
+# landing.tmpl 99
+# view-user 92
+msgid "password"
+msgstr "password"
+
+msgid "Change your password"
+msgstr "Change your password"
+
+# view-user 100
+msgid "Go to reset password page"
+msgstr "Go to reset password page"
+
+# view-user 141
+msgid "Fediverse followers"
+msgstr "Fediverse followers"
+
+# view-user 124
+msgid "Visibility"
+msgstr "Visibility"
+
+# view-user 112
+msgid "Alias"
+msgstr "Alias"
+
+# view-user.tmpl 75,137
+msgid "Never"
+msgstr "Never"
+
+# view-user 97
+msgid "Reset"
+msgstr "Reset"
+
+# view-user 153,156,174
+msgid "Delete this user"
+msgstr "Delete this user"
+
+# view-user 154
+msgid "Permanently erase all user data, with no way to recover it."
+msgstr "Permanently erase all user data, with no way to recover it."
+
+# view-user 165
+msgid "This action **cannot**be undone. It will permanently erase all traces of this user, **%s**, including their account information, blogs, and posts."
+msgstr "This action **cannot**be undone. It will permanently erase all traces of this user, **%s**, including their account information, blogs, and posts."
+
+# view-user 166
+msgid "Please type **%s** to confirm."
+msgstr "Please type **%s** to confirm."
+
+# view-user 202
+msgid "Silence this user? They'll still be able to log in and access their posts, but no one else will be able to see them anymore. You can reverse this decision at any time."
+msgstr "Silence this user? They'll still be able to log in and access their posts, but no one else will be able to see them anymore. You can reverse this decision at any time."
+
+# view-user 208
+msgid "Reset this user's password? This will generate a new temporary password that you'll need to share with them, and invalidate their old one."
+msgstr "Reset this user's password? This will generate a new temporary password that you'll need to share with them, and invalidate their old one."
+
+# settings.tmpl 225
+# user/collection.tmpl 207
+# view-user.tmpl 198
+msgid "Deleting..."
+msgstr "Deleting..."
+
+# view-user.tmpl 46
+msgid "This user's password has been reset to:"
+msgstr "This user's password has been reset to:"
+
+# view-user.tmpl 48
+msgid "They can use this new password to log in to their account. **This will only be shown once**, so be sure to copy it and send it to them now."
+msgstr "They can use this new password to log in to their account. **This will only be shown once**, so be sure to copy it and send it to them now."
+
+# view-user.tmpl 49
+msgid "Their email address is:"
+msgstr "Their email address is:"
+
+# app-updates.tmlp 19
+msgid "Automated update check failed."
+msgstr "Automated update check failed."
+
+# app-updates.tmlp 20, 24, 41
+msgid "Installed version: %s (%s)."
+msgstr "Installed version: %s (%s)."
+
+# app-updates.tmlp 21, 42
+msgid "Learn about latest releases on the %s or %s."
+msgstr "Learn about latest releases on the %s or %s."
+
+# app-updates.tmlp 23
+msgid "WriteFreely is **up to date**."
+msgstr "WriteFreely is **up to date**."
+
+# app-updates.tmlp 27
+msgid "Get"
+msgstr "Get"
+
+# app-updates.tmlp 27
+msgid "A new version of WriteFreely is available! **%s %s**"
+msgstr "A new version of WriteFreely is available! **%s %s**"
+
+# app-updates.tmlp 28
+msgid "release notes"
+msgstr "release notes"
+
+# app-updates.tmlp 29
+msgid "Read the %s for details on features, bug fixes, and notes on upgrading from your current version, **%s**."
+msgstr "Read the %s for details on features, bug fixes, and notes on upgrading from your current version, **%s**."
+
+# app-updates.tmlp 31
+msgid "Check now"
+msgstr "Check now"
+
+# app-updates.tmlp 31
+msgid "Last checked"
+msgstr "Last checked"
+
+# app-updates.tmlp 40
+msgid "Automated update checks are disabled."
+msgstr "Automated update checks are disabled."
+
+# ADMIN PAGES
+# view-page.tmpl 45
+msgid "Banner"
+msgstr "Banner"
+
+# view-page.tmpl 56
+msgid "Body"
+msgstr "Body"
+
+# view-page.tmpl 33
+msgid "Outline your %s."
+msgstr "Outline your %s."
+
+# view-page.tmpl 35,37
+msgid "Customize your %s page."
+msgstr "Customize your %s page."
+
+# view-page.tmpl 31
+msgid "Describe what your instance is %s."
+msgstr "Describe what your instance is %s."
+
+msgid "Accepts Markdown and HTML."
+msgstr "Accepts Markdown and HTML."
+
+# view-page.tmpl 56
+msgid "Content"
+msgstr "Content"
+
+# view-page.tmpl 63
+msgid "Save"
+msgstr "Save"
+
+# view-page.tmpl 71
+msgid "Saving..."
+msgstr "Saving..."
+
+# view-page.tmpl 48
+msgid "We suggest a header (e.g. `# Welcome`), optionally followed by a small bit of text. Accepts Markdown and HTML."
+msgstr "We suggest a header (e.g. `# Welcome`), optionally followed by a small bit of text. Accepts Markdown and HTML."
+
+# login.tmpl 11
+msgid "Log in to %s"
+msgstr "Log in to %s"
+
+# login.tmpl 32
+msgid "Logging in..."
+msgstr "Logging in..."
+
+# login.tmpl 27
+msgid "_No account yet?_ %s to start a blog."
+msgstr "_No account yet?_ %s to start a blog."
+
+msgid "Incorrect password."
+msgstr "Incorrect password."
+
+msgid "This user never set a password. Perhaps try logging in via OAuth?"
+msgstr "This user never set a password. Perhaps try logging in via OAuth?"
+
+msgid "This user never added a password or email address. Please contact us for help."
+msgstr "This user never added a password or email address. Please contact us for help."
+
+msgid "You're doing that too much."
+msgstr "You're doing that too much."
+
+msgid "Parameter `alias` required."
+msgstr "Parameter `alias` required."
+
+msgid "A username is required."
+msgstr "A username is required."
+
+msgid "Parameter `pass` required."
+msgstr "Parameter `pass` required."
+
+msgid "A password is required."
+msgstr "A password is required."
+
+msgid "Need a collection `alias` to read."
+msgstr "Need a collection `alias` to read."
+
+msgid "Please supply a password."
+msgstr "Please supply a password."
+
+msgid "Something went very wrong. The humans have been alerted."
+msgstr "Something went very wrong. The humans have been alerted."
+
+msgid "Logging out failed. Try clearing cookies for this site, instead."
+msgstr "Logging out failed. Try clearing cookies for this site, instead."
+
+# signup-oauth.tmpl 88
+# landing.tmpl 95,197
+msgid "your-username"
+msgstr "your-username"
+
+# signup.tmpl 91
+# landing.tmpl 103
+msgid "optional"
+msgstr "optional"
+
+# signup.tmpl 95
+# landing.tmpl 107
+msgid "Create blog"
+msgstr "Create blog"
+
+# signup-oauth.tmpl 59
+msgid "Finish creating account"
+msgstr "Finish creating account"
+
+# signup-oauth.tmpl 79
+msgid "Display Name"
+msgstr "Display Name"
+
+# oauth.tmpl 26
+msgid "or"
+msgstr "or"
+
+# oauth.tmpl 9,13,17,20
+msgid "Sign in with **%s**"
+msgstr "Sign in with **%s**"
+
+# landing.tmpl 77
+msgid "Learn more..."
+msgstr "Learn more..."
+
+# landing.tmpl 114
+msgid "Registration is currently closed."
+msgstr "Registration is currently closed."
+
+# landing.tmpl 115
+msgid "another instance"
+msgstr "another instance"
+
+# landing.tmpl 115
+msgid "You can always sign up on %s."
+msgstr "You can always sign up on %s."
+
+msgid "# Start your blog"
+msgstr "# Start your blog"
+
+msgid "# Start your blog in the fediverse"
+msgstr "# Start your blog in the fediverse"
+
+msgid ""
+"## Join the Fediverse\n\nThe fediverse is a large network of platforms that all speak a common language. Imagine if you could reply to _Instagram_ posts from _Twitter_, or interact with your favorite _Medium_ blogs from _Facebook_ -- federated alternatives like %s, %s, and WriteFreely enable you to do these types of things.\n\n"
+msgstr ""
+"## Join the Fediverse\n\nThe fediverse is a large network of platforms that all speak a common language. Imagine if you could reply to _Instagram_ posts from _Twitter_, or interact with your favorite _Medium_ blogs from _Facebook_ -- federated alternatives like %s, %s, and WriteFreely enable you to do these types of things.\n\n"
+
+msgid ""
+"## Write More Socially\n"
+"\n"
+"WriteFreely can communicate with other federated platforms like _Mastodon_, so people can follow your blogs, bookmark their favorite posts, and boost them to their followers. Sign up above to create a blog and join the fediverse."
+msgstr ""
+"## Write More Socially\n"
+"\n"
+"WriteFreely can communicate with other federated platforms like _Mastodon_, so people can follow your blogs, bookmark their favorite posts, and boost them to their followers. Sign up above to create a blog and join the fediverse."
+
+msgid "About %s"
+msgstr "About %s"
+
+msgid "_%s_ is a place for you to write and publish, powered by %s."
+msgstr "_%s_ is a place for you to write and publish, powered by %s."
+
+msgid "_%s_ is an interconnected place for you to write and publish, powered by %s."
+msgstr "_%s_ is an interconnected place for you to write and publish, powered by %s."
+
+msgid "article"
+msgid_plural "articles"
+msgstr[0] "article"
+msgstr[1] "articles"
+
+msgid "_%s_ is home to **%d** %s across **%d** %s."
+msgstr "_%s_ is home to **%d** %s across **%d** %s."
+
+msgid "About WriteFreely"
+msgstr "About WriteFreely"
+
+msgid "%s is a self-hosted, decentralized blogging platform for publishing beautiful, simple blogs."
+msgstr "%s is a self-hosted, decentralized blogging platform for publishing beautiful, simple blogs."
+
+msgid "It lets you publish a single blog, or host a community of writers who can create multiple blogs under one account. You can also enable federation, which allows people in the fediverse to follow your blog, bookmark your posts, and share them with others."
+msgstr "It lets you publish a single blog, or host a community of writers who can create multiple blogs under one account. You can also enable federation, which allows people in the fediverse to follow your blog, bookmark your posts, and share them with others."
+
+msgid "Start an instance"
+msgstr "Start an instance"
+
+msgid "Privacy Policy"
+msgstr "Privacy Policy"
+
+# privacy.tmpl 6
+msgid "Last updated"
+msgstr "Last updated"
+
+msgid "Read the latest posts form %s."
+msgstr "Read the latest posts form %s."
+
+# : pages.go:98
+msgid ""
+"%s, the software that powers this site, is built to enforce your right to privacy by default.\n"
+"\n"
+"It retains as little data about you as possible, not even requiring an email address to sign up. However, if you _do_ give us your email address, it is stored encrypted in our database.\n"
+"\n"
+"We salt and hash your account's password.We store log files, or data about what happens on our servers. We also use cookies to keep you logged in to your account.\n"
+"\n"
+"Beyond this, it's important that you trust whoever runs %s. Software can only do so much to protect you -- your level of privacy protections will ultimately fall on the humans that run this particular service."
+msgstr ""
+"%s, the software that powers this site, is built to enforce your right to privacy by default.\n"
+"\n"
+"It retains as little data about you as possible, not even requiring an email address to sign up. However, if you _do_ give us your email address, it is stored encrypted in our database.\n"
+"\n"
+"We salt and hash your account's password.We store log files, or data about what happens on our servers. We also use cookies to keep you logged in to your account.\n"
+"\n"
+"Beyond this, it's important that you trust whoever runs %s. Software can only do so much to protect you -- your level of privacy protections will ultimately fall on the humans that run this particular service."
+
+# static/js/postactions.js
+msgid "Unpublished post"
+msgstr "Unpublished post"
+
+msgid "Moved to %s"
+msgstr "Moved to %s"
+
+msgid "move to"
+msgstr "move to"
+
+msgid "moving to %s..."
+msgstr "moving to %s..."
+
+msgid "unable to move"
+msgstr "unable to move"
+
+msgid "View on %s"
+msgstr "View on %s"
+
+# classic.tmpl 64
+# pad.tmpl 59
+# bare.tmpl 30
+msgid "NOTE"
+msgstr "NOTE"
+
+# classic.tmpl 64
+# pad.tmpl 59
+# bare.tmpl 30
+msgid "for now, you'll need Javascript enabled to post."
+msgstr "for now, you'll need Javascript enabled to post."
+
+# classic.tmpl 158
+# pad.tmpl 174
+msgid "Your account is silenced, so you can't publish or update posts."
+msgstr "Your account is silenced, so you can't publish or update posts."
+
+# classic.tmpl 257
+# pad.tmpl 278
+msgid "Failed to post. Please try again."
+msgstr "Failed to post. Please try again."
+
+# classic.tmpl 163
+# pad.tmpl 179
+# bare.tmpl 99
+msgid "You don't have permission to update this post."
+msgstr "You don't have permission to update this post."
+
+# pad.tmpl 16
+msgid "Write..."
+msgstr "Write..."
+
+# classic.tmpl 34
+# pad.tmpl 29
+msgid "Publish to..."
+msgstr "Publish to..."
+
+# classic.tmpl 55
+# pad.tmpl 50
+msgid "Font"
+msgstr "Font"
+
+# read.tmpl 105
+msgid "from"
+msgstr "from"
+
+# read.tmpl 105
+msgid "Anonymous"
+msgstr "Anonymous"
+
+# read.tmpl 120
+msgid "Older"
+msgstr "Older"
+
+# read.tmpl 121
+msgid "Newer"
+msgstr "Newer"
+
+# password-collection.tmpl 31
+msgid "Menu"
+msgstr "Menu"
+
+# password-collection.tmpl 51
+msgid "This blog requires a password."
+msgstr "This blog requires a password."
+
+# 404-general.tmpl 1
+msgid "Page not found"
+msgstr "Page not found"
+
+# 404-general.tmpl 4
+msgid "This page is missing."
+msgstr "This page is missing."
+
+# 404-general.tmpl 5
+msgid "Are you sure it was ever here?"
+msgstr "Are you sure it was ever here?"
+
+#404.tmpl 1,4
+msgid "Post not found"
+msgstr "Post not found"
+
+#404.tmpl
+msgid "Why not share a thought of your own?"
+msgstr "Why not share a thought of your own?"
+
+# 404.tmpl
+msgid "Start a blog"
+msgstr "Start a blog"
+
+#404.tmpl
+msgid "%s and spread your ideas on **%s**, %s."
+msgstr "%s and spread your ideas on **%s**, %s."
+
+# 404.tmpl
+msgid "a simple blogging community"
+msgstr "a simple blogging community"
+
+# 404.tmpl
+msgid "a simple, federated blogging community"
+msgstr "a simple, federated blogging community"
+
+# 410.tmpl 1
+msgid "Unpublished"
+msgst "Unpublished"
+
+# 410.tmpl 4
+msgid "Post was unpublished by the author."
+msgstr "Post was unpublished by the author."
+
+# 410.tmpl 5
+msgid "It might be back some day."
+msgstr "It might be back some day."
+
+# errors.go
+msgid "Expected valid form data."
+msgstr "Expected valid form data."
+
+msgid "Expected valid JSON object."
+msgstr "Expected valid JSON object."
+
+msgid "Expected valid JSON array."
+msgstr "Expected valid JSON array."
+
+msgid "Invalid access token."
+msgstr "Invalid access token."
+
+msgid "Authorization token required."
+msgstr "Authorization token required."
+
+msgid "Not logged in."
+msgstr "Not logged in."
+
+msgid "You don't have permission to add to this collection."
+msgstr "You don't have permission to add to this collection."
+
+msgid "Invalid editing credentials."
+msgstr "Invalid editing credentials."
+
+msgid "You don't have permission to do that."
+msgstr "You don't have permission to do that."
+
+msgid "Bad requested Content-Type."
+msgstr "Bad requested Content-Type."
+
+msgid "You don't have permission to access this collection."
+msgstr "You don't have permission to access this collection."
+
+msgid "Supply something to publish."
+msgstr "Supply something to publish."
+
+msgid "The humans messed something up. They've been notified."
+msgstr "The humans messed something up. They've been notified."
+
+msgid "Could not get cookie session."
+msgstr "Could not get cookie session."
+
+msgid "Service temporarily unavailable due to high load."
+msgstr "Service temporarily unavailable due to high load."
+
+msgid "Collection doesn't exist."
+msgstr "Collection doesn't exist."
+
+msgid "This blog was unpublished."
+msgstr "This blog was unpublished."
+
+msgid "Collection page doesn't exist."
+msgstr "Collection page doesn't exist."
+
+msgid "Post not found."
+msgstr "Post not found."
+
+msgid "Post removed."
+msgstr "Post removed."
+
+msgid "Post unpublished by author."
+msgstr "Post unpublished by author."
+
+msgid "We encountered an error getting the post. The humans have been alerted."
+msgstr "We encountered an error getting the post. The humans have been alerted."
+
+msgid "User doesn't exist."
+msgstr "User doesn't exist."
+
+msgid "Remote user not found."
+msgstr "Remote user not found."
+
+msgid "Please enter your username instead of your email address."
+msgstr "Please enter your username instead of your email address."
+msgid "This post has been updated elsewhere since you last published!"
+msgstr "This post has been updated elsewhere since you last published!"
+
+# pad.tmpl 20
+# bare.tmpl 20
+msgid "Delete draft and reload"
+msgstr "Delete draft and reload"
+
+msgid "Updates"
+msgstr "Updates"
+
+# classic.tmpl 42
+# pad.tmpl 37
+# user/collection.tmpl 32
+# collection.tmpl 54
+# nav.tmpl 10
+# header.tmpl 19
+msgid "Customize"
+msgstr "Customize"
+
+# classic.tmpl 43
+# collection.tmpl 55
+# pad.tmpl 38
+# stats.tmpl 26
+# nav.tmpl 11
+# header.tmpl 20
+msgid "Stats"
+msgstr "Stats"
+
+# classic.tmpl 47
+# collection.tmpl 58
+# pad.tmpl 42
+msgid "View Draft"
+msgid_plural "View Drafts"
+msgstr[0] "View Draft"
+msgstr[1] "View Drafts"
+
+# header.tmpl 111
+msgid "Monitor"
+msgstr "Monitor"
+
+# read.tmpl 108,110
+msgid "Read more..."
+msgstr "Read more..."
+
+# silenced.tmpl 3
+msgid "Your account has been silenced."
+msgstr "Your account has been silenced."
+
+# silenced.tmpl 3
+msgid "You can still access all of your posts and blogs, but no one else can currently see them."
+msgstr "You can still access all of your posts and blogs, but no one else can currently see them."
+
+# articles.tmpl 28
+msgid "These are your draft posts. You can share them individually (without a blog) or move them to your blog when you're ready."
+msgstr "These are your draft posts. You can share them individually (without a blog) or move them to your blog when you're ready."
+
+# articles.tmpl 57
+msgid "Your anonymous and draft posts will show up here once you've published some. You'll be able to share them individually (without a blog) or move them to a blog when you're ready."
+msgstr "Your anonymous and draft posts will show up here once you've published some. You'll be able to share them individually (without a blog) or move them to a blog when you're ready."
+
+# articles.tmpl 58
+msgid "Alternatively, see your blogs and their posts on your %s page."
+msgstr "Alternatively, see your blogs and their posts on your %s page."
+
+# articles.tmpl 60
+msgid "Start writing"
+msgstr "Start writing"
+
+# articles.tmpl 64
+# static/js/postactions.jsmsgid "unsynced posts"
+msgstr "unsynced posts"
+
+# articles.tmpl 64
+# collection.tmpl 43
+# view-page.tmpl 51
+# view-user 116
+msgid "Title"
+msgstr "Title"
+
+# user/collection.tmpl 44
+# view-user 120
+msgid "Description"
+msgstr "Description"
+
+# user/collection.tmpl 50
+msgid "This blog uses your username in its URL."
+msgstr "This blog uses your username in its URL."
+
+# user/collection.tmpl 50
+msgid "This blog uses your username in its URL and fediverse handle."
+msgstr "This blog uses your username in its URL and fediverse handle."
+
+# user/collection.tmpl 50
+msgid "You can change it in your %s."
+msgstr "You can change it in your %s."
+
+# user/collection.tmpl 63
+msgid "Publicity"
+msgstr "Publicity"
+
+# user/collection.tmpl 68
+# app-settings.tmpl 120
+msgid "Unlisted"
+msgstr "Unlisted"
+
+# user/collection.tmpl 87
+# app-settings.tmpl 121
+msgid "Public"
+msgstr "Public"
+
+# user/collection.tmpl 74
+# app-settings.tmpl 122
+msgid "Private"
+msgstr "Private"
+
+# user/collection.tmpl 70
+msgid "This blog is visible to any registered user on this instance."
+msgstr "This blog is visible to any registered user on this instance."
+
+# user/collection.tmpl 70
+msgid "This blog is visible to anyone with its link."
+msgstr "This blog is visible to anyone with its link."
+
+# user/collection.tmpl 76
+msgid "Only you may read this blog (while you're logged in)."
+msgstr "Only you may read this blog (while you're logged in)."
+
+# user/collection.tmpl 80
+msgid "Password-protected:"
+msgstr "Password-protected:"
+
+# user/collection.tmpl 80
+msgid "a memorable password"
+msgstr "a memorable password"
+
+# user/collection.tmpl 82
+msgid "A password is required to read this blog."
+msgstr "A password is required to read this blog."
+
+# user/collection.tmpl 89
+msgid "This blog is displayed on the public %s, and is visible to anyone with its link."
+msgstr "This blog is displayed on the public %s, and is visible to anyone with its link."
+
+# user/collection.tmpl 89
+msgid "This blog is displayed on the public %s, and is visible to any registered user on this instance."
+msgstr "This blog is displayed on the public %s, and is visible to any registered user on this instance."
+
+# user/collection.tmpl 90
+msgid "The public reader is currently turned off for this community."
+msgstr "The public reader is currently turned off for this community."
+
+# user/collection.tmpl 98
+msgid "Display Format"
+msgstr "Display Format"
+
+# user/collection.tmpl 100
+msgid "Customize how your posts display on your page."
+msgstr "Customize how your posts display on your page."
+
+# user/collection.tmpl 107
+msgid "Dates are shown. Latest posts listed first."
+msgstr "Dates are shown. Latest posts listed first."
+
+# user/collection.tmpl 113
+msgid "No dates shown. Oldest posts first."
+msgstr "No dates shown. Oldest posts first."
+
+# user/collection.tmpl 119
+msgid "No dates shown. Latest posts first."
+msgstr "No dates shown. Latest posts first."
+
+# user/collection.tmpl 126
+msgid "Text Rendering"
+msgstr "Text Rendering"
+
+# user/collection.tmpl 128
+msgid "Customize how plain text renders on your blog."
+msgstr "Customize how plain text renders on your blog."
+
+# user/collection.tmpl 145
+msgid "Custom CSS"
+msgstr "Custom CSS"
+
+# user/collection.tmpl 148
+msgid "customization"
+msgstr "customization"
+
+# user/collection.tmpl 148
+msgid "See our guide on %s."
+msgstr "See our guide on %s."
+
+# user/collection.tmpl 153
+msgid "Post Signature"
+msgstr "Post Signature"
+
+# user/collection.tmpl 155
+msgid "This content will be added to the end of every post on this blog, as if it were part of the post itself. Markdown, HTML, and shortcodes are allowed."
+msgstr "This content will be added to the end of every post on this blog, as if it were part of the post itself. Markdown, HTML, and shortcodes are allowed."
+
+# user/collection.tmpl 162
+msgid "Web Monetization"
+msgstr "Web Monetization"
+
+# user/collection.tmpl 164
+msgid "Web Monetization enables you to receive micropayments from readers that have a %s. Add your payment pointer to enable Web Monetization on your blog."
+msgstr "Web Monetization enables you to receive micropayments from readers that have a %s. Add your payment pointer to enable Web Monetization on your blog."
+
+# user/collection.tmpl 164
+msgid "Coil membership"
+msgstr "Coil membership"
+
+# edit-meta.tmpl 263
+# settings.tmpl 81
+# user/collection.tmpl 171
+msgid "Save changes"
+msgstr "Save changes"
+
+# user/collection.tmpl 173
+msgid "Delete Blog..."
+msgstr "Delete Blog..."
+
+# user/collection.tmpl 190,220
+# articles.tmpl 36
+# posts.tmpl 19,46
+msgid "Delete"
+msgstr "Delete"
+
+# settings.tmpl 187
+# user/collection.tmpl 189
+# view-user 173
+msgid "Cancel"
+msgstr "Cancel"
+
+# user/collection.tmpl 180
+msgid "Are you sure you want to delete this blog?"
+msgstr "Are you sure you want to delete this blog?"
+
+# posts.js 46,147
+# collection.tmpl 148
+# collection-tags.tmpl 96
+# chorus-collection.tmpl 132
+msgid "Are you sure you want to delete this post?"
+msgstr "Are you sure you want to delete this post?"
+
+# posts.js 302
+# collection.tmpl 175,226
+# collection-tags.tmpl 123,174
+# chorus-collection.tmpl 159,210
+msgid "Post is synced to another account. Delete the post from that account instead."
+msgstr "Post is synced to another account. Delete the post from that account instead."
+
+# posts.js 308
+# collection.tmpl 181
+# collection-tags.tmpl 129
+# chorus-collection.tmpl 165
+msgid "Failed to delete."
+msgstr "Failed to delete."
+
+# posts.js 308
+# collection.tmpl 181
+# collection-tags.tmpl 129
+# chorus-collection.tmpl 165
+msgid "Please try again."
+msgstr "Please try again."
+
+# user/collection.tmpl 182
+msgid "This will permanently erase **%s** (%s/%s) from the internet. Any posts on this blog will be saved and made into drafts (found on your %s page)."
+msgstr "This will permanently erase **%s** (%s/%s) from the internet. Any posts on this blog will be saved and made into drafts (found on your %s page)."
+
+# user/collection.tmpl 183
+msgid "If you're sure you want to delete this blog, enter its name in the box below and press **%s**."
+msgstr "If you're sure you want to delete this blog, enter its name in the box below and press **%s**."
+
+# user/collection.tmpl 202
+msgid "Enter **%s** in the box below."
+msgstr "Enter **%s** in the box below."
+
+# user/collection.tmpl 238
+msgid "Saving changes..."
+msgstr "Saving changes..."
+
+# collections.tmpl 72,75,84
+msgid "This name is taken."
+msgstr "This name is taken."
+
+# pad.tmpl 61
+msgid "Edit post metadata"
+msgstr "Edit post metadata"
+
+# edit-meta.tmpl 5,55
+msgid "Edit metadata"
+msgstr "Edit metadata"
+
+# edit-meta.tmpl 260
+msgid "now"
+msgstr "now"
+
+# edit-meta.tmpl 63
+msgid "Slug"
+msgstr "Slug"
+
+# edit-meta.tmpl 66
+msgid "Language"
+msgstr "Language"
+
+# edit-meta.tmpl 256
+msgid "Direction"
+msgstr "Direction"
+
+# edit-meta.tmpl 258
+msgid "Created"
+msgstr "Created"
+
+# edit-meta.tmpl 257
+msgid "right-to-left"
+msgstr "right-to-left"
+
+# edit-meta.tmpl 47
+msgid "Edit post"
+msgstr "Edit post"
+
+# edit-meta.tmpl 48
+# pad.tmpl 62
+msgid "Toggle theme"
+msgstr "Toggle theme"
+
+# collection-post.tmpl 66
+# posts.tmpl 8
+msgid "Scheduled"
+msgstr "Scheduled"
+
+# collection-post.tmpl 57
+# post.tmpl 45,91
+# articles.tmpl 35
+# posts.tmpl 17,44
+msgid "Edit"
+msgstr "Edit"
+
+# posts.tmpl 18,45
+msgid "Pin"
+msgstr "Pin"
+
+# collection-post.tmpl 58
+msgid "Unpin"
+msgstr "Unpin"
+
+# posts.tmpl 21,48
+msgid "Move this post to another blog"
+msgstr "Move this post to another blog"
+
+# posts.tmpl 30,57
+msgid "Change to a draft"
+msgstr "Change to a draft"
+
+# posts.tmpl 30,57
+msgid "change to _%s_"
+msgstr "change to _%s_"
+
+# articles.tmpl 43,78
+# posts.tmpl 26,53
+msgid "move to..."
+msgstr "move to..."
+
+# articles.tmpl 47,83
+msgid "move to %s"
+msgstr "move to %s"
+
+# post.tmpl 42
+msgid "View raw"
+msgstr "View raw"
+
+# articles.tmpl 47,83
+msgid "Publish this post to your blog %s"
+msgstr "Publish this post to your blog %s"
+
+# articles.tmpl 39,74
+msgid "Move this post to one of your blogs"
+msgstr "Move this post to one of your blogs"
+
+# articles.tmpl 55
+msgid "Load more..."
+msgstr "Load more..."
+
+# stats.tmpl 32
+msgid "Stats for all time."
+msgstr "Stats for all time."
+
+# stats.tmpl 35
+msgid "Fediverse stats"
+msgstr "Fediverse stats"
+
+# stats.tmpl 38
+msgid "Followers"
+msgstr "Followers"
+
+# stats.tmpl 46
+msgid "Top %d post"
+msgid_plural "Top %d posts"
+msgstr[0] "Top %d post"
+msgstr[1] "Top %d posts"
+
+# stats.tmpl 51
+msgid "Total Views"
+msgstr "Total Views"
+
+# settings.tmpl 27
+msgid "Before you go..."
+msgstr "Before you go..."
+
+# settings.tmpl 27
+msgid "Account Settings"
+msgstr "Account Settings"
+
+# settings.tmpl 38
+msgid "Change your account settings here."
+msgstr "Change your account settings here."
+
+# signup.tmpl 80
+# signup-oauth.tmpl 85,87
+# login.tmpl 21
+# landing.tmpl 92
+# settings.tmpl 43
+# view-user.tmpl 62
+msgid "Username"
+msgstr "Username"
+
+# settings.tmpl 46
+msgid "Update"
+msgstr "Update"
+
+# settings.tmpl 56
+msgid "Passphrase"
+msgstr "Passphrase"
+
+# settings.tmpl 58
+msgid "Add a passphrase to easily log in to your account."
+msgstr "Add a passphrase to easily log in to your account."
+
+# settings.tmpl 59,60
+msgid "Current passphrase"
+msgstr "Current passphrase"
+
+# settings.tmpl 61,64
+msgid "New passphrase"
+msgstr "New passphrase"
+
+# settings.tmpl 60,64
+msgid "Show"
+msgstr "Show"
+
+msgid "Account updated."
+msgstr "Account updated."
+
+# signup.tmpl 91
+# signup-oauth.tmpl 92,94
+# landing.tmpl 103
+# settings.tmpl 69
+msgid "Email"
+msgstr "Email"
+
+# settings.tmpl 76
+msgid "Email address"
+msgstr "Email address"
+
+# settings.tmpl 71
+msgid "Add your email to get:"
+msgstr "Add your email to get:"
+
+# settings.tmpl 34
+msgid "Please add an **%s** and/or **%s** so you can log in again later."
+msgstr "Please add an **%s** and/or **%s** so you can log in again later."
+
+# settings.tmpl 73
+msgid "No-passphrase login"
+msgstr "No-passphrase login"
+
+# settings.tmpl 74
+msgid "Account recovery if you forget your passphrase"
+msgstr "Account recovery if you forget your passphrase"
+
+# settings.tmpl 89
+msgid "Linked Accounts"
+msgstr "Linked Accounts"
+
+# settings.tmpl 90
+msgid "These are your linked external accounts."
+msgstr "These are your linked external accounts."
+
+# settings.tmpl 114
+msgid "Link External Accounts"
+msgstr "Link External Accounts"
+
+msgid "Connect additional accounts to enable logging in with those providers, instead of using your username and password."
+msgstr "Connect additional accounts to enable logging in with those providers, instead of using your username and password."
+
+# settings.tmpl 162
+# view-user 149
+msgid "Incinerator"
+msgstr "Incinerator"
+
+# settings.tmpl 166,169,188
+msgid "Delete your account"
+msgstr "Delete your account"
+
+# settings.tmpl 167
+msgid "Permanently erase all your data, with no way to recover it."
+msgstr "Permanently erase all your data, with no way to recover it."
+
+# settings.tmpl 176
+# view-user 163
+msgid "Are you sure?"
+msgstr "Are you sure?"
+
+# settings.tmpl 178
+msgid "export your data"
+msgstr "export your data"
+
+# settings.tmpl 178
+msgid "This action **cannot** be undone. It will immediately and permanently erase your account, including your blogs and posts. Before continuing, you might want to %s."
+msgstr "This action **cannot** be undone. It will immediately and permanently erase your account, including your blogs and posts. Before continuing, you might want to %s."
+
+# settings.tmpl 179
+msgid "If you're sure, please type **%s** to confirm."
+msgstr "If you're sure, please type **%s** to confirm."
+
+# invite-help.tmpl 13
+msgid "Invite to %s"
+msgstr "Invite to %s"
+
+# invite-help.tmpl 15
+msgid "This invite link is expired."
+msgstr "This invite link is expired."
+
+# invite-help.tmpl 21
+msgid "Only **one** user"
+msgstr "Only **one** user"
+
+# invite-help.tmpl 21
+msgid "Up to **%d** users"
+msgstr "Up to **%d** users"
+
+# invite-help.tmpl 21
+msgid "can sign up with this link."
+msgstr "can sign up with this link."
+
+# invite-help.tmpl 23
+msgid "It expires on **%s**."
+msgstr "It expires on **%s**."
+
+# invite-help.tmpl 25
+msgid "It can be used as many times as you like"
+msgstr "It can be used as many times as you like"
+
+# invite-help 25
+msgid "before **%s**, when it expires"
+msgstr "before **%s**, when it expires"
+
+msgid "person has"
+msgid_plural "person have"
+msgstr[0] "person has"
+msgstr[1] "person have"
+
+# invite-help.tmpl 21
+msgid "So far, **%d** %s used it."
+msgstr "So far, **%d** %s used it."
+
+# invite-help.tmpl 17
+msgid "Copy the link below and send it to anyone that you want to join *%s*. You could paste it into an email, instant message, text message, or write it down on paper. Anyone who navigates to this special page will be able to create an account."
+msgstr "Copy the link below and send it to anyone that you want to join *%s*. You could paste it into an email, instant message, text message, or write it down on paper. Anyone who navigates to this special page will be able to create an account."
+
+# IMPORT PAGE
+# import.tmpl 28
+msgid "Publish plain text or Markdown files to your account by uploading them below."
+msgstr "Publish plain text or Markdown files to your account by uploading them below."
+msgid "%d of %d posts imported, see details below."
+msgid_plural "%d of %d posts imported, see details below."
+msgstr[0] "%d of %d posts imported, see details below."
+msgstr[1] "%d of %d posts imported, see details below."
+
+msgid "%s is not a supported post file"
+msgstr "%s is not a supported post file"
+
+# export.tmpl 6
+msgid "Your data on %s is always free. Download and back-up your work any time."
+msgstr "Your data on %s is always free. Download and back-up your work any time."
+
+# export.tmpl 11
+msgid "Format"
+msgstr "Format"
+
+# header.tmpl 101
+msgid "Admin"
+msgstr "Admin"
+
+# app-settings.tmpl 37
+msgid "Site Title"
+msgstr "Site Title"
+
+# app-settings.tmpl 38
+msgid "Your public site name."
+msgstr "Your public site name."
+
+# app-settings.tmpl 44
+msgid "Site Description"
+msgstr "Site Description"
+
+# app-settings.tmpl 45
+msgid "Describe your site — this shows in your site's metadata."
+msgstr "Describe your site — this shows in your site's metadata."
+
+# app-settings.tmpl 51
+msgid "Host"
+msgstr "Host"
+
+# app-settings.tmpl 52
+msgid "The public address where users will access your site, starting with `http://` or `https://`."
+msgstr "The public address where users will access your site, starting with `http://` or `https://`."
+
+# app-settings.tmpl 58
+msgid "Community Mode"
+msgstr "Community Mode"
+
+# app-settings.tmpl 59
+msgid "Whether your site is made for one person or many."
+msgstr "Whether your site is made for one person or many."
+
+# app-settings.tmpl 61
+msgid "Single user"
+msgstr "Single user"
+
+# app-settings.tmpl 61
+msgid "Multiple users"
+msgstr "Multiple users"
+
+# app-settings.tmpl 65
+msgid "Landing Page"
+msgstr "Landing Page"
+
+# app-settings.tmpl 66
+msgid "The page that logged-out visitors will see first. This should be an absolute path like: `/read`."
+msgstr "The page that logged-out visitors will see first. This should be an absolute path like: `/read`."
+
+# app-settings.tmpl 72
+msgid "Open Registrations"
+msgstr "Open Registrations"
+
+# app-settings.tmpl 73
+msgid "Allow anyone who visits the site to create an account."
+msgstr "Allow anyone who visits the site to create an account."
+
+# app-settings.tmpl 80
+msgid "Allow account deletion"
+msgstr "Allow account deletion"
+
+# app-settings.tmpl 81
+msgid "Allow all users to delete their account. Admins can always delete users."
+msgstr "Allow all users to delete their account. Admins can always delete users."
+
+# app-settings.tmpl 88
+msgid "Allow invitations from..."
+msgstr "Allow invitations from..."
+
+# app-settings.tmpl 89
+msgid "Choose who is allowed to invite new people."
+msgstr "Choose who is allowed to invite new people."
+
+# app-settings.tmpl 93
+msgid "No one"
+msgstr "No one"
+
+# app-settings.tmpl 94
+msgid "Only Admins"
+msgstr "Only Admins"
+
+# app-settings.tmpl 95
+msgid "All Users"
+msgstr "All Users"
+
+# app-settings.tmpl 101
+msgid "Private Instance"
+msgstr "Private Instance"
+
+# app-settings.tmpl 102
+msgid "Limit site access to people with an account."
+msgstr "Limit site access to people with an account."
+
+# app-settings.tmpl 109
+msgid "Show a feed of user posts for anyone who chooses to share there."
+msgstr "Show a feed of user posts for anyone who chooses to share there."
+
+# app-settings.tmpl 115
+msgid "Default blog visibility"
+msgstr "Default blog visibility"
+
+# app-settings.tmpl 116
+msgid "The default setting for new accounts and blogs."
+msgstr "The default setting for new accounts and blogs."
+
+# app-settings.tmpl 128
+msgid "Maximum Blogs per User"
+msgstr "Maximum Blogs per User"
+
+# app-settings.tmpl 129
+msgid "Keep things simple by setting this to **1**, unlimited by setting to **0**, or pick another amount."
+msgstr "Keep things simple by setting this to **1**, unlimited by setting to **0**, or pick another amount."
+
+# app-settings.tmpl 135
+msgid "Federation"
+msgstr "Federation"
+
+# app-settings.tmpl 136
+msgid "Enable accounts on this site to propagate their posts via the ActivityPub protocol."
+msgstr "Enable accounts on this site to propagate their posts via the ActivityPub protocol."
+
+# app-settings.tmpl 142
+msgid "Public Stats"
+msgstr "Public Stats"
+
+# app-settings.tmpl 143
+msgid "Publicly display the number of users and posts on your **%s** page."
+msgstr "Publicly display the number of users and posts on your **%s** page."
+
+# app-settings.tmpl 149
+msgid "Monetization"
+msgstr "Monetization"
+
+# app-settings.tmpl 150
+msgid "Enable blogs on this site to receive micropayments from readers via %s."
+msgstr "Enable blogs on this site to receive micropayments from readers via %s."
+
+# app-settings.tmpl 156
+msgid "Minimum Username Length"
+msgstr "Minimum Username Length"
+
+# app-settings.tmpl 157
+msgid "The minimum number of characters allowed in a username. (Recommended: 2 or more.)"
+msgstr "The minimum number of characters allowed in a username. (Recommended: 2 or more.)"
+
+# app-settings.tmpl 162
+msgid "Save Settings"
+msgstr "Save Settings"
+
+# app-settings.tmpl 166
+msgid "configuration docs"
+msgstr "configuration docs"
+
+# app-settings.tmpl 166
+msgid "Still have questions? Read more details in the %s."
+msgstr "Still have questions? Read more details in the %s."
+
+msgid "Configuration saved."
+msgstr "Configuration saved."
+
+# view-user.tmpl 66
+# users.tmpl 22
+msgid "joined"
+msgstr "joined"
+
+# users.tmpl 23
+msgid "type"
+msgstr "type"
+
+# users.tmpl 24
+# view-user.tmpl 79
+msgid "status"
+msgstr "status"
+
+# base.tmpl 31
+# header.tmpl 39
+# invite.tmpl 26
+# users.tmpl 16
+msgid "Invite people"
+msgstr "Invite people"
+
+# invite.tmpl 27
+msgid "Invite others to join *%s* by generating and sharing invite links below."
+msgstr "Invite others to join *%s* by generating and sharing invite links below."
+
+# invite.tmpl 31
+msgid "Maximum number of uses:"
+msgstr "Maximum number of uses:"
+
+# invite.tmpl 33
+msgid "No limit"
+msgstr "No limit"
+
+# invite.tmpl 34,35,36,37,38,39,64
+msgid "use"
+msgid_plural "uses"
+msgstr[0] "use"
+msgstr[1] "uses"
+
+# invite.tmpl 43
+msgid "Expire after:"
+msgstr "Expire after:"
+
+# invite.tmpl 46
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minute"
+msgstr[1] "minutes"
+
+# invite.tmpl 47,48,49
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "hour"
+msgstr[1] "hours"
+
+# invite.tmpl 50,51
+msgid "day"
+msgid_plural "days"
+msgstr[0] "day"
+msgstr[1] "days"
+
+# invite.tmpl 52
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "week"
+msgstr[1] "weeks"
+
+# invite.tmpl 57
+msgid "You cannot generate invites while your account is silenced."
+msgstr "You cannot generate invites while your account is silenced."
+
+# invite.tmpl 57
+msgid "Generate"
+msgstr "Generate"
+
+# invite.tmpl 63
+msgid "Link"
+msgstr "Link"
+
+# invite.tmpl 121,129,137,145,152
+msgid "ToLink"
+msgstr "Link"
+
+# invite.tmpl 65
+msgid "Expires"
+msgstr "Expires"
+
+# invite.tmpl 71
+msgid "Expired"
+msgstr "Expired"
+
+# invite.tmpl 75
+msgid "No invites generated yet."
+msgstr "No invites generated yet."
+
+# pages.tmpl 18
+msgid "last modified"
+msgstr "last modified"
+
+# view-user.tmpl 85
+# users.tmpl 31
+msgid "Active"
+msgstr "Active"
+
+# view-user.tmpl 82
+# users.tmpl 31
+msgid "Silenced"
+msgstr "Silenced"
+
+# view-user.tmpl 83
+msgid "Unsilence"
+msgstr "Unsilence"
+
+# view-user 86
+msgid "disabled"
+msgstr "disabled"
+
+# view-user 86
+msgid "Silence"
+msgstr "Silence"
+
+# view-user.tmpl 54
+msgid "No."
+msgstr "No."
+
+# view-user.tmpl 70
+msgid "total posts"
+msgstr "total posts"
+
+# view-user.tmpl 74,136
+msgid "last post"
+msgstr "last post"
+
+# signup.tmpl 87
+# login.tmpl 22
+# landing.tmpl 99
+# view-user 92
+msgid "password"
+msgstr "password"
+
+msgid "Change your password"
+msgstr "Change your password"
+
+# view-user 100
+msgid "Go to reset password page"
+msgstr "Go to reset password page"
+
+# view-user 141
+msgid "Fediverse followers"
+msgstr "Fediverse followers"
+
+# view-user 124
+msgid "Visibility"
+msgstr "Visibility"
+
+# view-user 112
+msgid "Alias"
+msgstr "Alias"
+
+# view-user.tmpl 75,137
+msgid "Never"
+msgstr "Never"
+
+# view-user 97
+msgid "Reset"
+msgstr "Reset"
+
+# view-user 153,156,174
+msgid "Delete this user"
+msgstr "Delete this user"
+
+# view-user 154
+msgid "Permanently erase all user data, with no way to recover it."
+msgstr "Permanently erase all user data, with no way to recover it."
+
+# view-user 165
+msgid "This action **cannot**be undone. It will permanently erase all traces of this user, **%s**, including their account information, blogs, and posts."
+msgstr "This action **cannot**be undone. It will permanently erase all traces of this user, **%s**, including their account information, blogs, and posts."
+
+# view-user 166
+msgid "Please type **%s** to confirm."
+msgstr "Please type **%s** to confirm."
+
+# view-user 202
+msgid "Silence this user? They'll still be able to log in and access their posts, but no one else will be able to see them anymore. You can reverse this decision at any time."
+msgstr "Silence this user? They'll still be able to log in and access their posts, but no one else will be able to see them anymore. You can reverse this decision at any time."
+
+# view-user 208
+msgid "Reset this user's password? This will generate a new temporary password that you'll need to share with them, and invalidate their old one."
+msgstr "Reset this user's password? This will generate a new temporary password that you'll need to share with them, and invalidate their old one."
+
+# settings.tmpl 225
+# user/collection.tmpl 207
+# view-user.tmpl 198
+msgid "Deleting..."
+msgstr "Deleting..."
+
+# view-user.tmpl 46
+msgid "This user's password has been reset to:"
+msgstr "This user's password has been reset to:"
+
+# view-user.tmpl 48
+msgid "They can use this new password to log in to their account. **This will only be shown once**, so be sure to copy it and send it to them now."
+msgstr "They can use this new password to log in to their account. **This will only be shown once**, so be sure to copy it and send it to them now."
+
+# view-user.tmpl 49
+msgid "Their email address is:"
+msgstr "Their email address is:"
+
+# app-updates.tmlp 19
+msgid "Automated update check failed."
+msgstr "Automated update check failed."
+
+# app-updates.tmlp 20, 24, 41
+msgid "Installed version: %s (%s)."
+msgstr "Installed version: %s (%s)."
+
+# app-updates.tmlp 21, 42
+msgid "Learn about latest releases on the %s or %s."
+msgstr "Learn about latest releases on the %s or %s."
+
+# app-updates.tmlp 23
+msgid "WriteFreely is **up to date**."
+msgstr "WriteFreely is **up to date**."
+
+# app-updates.tmlp 27
+msgid "Get"
+msgstr "Get"
+
+# app-updates.tmlp 27
+msgid "A new version of WriteFreely is available! **%s %s**"
+msgstr "A new version of WriteFreely is available! **%s %s**"
+
+# app-updates.tmlp 28
+msgid "release notes"
+msgstr "release notes"
+
+# app-updates.tmlp 29
+msgid "Read the %s for details on features, bug fixes, and notes on upgrading from your current version, **%s**."
+msgstr "Read the %s for details on features, bug fixes, and notes on upgrading from your current version, **%s**."
+
+# app-updates.tmlp 31
+msgid "Check now"
+msgstr "Check now"
+
+# app-updates.tmlp 31
+msgid "Last checked"
+msgstr "Last checked"
+
+# app-updates.tmlp 40
+msgid "Automated update checks are disabled."
+msgstr "Automated update checks are disabled."
+
+# ADMIN PAGES
+# view-page.tmpl 45
+msgid "Banner"
+msgstr "Banner"
+
+# view-page.tmpl 56
+msgid "Body"
+msgstr "Body"
+
+# view-page.tmpl 33
+msgid "Outline your %s."
+msgstr "Outline your %s."
+
+# view-page.tmpl 35,37
+msgid "Customize your %s page."
+msgstr "Customize your %s page."
+
+# view-page.tmpl 31
+msgid "Describe what your instance is %s."
+msgstr "Describe what your instance is %s."
+
+msgid "Accepts Markdown and HTML."
+msgstr "Accepts Markdown and HTML."
+
+# view-page.tmpl 56
+msgid "Content"
+msgstr "Content"
+
+# view-page.tmpl 63
+msgid "Save"
+msgstr "Save"
+
+# view-page.tmpl 71
+msgid "Saving..."
+msgstr "Saving..."
+
+# view-page.tmpl 48
+msgid "We suggest a header (e.g. `# Welcome`), optionally followed by a small bit of text. Accepts Markdown and HTML."
+msgstr "We suggest a header (e.g. `# Welcome`), optionally followed by a small bit of text. Accepts Markdown and HTML."
+
+# login.tmpl 11
+msgid "Log in to %s"
+msgstr "Log in to %s"
+
+# login.tmpl 32
+msgid "Logging in..."
+msgstr "Logging in..."
+
+# login.tmpl 27
+msgid "_No account yet?_ %s to start a blog."
+msgstr "_No account yet?_ %s to start a blog."
+
+msgid "Incorrect password."
+msgstr "Incorrect password."
+
+msgid "This user never set a password. Perhaps try logging in via OAuth?"
+msgstr "This user never set a password. Perhaps try logging in via OAuth?"
+
+msgid "This user never added a password or email address. Please contact us for help."
+msgstr "This user never added a password or email address. Please contact us for help."
+
+msgid "You're doing that too much."
+msgstr "You're doing that too much."
+
+msgid "Parameter `alias` required."
+msgstr "Parameter `alias` required."
+
+msgid "A username is required."
+msgstr "A username is required."
+
+msgid "Parameter `pass` required."
+msgstr "Parameter `pass` required."
+
+msgid "A password is required."
+msgstr "A password is required."
+
+msgid "Need a collection `alias` to read."
+msgstr "Need a collection `alias` to read."
+
+msgid "Please supply a password."
+msgstr "Please supply a password."
+
+msgid "Something went very wrong. The humans have been alerted."
+msgstr "Something went very wrong. The humans have been alerted."
+
+msgid "Logging out failed. Try clearing cookies for this site, instead."
+msgstr "Logging out failed. Try clearing cookies for this site, instead."
+
+# signup-oauth.tmpl 88
+# landing.tmpl 95,197
+msgid "your-username"
+msgstr "your-username"
+
+# signup.tmpl 91
+# landing.tmpl 103
+msgid "optional"
+msgstr "optional"
+
+# signup.tmpl 95
+# landing.tmpl 107
+msgid "Create blog"
+msgstr "Create blog"
+
+# signup-oauth.tmpl 59
+msgid "Finish creating account"
+msgstr "Finish creating account"
+
+# signup-oauth.tmpl 79
+msgid "Display Name"
+msgstr "Display Name"
+
+# oauth.tmpl 26
+msgid "or"
+msgstr "or"
+
+# oauth.tmpl 9,13,17,20
+msgid "Sign in with **%s**"
+msgstr "Sign in with **%s**"
+
+# landing.tmpl 77
+msgid "Learn more..."
+msgstr "Learn more..."
+
+# landing.tmpl 114
+msgid "Registration is currently closed."
+msgstr "Registration is currently closed."
+
+# landing.tmpl 115
+msgid "another instance"
+msgstr "another instance"
+
+# landing.tmpl 115
+msgid "You can always sign up on %s."
+msgstr "You can always sign up on %s."
+
+msgid "# Start your blog"
+msgstr "# Start your blog"
+
+msgid "# Start your blog in the fediverse"
+msgstr "# Start your blog in the fediverse"
+
+msgid ""
+"## Join the Fediverse\n\nThe fediverse is a large network of platforms that all speak a common language. Imagine if you could reply to _Instagram_ posts from _Twitter_, or interact with your favorite _Medium_ blogs from _Facebook_ -- federated alternatives like %s, %s, and WriteFreely enable you to do these types of things.\n\n"
+msgstr ""
+"## Join the Fediverse\n\nThe fediverse is a large network of platforms that all speak a common language. Imagine if you could reply to _Instagram_ posts from _Twitter_, or interact with your favorite _Medium_ blogs from _Facebook_ -- federated alternatives like %s, %s, and WriteFreely enable you to do these types of things.\n\n"
+
+msgid ""
+"## Write More Socially\n"
+"\n"
+"WriteFreely can communicate with other federated platforms like _Mastodon_, so people can follow your blogs, bookmark their favorite posts, and boost them to their followers. Sign up above to create a blog and join the fediverse."
+msgstr ""
+"## Write More Socially\n"
+"\n"
+"WriteFreely can communicate with other federated platforms like _Mastodon_, so people can follow your blogs, bookmark their favorite posts, and boost them to their followers. Sign up above to create a blog and join the fediverse."
+
+msgid "About %s"
+msgstr "About %s"
+
+msgid "_%s_ is a place for you to write and publish, powered by %s."
+msgstr "_%s_ is a place for you to write and publish, powered by %s."
+
+msgid "_%s_ is an interconnected place for you to write and publish, powered by %s."
+msgstr "_%s_ is an interconnected place for you to write and publish, powered by %s."
+
+msgid "article"
+msgid_plural "articles"
+msgstr[0] "article"
+msgstr[1] "articles"
+
+msgid "_%s_ is home to **%d** %s across **%d** %s."
+msgstr "_%s_ is home to **%d** %s across **%d** %s."
+
+msgid "About WriteFreely"
+msgstr "About WriteFreely"
+
+msgid "%s is a self-hosted, decentralized blogging platform for publishing beautiful, simple blogs."
+msgstr "%s is a self-hosted, decentralized blogging platform for publishing beautiful, simple blogs."
+
+msgid "It lets you publish a single blog, or host a community of writers who can create multiple blogs under one account. You can also enable federation, which allows people in the fediverse to follow your blog, bookmark your posts, and share them with others."
+msgstr "It lets you publish a single blog, or host a community of writers who can create multiple blogs under one account. You can also enable federation, which allows people in the fediverse to follow your blog, bookmark your posts, and share them with others."
+
+msgid "Start an instance"
+msgstr "Start an instance"
+
+msgid "Privacy Policy"
+msgstr "Privacy Policy"
+
+# privacy.tmpl 6
+msgid "Last updated"
+msgstr "Last updated"
+
+msgid "Read the latest posts form %s."
+msgstr "Read the latest posts form %s."
+
+# : pages.go:98
+msgid ""
+"%s, the software that powers this site, is built to enforce your right to privacy by default.\n"
+"\n"
+"It retains as little data about you as possible, not even requiring an email address to sign up. However, if you _do_ give us your email address, it is stored encrypted in our database.\n"
+"\n"
+"We salt and hash your account's password.We store log files, or data about what happens on our servers. We also use cookies to keep you logged in to your account.\n"
+"\n"
+"Beyond this, it's important that you trust whoever runs %s. Software can only do so much to protect you -- your level of privacy protections will ultimately fall on the humans that run this particular service."
+msgstr ""
+"%s, the software that powers this site, is built to enforce your right to privacy by default.\n"
+"\n"
+"It retains as little data about you as possible, not even requiring an email address to sign up. However, if you _do_ give us your email address, it is stored encrypted in our database.\n"
+"\n"
+"We salt and hash your account's password.We store log files, or data about what happens on our servers. We also use cookies to keep you logged in to your account.\n"
+"\n"
+"Beyond this, it's important that you trust whoever runs %s. Software can only do so much to protect you -- your level of privacy protections will ultimately fall on the humans that run this particular service."
+
+# static/js/postactions.js
+msgid "Unpublished post"
+msgstr "Unpublished post"
+
+msgid "Moved to %s"
+msgstr "Moved to %s"
+
+msgid "move to"
+msgstr "move to"
+
+msgid "moving to %s..."
+msgstr "moving to %s..."
+
+msgid "unable to move"
+msgstr "unable to move"
+
+msgid "View on %s"
+msgstr "View on %s"
+
+# classic.tmpl 64
+# pad.tmpl 59
+# bare.tmpl 30
+msgid "NOTE"
+msgstr "NOTE"
+
+# classic.tmpl 64
+# pad.tmpl 59
+# bare.tmpl 30
+msgid "for now, you'll need Javascript enabled to post."
+msgstr "for now, you'll need Javascript enabled to post."
+
+# classic.tmpl 158
+# pad.tmpl 174
+msgid "Your account is silenced, so you can't publish or update posts."
+msgstr "Your account is silenced, so you can't publish or update posts."
+
+# classic.tmpl 257
+# pad.tmpl 278
+msgid "Failed to post. Please try again."
+msgstr "Failed to post. Please try again."
+
+# classic.tmpl 163
+# pad.tmpl 179
+# bare.tmpl 99
+msgid "You don't have permission to update this post."
+msgstr "You don't have permission to update this post."
+
+# pad.tmpl 16
+msgid "Write..."
+msgstr "Write..."
+
+# classic.tmpl 34
+# pad.tmpl 29
+msgid "Publish to..."
+msgstr "Publish to..."
+
+# classic.tmpl 55
+# pad.tmpl 50
+msgid "Font"
+msgstr "Font"
+
+# read.tmpl 105
+msgid "from"
+msgstr "from"
+
+# read.tmpl 105
+msgid "Anonymous"
+msgstr "Anonymous"
+
+# read.tmpl 120
+msgid "Older"
+msgstr "Older"
+
+# read.tmpl 121
+msgid "Newer"
+msgstr "Newer"
+
+# password-collection.tmpl 31
+msgid "Menu"
+msgstr "Menu"
+
+# password-collection.tmpl 51
+msgid "This blog requires a password."
+msgstr "This blog requires a password."
+
+# 404-general.tmpl 1
+msgid "Page not found"
+msgstr "Page not found"
+
+# 404-general.tmpl 4
+msgid "This page is missing."
+msgstr "This page is missing."
+
+# 404-general.tmpl 5
+msgid "Are you sure it was ever here?"
+msgstr "Are you sure it was ever here?"
+
+#404.tmpl 1,4
+msgid "Post not found"
+msgstr "Post not found"
+
+#404.tmpl
+msgid "Why not share a thought of your own?"
+msgstr "Why not share a thought of your own?"
+
+# 404.tmpl
+msgid "Start a blog"
+msgstr "Start a blog"
+
+#404.tmpl
+msgid "%s and spread your ideas on **%s**, %s."
+msgstr "%s and spread your ideas on **%s**, %s."
+
+# 404.tmpl
+msgid "a simple blogging community"
+msgstr "a simple blogging community"
+
+# 404.tmpl
+msgid "a simple, federated blogging community"
+msgstr "a simple, federated blogging community"
+
+# 410.tmpl 1
+msgid "Unpublished"
+msgst "Unpublished"
+
+# 410.tmpl 4
+msgid "Post was unpublished by the author."
+msgstr "Post was unpublished by the author."
+
+# 410.tmpl 5
+msgid "It might be back some day."
+msgstr "It might be back some day."
+
+# errors.go
+msgid "Expected valid form data."
+msgstr "Expected valid form data."
+
+msgid "Expected valid JSON object."
+msgstr "Expected valid JSON object."
+
+msgid "Expected valid JSON array."
+msgstr "Expected valid JSON array."
+
+msgid "Invalid access token."
+msgstr "Invalid access token."
+
+msgid "Authorization token required."
+msgstr "Authorization token required."
+
+msgid "Not logged in."
+msgstr "Not logged in."
+
+msgid "You don't have permission to add to this collection."
+msgstr "You don't have permission to add to this collection."
+
+msgid "Invalid editing credentials."
+msgstr "Invalid editing credentials."
+
+msgid "You don't have permission to do that."
+msgstr "You don't have permission to do that."
+
+msgid "Bad requested Content-Type."
+msgstr "Bad requested Content-Type."
+
+msgid "You don't have permission to access this collection."
+msgstr "You don't have permission to access this collection."
+
+msgid "Supply something to publish."
+msgstr "Supply something to publish."
+
+msgid "The humans messed something up. They've been notified."
+msgstr "The humans messed something up. They've been notified."
+
+msgid "Could not get cookie session."
+msgstr "Could not get cookie session."
+
+msgid "Service temporarily unavailable due to high load."
+msgstr "Service temporarily unavailable due to high load."
+
+msgid "Collection doesn't exist."
+msgstr "Collection doesn't exist."
+
+msgid "This blog was unpublished."
+msgstr "This blog was unpublished."
+
+msgid "Collection page doesn't exist."
+msgstr "Collection page doesn't exist."
+
+msgid "Post not found."
+msgstr "Post not found."
+
+msgid "Post removed."
+msgstr "Post removed."
+
+msgid "Post unpublished by author."
+msgstr "Post unpublished by author."
+
+msgid "We encountered an error getting the post. The humans have been alerted."
+msgstr "We encountered an error getting the post. The humans have been alerted."
+
+msgid "User doesn't exist."
+msgstr "User doesn't exist."
+
+msgid "Remote user not found."
+msgstr "Remote user not found."
+
+msgid "Please enter your username instead of your email address."
+msgstr "Please enter your username instead of your email address."
+msgid "This post has been updated elsewhere since you last published!"
+msgstr "Post hau beste nonbait eguneratua izan da argitaratuz geroztik!"
+
+# pad.tmpl 20
+# bare.tmpl 20
+msgid "Delete draft and reload"
+msgstr "Zirriborroa ezabatu eta birkargatu"
+
+msgid "Updates"
+msgstr "Eguneraketak"
+
+# classic.tmpl 42
+# pad.tmpl 37
+# user/collection.tmpl 32
+# collection.tmpl 54
+# nav.tmpl 10
+# header.tmpl 19
+msgid "Customize"
+msgstr "Pertsonalizatu"
+
+# classic.tmpl 43
+# collection.tmpl 55
+# pad.tmpl 38
+# stats.tmpl 26
+# nav.tmpl 11
+# header.tmpl 20
+msgid "Stats"
+msgstr "Estatistikak"
+
+# classic.tmpl 47
+# collection.tmpl 58
+# pad.tmpl 42
+msgid "View Draft"
+msgid_plural "View Drafts"
+msgstr[0] "Zirriborroa Ikusi"
+msgstr[1] "Zirriborroak Ikusi"
+
+# header.tmpl 111
+msgid "Monitor"
+msgstr "Monitorea"
+
+# read.tmpl 108,110
+msgid "Read more..."
+msgstr "Irakurri gehiago..."
+
+# silenced.tmpl 3
+msgid "Your account has been silenced."
+msgstr "Zure kontua isilarazia izan da."
+
+# silenced.tmpl 3
+msgid "You can still access all of your posts and blogs, but no one else can currently see them."
+msgstr "Oraindik zure blog eta postak ikus ditzakezu, baina ez beste inork."
+
+# articles.tmpl 28
+msgid "These are your draft posts. You can share them individually (without a blog) or move them to your blog when you're ready."
+msgstr "Hauek zure zirriborroak dira. Bakarka partekatu ahal izango dituzu (blogik gabe), edo prest dituzunean blogera mugitu eta argitaratu."
+
+# articles.tmpl 57
+msgid "Your anonymous and draft posts will show up here once you've published some. You'll be able to share them individually (without a blog) or move them to a blog when you're ready."
+msgstr "Zure zirriborro eta sarrera anonimoak hemen agertuko dira. Bakarka partekatu ahal izango dituzu (blogik gabe), edo prest dituzunean blogera mugitu eta argitaratu."
+
+# articles.tmpl 58
+msgid "Alternatively, see your blogs and their posts on your %s page."
+msgstr "Bestela, blogak eta argitalpenak ikusi ditzakezu %s orrian."
+
+# articles.tmpl 60
+msgid "Start writing"
+msgstr "Idazten hasi"
+
+# articles.tmpl 64
+# static/js/postactions.js
+msgid "unsynced posts"
+msgstr "sinkronizatu gabeko posta"
+
+# articles.tmpl 64
+# collection.tmpl 43
+# view-page.tmpl 51
+# view-user 116
+msgid "Title"
+msgstr "Izenburua"
+
+# collection.tmpl 44
+# view-user 120
+msgid "Description"
+msgstr "Deskribapena"
+
+# collection.tmpl 50
+msgid "This blog uses your username in its URL."
+msgstr "Blog honek zure erabiltzaile izena darabil bere URL-an."
+
+# collection.tmpl 50
+msgid "This blog uses your username in its URL and fediverse handle."
+msgstr "Blog honek zure erabiltzaile izena darabil bere URL-an eta fedibertsoaren kudeaketan."
+
+# collection.tmpl 50
+msgid "You can change it in your %s."
+msgstr "Hori %s atalean alda dezakezu."
+
+# collection.tmpl 63
+msgid "Publicity"
+msgstr "Publikotasuna"
+
+# collection.tmpl 68
+# app-settings.tmpl 120
+#, fuzzy
+msgid "Unlisted"
+msgstr "Irekia"
+
+# user/collection.tmpl 87
+# app-settings.tmpl 121
+msgid "Public"
+msgstr "Publikoa"
+
+# user/collection.tmpl 74
+# app-settings.tmpl 122
+msgid "Private"
+msgstr "Pribatua"
+
+# user/collection.tmpl 70
+msgid "This blog is visible to any registered user on this instance."
+msgstr "Blog hau instantzia honetan erregistraturiko edonorentzat dago ikusgai."
+
+# user/collection.tmpl 70
+msgid "This blog is visible to anyone with its link."
+msgstr "Blog hau bere esteka duen edonorentzat dago ikusgai."
+
+# user/collection.tmpl 76
+msgid "Only you may read this blog (while you're logged in)."
+msgstr "Zuk bakarrik irakur dezakezu blog hau (saioa hasita duzun bitartean)."
+
+# user/collection.tmpl 80
+msgid "Password-protected:"
+msgstr "Pasahitzez-babestua:"
+
+# user/collection.tmpl 80
+msgid "a memorable password"
+msgstr "pasahitz gogoangarri bat"
+
+# user/collection.tmpl 82
+msgid "A password is required to read this blog."
+msgstr "Pasahitza behar da blog hau irakurtzeko."
+
+# user/collection.tmpl 89
+msgid "This blog is displayed on the public %s, and is visible to anyone with its link."
+msgstr "Blog hau %s atal publikoan bistaratzen da, eta esteka ezagutzen duen edonorentzat dago ikusgai."
+
+# user/collection.tmpl 89
+msgid "This blog is displayed on the public %s, and is visible to any registered user on this instance."
+msgstr "Blog hau %s atal publikoan bistaratzen da, eta instantzia honetan erregistraturiko edonorentzat dago ikusgai."
+
+# user/collection.tmpl 90
+msgid "The public reader is currently turned off for this community."
+msgstr "Irakurlea atal publikoa desgaituta dago une honetan komunitate honentzat."
+
+# user/collection.tmpl 98
+msgid "Display Format"
+msgstr "Bistaratzea"
+
+# user/collection.tmpl 100
+msgid "Customize how your posts display on your page."
+msgid "This content will be added to the end of every post on this blog, as if it were part of the post itself. Markdown, HTML, and shortcodes are allowed."
+msgstr "Eduki hau blog honetako post bakoitzaren amaieran gehituko da, postarena balitz bezala. Markdown, HTML, eta azpikodeak onartzen dira."
+
+# user/collection.tmpl 162
+msgid "Web Monetization"
+msgstr "Web Monetizazioa"
+
+# user/collection.tmpl 164
+msgid "Web Monetization enables you to receive micropayments from readers that have a %s. Add your payment pointer to enable Web Monetization on your blog."
+msgstr "Web Monetizazioak mikro-ordainketak jasotzeko aukera eskaintzen dizu %s duten irakurleengandik. Gehitu zure ordainketa datuak Web Monetizazioa zure blogean gaitzeko."
+
+# user/collection.tmpl 164
+msgid "Coil membership"
+msgstr "Coil kontua"
+
+# edit-meta.tmpl 263
+# settings.tmpl 81
+# user/collection.tmpl 171
+msgid "Save changes"
+msgstr "Gorde aldaketak"
+
+# user/collection.tmpl 173
+msgid "Delete Blog..."
+msgstr "Bloga ezabatu..."
+
+# user/collection.tmpl 190,220
+# articles.tmpl 36
+# posts.tmpl 19,46
+msgid "Delete"
+msgstr "Ezabatu"
+
+# settings.tmpl 187
+# user/collection.tmpl 189
+# view-user 173
+msgid "Cancel"
+msgstr "Utzi"
+
+# user/collection.tmpl 180
+msgid "Are you sure you want to delete this blog?"
+msgstr "Ziur al zaude blog hau ezabatu nahi duzula?"
+
+# posts.js 46,147
+# collection.tmpl 148
+# collection-tags.tmpl 96
+# chorus-collection.tmpl 132
+msgid "Are you sure you want to delete this post?"
+msgstr "Ziur al zaude post hau ezabatu nahi duzula?"
+
+# posts.js 302
+# collection.tmpl 175,226
+# collection-tags.tmpl 123,174
+# chorus-collection.tmpl 159,210
+msgid "Post is synced to another account. Delete the post from that account instead."
+msgstr "Posta beste kontu batekin sinkronizatzen da. Ezaba ezazu kontu horretako posta."
+
+# posts.js 308
+# collection.tmpl 181
+# collection-tags.tmpl 129
+# chorus-collection.tmpl 165
+msgid "Failed to delete."
+msgstr "Ezabatzeak huts egin du."
+
+# posts.js 308
+# collection.tmpl 181
+# collection-tags.tmpl 129
+# chorus-collection.tmpl 165
+msgid "Please try again."
+msgstr "Saia zaitez berriro."
+
+# user/collection.tmpl 182
+msgid "This will permanently erase **%s** (%s/%s) from the internet. Any posts on this blog will be saved and made into drafts (found on your %s page)."
+msgstr "Honek **%s** (%s/%s) betirako ezabatuko du internetetik. Blog honetako post guztiak %s orrira igaroko dira."
+
+# user/collection.tmpl 183
+msgid "If you're sure you want to delete this blog, enter its name in the box below and press **%s**."
+msgstr "Blog hau ezabatu nahi duzula ziur bazaude, sartu bere izena beheko eremuan eta sakatu **%s**."
+
+# user/collection.tmpl 202
+msgid "Enter **%s** in the box below."
+msgstr "Sartu **%s** beheko eremuan."
+
+# collection.tmpl 238
+msgid "Saving changes..."
+msgstr "Aldaketak gordetzen..."
+
+# collections.tmpl 72,75,84
+msgid "This name is taken."
+msgstr "Izen hori erabilita dago."
+
+# pad.tmpl 61
+msgid "Edit post metadata"
+msgstr "Metadatuak editatu"
+
+# edit-meta.tmpl 5,55
+msgid "Edit metadata"
+msgstr "Metadatuak editatu"
+
+# edit-meta.tmpl 260
+msgid "now"
+msgstr "orain"
+
+# edit-meta.tmpl 63
+msgid "Slug"
+msgstr "Sluga"
+
+# edit-meta.tmpl 66
+msgid "Language"
+msgstr "Hizkuntza"
+
+# edit-meta.tmpl 256
+msgid "Direction"
+msgstr "Norabidea"
+
+# edit-meta.tmpl 258
+msgid "Created"
+msgstr "Sortze data"
+
+# edit-meta.tmpl 257
+msgid "right-to-left"
+msgstr "eskuinetik-ezkerrera"
+
+# edit-meta.tmpl 47
+msgid "Edit post"
+msgstr "Posta editatu"
+
+# edit-meta.tmpl 48
+# pad.tmpl 6
+msgid "Toggle theme"
+msgstr "Gaia aldatu"
+
+# collection-post.tmpl 66
+# posts.tmpl 8
+msgid "Scheduled"
+msgstr "Programatua"
+
+# collection-post.tmpl 57
+# post.tmpl 45,91
+# articles.tmpl 35
+# posts.tmpl 17,44
+msgid "Edit"
+msgstr "Editatu"
+
+# posts.tmpl 18,45
+msgid "Pin"
+msgstr "Finkatu"
+
+# collection-post.tmpl 58
+msgid "Unpin"
+msgstr "Askatu"
+
+# posts.tmpl 21,48
+msgid "Move this post to another blog"
+msgstr "Mugitu post hau beste blog batetara"
+
+# posts.tmpl 30,57
+msgid "Change to a draft"
+msgstr "Eraman zirriborroetara"
+
+# posts.tmpl 30,57
+msgid "change to _%s_"
+msgstr "bihurtu _%s_"
+
+# articles.tmpl 43,78
+# posts.tmpl 26,53
+msgid "move to..."
+msgstr "mugi hona..."
+
+# articles.tmpl 47,83
+msgid "move to %s"
+msgstr "eraman %s-ra"
+
+# post.tmpl 42
+msgid "View raw"
+msgstr "Raw-eran ikusi"
+
+# articles.tmpl 47,83
+msgid "Publish this post to your blog %s"
+msgstr "Argitaratu post hau zure %s blogean"
+
+# articles.tmpl 39,74
+msgid "Move this post to one of your blogs"
+msgstr "Mugitu post hau zure blogetako batetara"
+
+# articles.tmpl 55
+msgid "Load more..."
+msgstr "Kargatu gehiago..."
+
+# stats.tmpl 32
+msgid "Stats for all time."
+msgstr "Estatistika orokorrak."
+
+# stats.tmpl 35
+msgid "Fediverse stats"
+msgstr "Fedibertsoko estatistikak"
+
+# stats.tmpl 38
+msgid "Followers"
+msgstr "Jarraitzaileak"
+
+# stats.tmpl 46
+msgid "Top %d post"
+msgid_plural "Top %d posts"
+msgstr[0] "%d. posta"
+msgstr[1] "Lehen %d postak"
+
+# stats.tmpl 51
+msgid "Total Views"
+msgstr "Bistaratzeak"
+
+# settings.tmpl 27
+msgid "Before you go..."
+msgstr "Joan aurretik..."
+
+# settings.tmpl 27
+msgid "Account Settings"
+msgstr "Kontuaren Ezarpenak"
+
+# settings.tmpl 38
+msgid "Change your account settings here."
+msgstr "Aldatu hemen zure kontuaren ezarpenak."
+
+# signup.tmpl 80
+# signup-oauth.tmpl 85,87
+# login.tmpl 21
+# landing.tmpl 92
+# settings.tmpl 43
+# view-user.tmpl 62
+msgid "Username"
+msgstr "Erabiltzaile-izena"
+
+# settings.tmpl 46
+msgid "Update"
+msgstr "Eguneratu"
+
+# settings.tmpl 56
+msgid "Passphrase"
+msgstr "Pasaesaldia"
+
+# settings.tmpl 58
+msgid "Add a passphrase to easily log in to your account."
+msgid "Connect additional accounts to enable logging in with those providers, instead of using your username and password."
+msgstr "Konektatu kontu gehigarriak hornitzaile horiekin saioa hasteko, zure erabiltzaile-izena eta pasahitza erabili beharrean."
+
+# settings.tmpl 162
+# view-user 149
+msgid "Incinerator"
+msgstr "Errauskailua"
+
+# settings.tmpl 166,169,188
+msgid "Delete your account"
+msgstr "Ezabatu zure kontua"
+
+# settings.tmpl 167
+msgid "Permanently erase all your data, with no way to recover it."
+msgstr "Ezabatu zure datu guztiak, berreskuratzeko modurik gabe."
+
+# settings.tmpl 176
+# view-user 163
+msgid "Are you sure?"
+msgstr "Ziur al zaude?"
+
+# settings.tmpl 178
+msgid "export your data"
+msgstr "zure datuak esportatu"
+
+# settings.tmpl 178
+msgid "This action **cannot** be undone. It will immediately and permanently erase your account, including your blogs and posts. Before continuing, you might want to %s."
+msgstr "Ekintza hau **ezin da** desegin. Honek berehala eta betirako ezabatuko du zure kontua, blogak eta argitalpenak barne. Jarraitu aurretik agian %s nahi zenituzke."
+
+# settings.tmpl 179
+msgid "If you're sure, please type **%s** to confirm."
+msgstr "Ziur baldin bazaude, idatzi **%s** berresteko."
+
+# invite-help.tmpl 13
+msgid "Invite to %s"
+msgstr "%s gonbidatu"
+
+# invite-help.tmpl 15
+msgid "This invite link is expired."
+msgstr "Esteka hau iraungita dago."
+
+# invite-help.tmpl 21
+msgid "Only **one** user"
+msgstr "Erabiltzaile **bakarrak**"
+
+# invite-help.tmpl 21
+msgid "Up to **%d** users"
+msgstr "**%d** erabiltzaileko kopuruak"
+
+# invite-help.tmpl 21
+msgid "can sign up with this link."
+msgstr "hasi dezake saioa esteka honekin."
+
+# invite-help.tmpl 23
+msgid "It expires on **%s**."
+msgstr "Iraungitze data: **%s**."
+
+# invite-help.tmpl 25
+msgid "It can be used as many times as you like"
+msgstr "Nahi duzun adina aldiz erabili daiteke"
+
+# invite-help 25
+msgid "before **%s**, when it expires"
+msgstr "**%s** baino lehen, iraungitzen denean alegia"
+
+msgid "person has"
+msgid_plural "person have"
+msgstr[0] "pertsonak"
+msgstr[1] "pertsonek"
+
+# invite-help.tmpl 21
+msgid "So far, **%d** %s used it."
+msgstr "Orain arte, **%d** %s erabili dute."
+
+# invite-help.tmpl 21
+# So far, <strong>{{.Invite.Uses}}</strong> {{pluralize "person has" "people have" .Invite.Uses}} used it.
+# invite-help.tmpl 21
+# invite-help.tmpl 17
+msgid "Copy the link below and send it to anyone that you want to join *%s*. You could paste it into an email, instant message, text message, or write it down on paper. Anyone who navigates to this special page will be able to create an account."
+msgstr ""
+"Kopiatu ondorengo esteka eta *%s* gunera batzea nahi duzun lagunari bidali. Email batean erantsiz bidal dezakezu, mezularitza zerbitzu baten bidez, testu-mezu moduan edo paper zati batean idatziz. Helbide berezi honetara nabigatzen duen edonork izango du "
+"kontu bat sortzeko aukera."
+
+# IMPORT PAGE
+# import.tmpl 28
+msgid "Publish plain text or Markdown files to your account by uploading them below."
+msgstr "Argitaratu testu-lau edo Markdown fitxategiak zure kontura igoaz."
+msgid "%d of %d posts imported, see details below."
+msgid_plural "%d of %d posts imported, see details below."
+msgstr[0] "%d of %d posts imported, see details below."
+msgstr[1] "%d of %d posts imported, see details below."
+
+msgid "%s is not a supported post file"
+msgstr "%s post fitxategia ez da onartzen"
+
+# export.tmpl 6
+msgid "Your data on %s is always free. Download and back-up your work any time."
+msgstr "Zure datuen biltegiratzea doanekoa da %s webgunean. Deskargatu eta egin zure lanen babeskopia edonoiz."
+
+# export.tmpl 11
+msgid "Format"
+msgstr "Formatua"
+
+# header.tmpl 101
+msgid "Admin"
+msgstr "Admin"
+
+# app-settings.tmpl 37
+msgid "Site Title"
+msgstr "Gunearen Izenburua"
+
+# app-settings.tmpl 38
+msgid "Your public site name."
+msgstr "Gune publikoaren izena."
+
+# app-settings.tmpl 44
+msgid "Site Description"
+msgstr "Gunearen Deskribapena"
+
+# app-settings.tmpl 45
+msgid "Describe your site — this shows in your site's metadata."
+msgstr "Deskribatu zure gunea — hau gunearen metadatuetan erakutsiko da."
+
+# app-settings.tmpl 51
+msgid "Host"
+msgstr "Host"
+
+# app-settings.tmpl 52
+msgid "The public address where users will access your site, starting with `http://` or `https://`."
+msgstr "Erabiltzaileek gunean sartzeko erabiliko duten helbidea, hasieran `http://` edo `https://` protokoloa zehaztuz."
+
+# app-settings.tmpl 58
+msgid "Community Mode"
+msgstr "Komunitate Modua"
+
+# app-settings.tmpl 59
+msgid "Whether your site is made for one person or many."
+msgstr "Zure gunea pertsona bakarrarentzat edo askorentzat egina dagoen."
+
+# app-settings.tmpl 61
+msgid "Single user"
+msgstr "Erabiltzaile bakarra"
+
+# app-settings.tmpl 61
+msgid "Multiple users"
+msgstr "Erabiltzaile anitz"
+
+# app-settings.tmpl 65
+msgid "Landing Page"
+msgstr "Helburu-orria"
+
+# app-settings.tmpl 66
+msgid "The page that logged-out visitors will see first. This should be an absolute path like: `/read`."
+msgstr "Saioa hasi gabe duten erabiltzaileek hasieran ikusiko duten orria. Honen moduko bide absolutua izan beharko litzateke: `/read`."
+
+# app-settings.tmpl 72
+msgid "Open Registrations"
+msgstr "Erregistro Irekia"
+
+# app-settings.tmpl 73
+msgid "Allow anyone who visits the site to create an account."
+msgstr "Gunea bisitatzen duen edonori kontua sortzen utzi."
+
+# app-settings.tmpl 80
+msgid "Allow account deletion"
+msgstr "Kontua ezabatzen utzi"
+
+# app-settings.tmpl 81
+msgid "Allow all users to delete their account. Admins can always delete users."
+msgstr "Erabiltzaileei beraien kontua ezabatzen utzi. Administratzaileek beti ezabatu ditzakete erabiltzaileak."
+
+# app-settings.tmpl 88
+msgid "Allow invitations from..."
+msgstr "Gonbidapen onarpena"
+
+# app-settings.tmpl 89
+msgid "Choose who is allowed to invite new people."
+msgstr "Zehaztu nor dagoen baimenduta jende berria gonbidatzera."
+
+# app-settings.tmpl 93
+msgid "No one"
+msgstr "Inor ez"
+
+# app-settings.tmpl 94
+msgid "Only Admins"
+msgstr "Admin-ak soilik"
+
+# app-settings.tmpl 95
+msgid "All Users"
+msgstr "Erabiltzaile oro"
+
+# app-settings.tmpl 101
+msgid "Private Instance"
+msgstr "Instantzia Pribatua"
+
+# app-settings.tmpl 102
+msgid "Limit site access to people with an account."
+msgstr "Sarbidea mugatu kontua duten erabiltzaileei."
+
+# app-settings.tmpl 109
+msgid "Show a feed of user posts for anyone who chooses to share there."
+msgstr "Erabiltzailearen argitalpenen feed bat erakutsi bertan elkarbanatzea aukeratzen duen edonorentzat."
+
+# app-settings.tmpl 115
+msgid "Default blog visibility"
+msgstr "Blogaren ikusgarritasuna"
+
+# app-settings.tmpl 116
+msgid "The default setting for new accounts and blogs."
+msgstr "Kontu eta blog berrientzako lehenetsitako ezarpena."
+
+# app-settings.tmpl 128
+msgid "Maximum Blogs per User"
+msgstr "Blog Kopurua Erabiltzaileko"
+
+# app-settings.tmpl 129
+msgid "Keep things simple by setting this to **1**, unlimited by setting to **0**, or pick another amount."
+msgstr "Guztia modu sinplean mantentzeko sartu **1**, mugagabea **0** ezarriz, bestela gogoko kopurua zehaztu dezakezu."
+
+# app-settings.tmpl 135
+msgid "Federation"
+msgstr "Federazioa"
+
+# app-settings.tmpl 136
+msgid "Enable accounts on this site to propagate their posts via the ActivityPub protocol."
+msgstr "Gaitu gune honetako kontuek ActivityPub protokolo bidez postak zabaldu ditzaten."
+
+# app-settings.tmpl 142
+msgid "Public Stats"
+msgstr "Estatistika Publikoak"
+
+# app-settings.tmpl 143
+msgid "Publicly display the number of users and posts on your **%s** page."
+msgstr "Erakutsi publikoki erabiltzaile eta post kopurua **%s** orrian."
+
+# app-settings.tmpl 149
+msgid "Monetization"
+msgstr "Monetizazioa"
+
+# app-settings.tmpl 150
+msgid "Enable blogs on this site to receive micropayments from readers via %s."
+msgstr "Gaitu gune honetako blogak irakurleengandik mikro-ordainketak jaso ditzaten, %s-en bidez."
+
+# app-settings.tmpl 156
+msgid "Minimum Username Length"
+msgstr "Erabiltzaile-izenaren gutxieneko luzera"
+
+# app-settings.tmpl 157
+msgid "The minimum number of characters allowed in a username. (Recommended: 2 or more.)"
+msgstr "Erabiltzaile-izenean onarturiko gutxieneko karaktere kopurua. (Gomendatua: 2 edo gehiago.)"
+
+# app-settings.tmpl 162
+msgid "Save Settings"
+msgstr "Gorde Ezarpenak"
+
+# app-settings.tmpl 166
+msgid "configuration docs"
+msgstr "konfiguraketa dokumentuetan"
+
+# app-settings.tmpl 166
+msgid "Still have questions? Read more details in the %s."
+msgstr "Zalantzak dituzu oraindik? Irakurri xehetasun gehiago %s."
+
+msgid "Configuration saved."
+msgstr "Konfiguraketa gorde da."
+
+# view-user.tmpl 66
+# users.tmpl 22
+msgid "joined"
+msgstr "elkartua"
+
+# users.tmpl 23
+msgid "type"
+msgstr "mota"
+
+# users.tmpl 24
+# view-user.tmpl 79
+msgid "status"
+msgstr "egoera"
+
+# base.tmpl 31
+# header.tmpl 39
+# invite.tmpl 26
+# users.tmpl 16
+msgid "Invite people"
+msgstr "Jendea gonbidatu"
+
+# invite.tmpl 27
+msgid "Invite others to join *%s* by generating and sharing invite links below."
+msgstr "Gonbidatu lagunen bat *%s* gunera batu dadin gonbidapen esteka bat sortu eta berarekin elkarbanatuz."
+
+# invite.tmpl 31
+msgid "Maximum number of uses:"
+msgstr "Gehienezko erabilera kopurua:"
+
+# invite.tmpl 33
+msgid "No limit"
+msgstr "Mugagabea"
+
+# invite.tmpl 34,35,36,37,38,39,64
+msgid "use"
+msgid_plural "uses"
+msgstr[0] "use"
+msgstr[1] "uses"
+
+# invite.tmpl 43
+msgid "Expire after:"
+msgstr "Iraungitze data:"
+
+# invite.tmpl 46
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minute"
+msgstr[1] "minutes"
+
+# invite.tmpl 47,48,49
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "hour"
+msgstr[1] "hours"
+
+# invite.tmpl 50,51
+msgid "day"
+msgid_plural "days"
+msgstr[0] "day"
+msgstr[1] "days"
+
+# invite.tmpl 52
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "week"
+msgstr[1] "weeks"
+
+# invite.tmpl 57
+msgid "You cannot generate invites while your account is silenced."
+msgstr "Ezin duzu gonbidapenik sortu zure kontua isilarazirik dagoen bitartean."
+
+# invite.tmpl 57
+msgid "Generate"
+msgstr "Sortu"
+
+# invite.tmpl 63
+msgid "Link"
+msgstr "Lotura"
+
+# invite.tmpl 121,129,137,145,152
+msgid "ToLink"
+msgstr "Lotu"
+
+# invite.tmpl 65
+msgid "Expires"
+msgstr "Iraungitzea"
+
+# invite.tmpl 71
+msgid "Expired"
+msgstr "Iraungita"
+
+# invite.tmpl 75
+msgid "No invites generated yet."
+msgstr "Oraindik ez da gonbidapenik sortu."
+
+# pages.tmpl 18
+msgid "last modified"
+msgstr "azken aldaketa"
+
+# view-user.tmpl 85
+msgid "Active"
+msgstr "Aktibo"
+
+# view-user.tmpl 82
+msgid "Silenced"
+msgstr "Isilarazia"
+
+# view-user.tmpl 83
+msgid "Unsilence"
+msgstr "Ez-isilarazi"
+
+# view-user 86
+msgid "disabled"
+msgstr "desgaitua"
+
+# view-user 86
+msgid "Silence"
+msgstr "Isilarazi"
+
+# view-user.tmpl 54
+msgid "No."
+msgstr "Zkia."
+
+# view-user.tmpl 70
+msgid "total posts"
+msgstr "postak guztira"
+
+# view-user.tmpl 74,136
+msgid "last post"
+msgstr "azken posta"
+
+# signup.tmpl 87
+# login.tmpl 22
+# landing.tmpl 99
+# view-user 92
+msgid "password"
+msgstr "pasahitza"
+
+msgid "Change your password"
+msgstr "Aldatu zure pasahitza"
+
+# view-user 100
+msgid "Go to reset password page"
+msgstr "Pasahitza berrezartzeko orrira joan"
+
+# view-user 141
+msgid "Fediverse followers"
+msgstr "Fedibertsoko jarraitzaileak"
+
+# view-user 124
+msgid "Visibility"
+msgstr "Ikusgarritasuna"
+
+# view-user 112
+msgid "Alias"
+msgstr "Ezizena"
+
+# view-user.tmpl 75,137
+msgid "Never"
+msgstr "Inoiz ez"
+
+# view-user 97
+msgid "Reset"
+msgstr "Berrezarri"
+
+# view-user 153,156,174
+msgid "Delete this user"
+msgstr "Erabiltzailea ezabatu"
+
+# view-user 154
+msgid "Permanently erase all user data, with no way to recover it."
+msgstr "Betiko ezabatu erabiltzailearen datu guztiak, berreskuratzeko aukerarik gabe."
+
+# view-user 165
+msgid "This action **cannot**be undone. It will permanently erase all traces of this user, **%s**, including their account information, blogs, and posts."
+msgstr "Ekintza hau **ezingo da** desegin. Betiko ezabatuko ditu erabiltzaile honen aztarna guztiak, **%s**, bere kontuaren informazioa barne, blogak, eta postak."
+
+# view-user 166
+msgid "Please type **%s** to confirm."
+msgstr "Mesedez idatzi **%s** baieztatzeko."
+
+# view-user 202
+msgid "Silence this user? They'll still be able to log in and access their posts, but no one else will be able to see them anymore. You can reverse this decision at any time."
+msgstr "Erabiltzailea isilarazi? Isilarazitako erabiltzaileek sarbidea izaten jarraituko dute beraien idatzietara, baina ez ditu inork ikusiko. Erabaki hau edozein unetan alda dezakezu."
+
+# view-user 208
+msgid "Reset this user's password? This will generate a new temporary password that you'll need to share with them, and invalidate their old one."
+msgstr "Erabiltzailearen pasahitza berrezarri? Honek aldi baterako pasahitz berri bat sortuko du, beraiekin partekatu beharko duzuna eta zaharra baliogabetu."
+
+# settings.tmpl 225
+# collection.tmpl 207
+# view-user.tmpl 198
+msgid "Deleting..."
+msgstr "Ezabatzen..."
+
+# view-user.tmpl 46
+msgid "This user's password has been reset to:"
+msgstr "Erabiltzaile honen pasahitza hona berrezarri da:"
+
+# view-user.tmpl 48
+msgid "They can use this new password to log in to their account. **This will only be shown once**, so be sure to copy it and send it to them now."
+msgstr "Pasahitz berri hau kontuan saio hasteko erabili ahal izango da. **Behin bakarrik erakutsiko da**, beraz, ziurtatu kopiatu eta bidaltzeaz."
+
+# view-user.tmpl 49
+msgid "Their email address is:"
+msgstr "Email helbidea:"
+
+# app-updates.tmlp 19
+msgid "Automated update check failed."
+msgstr "Eguneratze automatizatuaren egiaztatzeak huts egin du."
+
+# app-updates.tmlp 20, 24, 41
+msgid "Installed version: %s (%s)."
+msgstr "Instalaturiko bertsioa: %s (%s)."
+
+# app-updates.tmlp 21, 42
+msgid "Learn about latest releases on the %s or %s."
+msgstr "Ezagutu azken bertsioen inguruan %s-ean edo %s-ean."
+
+# app-updates.tmlp 23
+msgid "WriteFreely is **up to date**."
+msgstr "WriteFreely **eguneratuta** dago."
+
+# app-updates.tmlp 27
+msgid "Get"
+msgstr "Lortu"
+
+# app-updates.tmlp 27
+msgid "A new version of WriteFreely is available! **%s %s**"
+msgstr "WriteFreely bertsio berri bat dago eskuragarri! **%s %s**"
+
+# app-updates.tmlp 28
+msgid "release notes"
+msgstr "bertsio oharrak"
+
+# app-updates.tmlp 29
+msgid "Read the %s for details on features, bug fixes, and notes on upgrading from your current version, **%s**."
+msgstr "Irakurri %s, **%s** bertsioaren ezaugarriei, akatsen zuzenketei eta eguneratze-oharrei buruzko xehetasunak ezagutzeko."
+msgid "We suggest a header (e.g. `# Welcome`), optionally followed by a small bit of text. Accepts Markdown and HTML."
+msgstr "Goiburu bat iradokitzen dugu (adib. ` # Ongi Etorri`), aukeran testu pixka batez jarraituz. Markdown eta HTML onartzen dira."
+
+# login.tmpl 11
+msgid "Log in to %s"
+msgstr "Hasi saioa %s gunean"
+
+# login.tmpl 32
+msgid "Logging in..."
+msgstr "Saioa hasten..."
+
+# login.tmpl 27
+msgid "_No account yet?_ %s to start a blog."
+msgstr "_Konturik ez oraindik?_ %s blog bat hasteko."
+
+msgid "Incorrect password."
+msgstr "Pasahitz okerra."
+
+msgid "This user never set a password. Perhaps try logging in via OAuth?"
+msgstr "Erabiltzaile honek ez du pasahitzik ezarririk. Beharbada OAuth bidez saiatu?"
+
+msgid "This user never added a password or email address. Please contact us for help."
+msgstr "Erabiltzaile honek ez du inoiz pasahitz edo emailik gehitu. Jarri gurekin harremanetan laguntza jasotzeko."
+
+msgid "You're doing that too much."
+msgstr "Gehiegitan ari zara hori egiten."
+
+msgid "Parameter `alias` required."
+msgstr "Sartu erabiltzaile izena."
+
+msgid "A username is required."
+msgstr "Sartu erabiltzaile izena."
+
+msgid "Parameter `pass` required."
+msgstr "Sartu ezazu pasahitza."
+
+msgid "A password is required."
+msgstr "Pasahitza beharrezkoa da."
+
+msgid "Need a collection `alias` to read."
+msgstr "Bilduma `ezizen` bat behar da irakurtzeko."
+
+msgid "Please supply a password."
+msgstr "Mesedez sartu pasahitz bat."
+
+msgid "Something went very wrong. The humans have been alerted."
+msgstr "Zeozer oso gaizki atera da. Gizakiak jakinaren gain jarriko dira."
+
+msgid "Logging out failed. Try clearing cookies for this site, instead."
+msgstr "Irtetzeak huts egin du. Horren ordez, saia zaitez cookieak garbitzen."
+
+msgid "your-username"
+msgstr "zure-erabiltzaile-izena"
+
+msgid "optional"
+msgstr "hautazkoa"
+
+msgid "Create blog"
+msgstr "Sortu bloga"
+
+# signup-oauth.tmpl 59
+msgid "Finish creating account"
+msgstr "Amaitu kontua sortzen"
+
+# signup-oauth.tmpl 79
+msgid "Display Name"
+msgstr "Bistaratze izena"
+
+# oauth.tmpl 26
+msgid "or"
+msgstr "edo"
+
+# oauth.tmpl 9,13,17,20
+msgid "Sign in with **%s**"
+msgstr "Hasi saioa **%s**-ekin"
+
+# landing.tmpl 77
+msgid "Learn more..."
+msgstr "Ikasi gehiago..."
+
+# landing.tmpl 114
+msgid "Registration is currently closed."
+msgstr "Izen-ematea itxita dago une honetan."
+
+# landing.tmpl 115
+msgid "another instance"
+msgstr "beste instantzia"
+
+# landing.tmpl 115
+msgid "You can always sign up on %s."
+msgstr "Beti hasi ahal izango saioa %s batean."
+
+msgid "# Start your blog"
+msgstr "# Hasi zure bloga"
+
+msgid "# Start your blog in the fediverse"
+msgstr "# Hasi zure bloga fedibertsoan"
+
+msgid ""
+"## Join the Fediverse\n"
+"\n"
+"The fediverse is a large network of platforms that all speak a common language. Imagine if you could reply to _Instagram_ posts from _Twitter_, or interact with your favorite _Medium_ blogs from _Facebook_ -- federated alternatives like %s, %s, and "
+"WriteFreely enable you to do these types of things.\n"
+"\n"
+msgstr ""
+"## Batu fedibertsora\n"
+"\n"
+"Fedibertsoa plataforma desberdinek osatzen duten sare zabal bat da, non guztiek hizkuntza bera erabiltzen duten. Imajina ezazu _Twitter_-etik _Instagram_-eko sarrera bat erantzuteko aukera izango bazenu, edo _Facebook_-etik _Medium_ blog plataforman "
+"jardutekoa. %s, %s eta WriteFreely bezalako alternatibek horrelako gauzak egitea ahalbidetzen dute.\n"
+"\n"
+
+msgid ""
+"## Write More Socially\n"
+"\n"
+"WriteFreely can communicate with other federated platforms like _Mastodon_, so people can follow your blogs, bookmark their favorite posts, and boost them to their followers. Sign up above to create a blog and join the fediverse."
+msgstr ""
+"## Idatzi sozialkiago\n"
+"\n"
+"WriteFreely _Mastodon_ bezalako beste edozein federatutako plataformarekin komunika daiteke, beraz jendeak zure bloga jarraitu ahal izango du, gogoko sarreren laster-markak egin, eta jarraitzaileekin elkarbanatu. Eman izena blog bat sortzeko eta batu "
+"fedibertsora."
+
+msgid "About %s"
+msgstr "%s-i buruz"
+
+msgid "_%s_ is a place for you to write and publish, powered by %s."
+msgstr "_%s_ idatzi eta argitaratzeko gune bat da, %s erabiliz."
+
+msgid "_%s_ is an interconnected place for you to write and publish, powered by %s."
+msgstr "_%s_ idatzi eta argitaratzeko gune bat da, %s erabiliz."
+
+msgid "article"
+msgid_plural "articles"
+msgstr[0] "artikulu"
+msgstr[1] "artikuluak"
+
+msgid "_%s_ is home to **%d** %s across **%d** %s."
+msgstr "_%s_ guneak **%d** %s ditu, eta **%d** %s."
+
+msgid "About WriteFreely"
+msgstr "WriteFreely-ri buruz"
+
+msgid "%s is a self-hosted, decentralized blogging platform for publishing beautiful, simple blogs."
+msgstr "%s blog eder eta sinpleak argitaratzeko norberak ostata dezakeen eta deszentralizaturikoa den blogintza plataforma bat da."
+
+msgid "It lets you publish a single blog, or host a community of writers who can create multiple blogs under one account. You can also enable federation, which allows people in the fediverse to follow your blog, bookmark your posts, and share them with others."
+msgstr ""
+"Blog bakar bat argitaratzeko aukera eskaintzen du, edo kontu bakarrean hainbat blog sor ditzakeen idazle komunitate bat ostatatzekoa. Federazioa ere gaitu daiteke, horrela, bertako pertsonek blogak jarraitu, posten laster-markak egin, eta besteekin partekatu "
+"ahal izango dituzte."
+
+msgid "Start an instance"
+msgstr "Hasi instantzia bat"
+
+msgid "Privacy Policy"
+msgstr "Pribatutasun Politika"
+
+msgid "Last updated"
+msgstr "Azken eguneraketa"
+
+msgid "Read the latest posts form %s."
+msgstr "Irakurri %s-en argitaratutako azken sarrerak."
+
+# : pages.go:98
+msgid ""
+"%s, the software that powers this site, is built to enforce your right to privacy by default.\n"
+"\n"
+"It retains as little data about you as possible, not even requiring an email address to sign up. However, if you _do_ give us your email address, it is stored encrypted in our database.\n"
+"\n"
+"We salt and hash your account's password.We store log files, or data about what happens on our servers. We also use cookies to keep you logged in to your account.\n"
+"\n"
+"Beyond this, it's important that you trust whoever runs %s. Software can only do so much to protect you -- your level of privacy protections will ultimately fall on the humans that run this particular service."
+msgstr ""
+"Gune hau ahalbidetzen duen softwareak, hau da, %s-k zure pribatutasun eskubidea bermatzea lehenesten du.\n"
+"\n"
+"Instantzia honetan zuri buruzko ahalik eta datu gutxien gordetzen da, erregistratzeko helbide elektronikorik ere ez da behar, baina ematen badiguzu ere, enkriptaturik gordeko da gure datu-basean. Zure pasahitza berriz salt eta hash bidez babesten da.\n"
+"\n"
+"Log fitxategiak ere gordetzen ditugu, gure zerbitzarietan gertatzen dena, alegia. Zure kontuan saioa hasita izan dezazun cookieak ere erabiltzen ditugu.\n"
+"\n"
+"Horrez gain, garrantzitsua da %s kudeatzen ari dena zure konfidantzazko norbait izatea. Softwareak asko egin dezake zu babesteko, baina zure pribatutasunaren babes-maila, azken batean, zerbitzu hau kudeatzen duten pertsonena da."
+
+# static/js/postactions.js
+msgid "Unpublished post"
+msgstr "Argitaratu gabeko posta"
+
+msgid "Moved to %s"
+msgstr "%s-(e)ra mugitua"
+
+msgid "move to"
+msgstr "eraman"
+
+msgid "moving to %s..."
+msgstr "%s-(e)ra mugitzen..."
+
+msgid "unable to move"
+msgstr "ezinezkoa mugitzea"
+
+msgid "View on %s"
+msgstr "Ikusi %s-(e)n"
+
+# classic.tmpl 64
+# pad.tmpl 59
+# bare.tmpl 30
+msgid "NOTE"
+msgstr "OHARRA"
+
+# classic.tmpl 64
+# pad.tmpl 59
+# bare.tmpl 30
+msgid "for now, you'll need Javascript enabled to post."
+msgstr "oraingoz, Javascript gaiturik behar duzu postak idazteko."
+
+# classic.tmpl 158
+# pad.tmpl 174
+msgid "Your account is silenced, so you can't publish or update posts."
+msgstr "Zure kontua isilarazi egin da, beraz ezin duzu postik argitaratu edo eguneratu."
+ content := setLang.Get("_%s_ is a place for you to write and publish, powered by %s.", cfg.App.SiteName, wf_link)
if cfg.App.Federation {
- return `_` + cfg.App.SiteName + `_ is an interconnected place for you to write and publish, powered by [WriteFreely](https://writefreely.org) and ActivityPub.`
+ content := setLang.Get("_%s_ is an interconnected place for you to write and publish, powered by %s.", cfg.App.SiteName, wf_link)
+ return content
}
- return `_` + cfg.App.SiteName + `_ is a place for you to write and publish, powered by [WriteFreely](https://writefreely.org).`
-It retains as little data about you as possible, not even requiring an email address to sign up. However, if you _do_ give us your email address, it is stored encrypted in our database. We salt and hash your account's password.
-
-We store log files, or data about what happens on our servers. We also use cookies to keep you logged in to your account.
-
-Beyond this, it's important that you trust whoever runs **` + cfg.App.SiteName + `**. Software can only do so much to protect you -- your level of privacy protections will ultimately fall on the humans that run this particular service.`
+ DefPrivPolString := setLang.Get("%s, the software that powers this site, is built to enforce your right to privacy by default.\n\nIt retains as little data about you as possible, not even requiring an email address to sign up. However, if you _do_ give us your email address, it is stored encrypted in our database.\n\nWe salt and hash your account's password.We store log files, or data about what happens on our servers. We also use cookies to keep you logged in to your account.\n\nBeyond this, it's important that you trust whoever runs %s. Software can only do so much to protect you -- your level of privacy protections will ultimately fall on the humans that run this particular service.", wf_link, bold_site_name);
+ content1 := setLang.Get("## Join the Fediverse\n\nThe fediverse is a large network of platforms that all speak a common language. Imagine if you could reply to _Instagram_ posts from _Twitter_, or interact with your favorite _Medium_ blogs from _Facebook_ -- federated alternatives like %s, %s, and WriteFreely enable you to do these types of things.\n\n",pixelfed, mastodon)
+ content2 := setLang.Get("## Write More Socially\n\nWriteFreely can communicate with other federated platforms like _Mastodon_, so people can follow your blogs, bookmark their favorite posts, and boost them to their followers. Sign up above to create a blog and join the fediverse.")
if cfg.App.Federation {
- return `## Join the Fediverse
-
-The fediverse is a large network of platforms that all speak a common language. Imagine if you could reply to Instagram posts from Twitter, or interact with your favorite Medium blogs from Facebook -- federated alternatives like [PixelFed](https://pixelfed.org), [Mastodon](https://joinmastodon.org), and WriteFreely enable you to do these types of things.
-WriteFreely can communicate with other federated platforms like Mastodon, so people can follow your blogs, bookmark their favorite posts, and boost them to their followers. Sign up above to create a blog and join the fediverse.`
-{{define "head"}}<title>Page not found — {{.SiteName}}</title>{{end}}
+{{define "head"}}<title>{{call .Tr "Page not found"}} — {{.SiteName}}</title>{{end}}
{{define "content"}}
<div class="error-page">
- <p class="msg">This page is missing.</p>
- <p>Are you sure it was ever here?</p>
+ <p class="msg">{{call .Tr "This page is missing."}}</p>
+ <p>{{call .Tr "Are you sure it was ever here?"}}</p>
</div>
{{end}}
diff --git a/pages/404.tmpl b/pages/404.tmpl
index b103e27..46337e0 100644
--- a/pages/404.tmpl
+++ b/pages/404.tmpl
@@ -1,10 +1,11 @@
-{{define "head"}}<title>Post not found — {{.SiteName}}</title>{{end}}
+{{define "head"}}<title>{{call .Tr "Post not found"}} — {{.SiteName}}</title>{{end}}
{{define "content"}}
<div class="error-page" style="max-width:30em">
- <p class="msg">Post not found.</p>
+ <p class="msg">{{call .Tr "Post not found"}}.</p>
{{if and (not .SingleUser) .OpenRegistration}}
- <p class="commentary" style="margin-top:2.5em">Why not share a thought of your own?</p>
- <p><a href="/">Start a blog</a> and spread your ideas on <strong>{{.SiteName}}</strong>, a simple{{if .Federation}}, federated{{end}} blogging community.</p>
+ <p class="commentary" style="margin-top:2.5em">{{call .Tr "Why not share a thought of your own?"}}</p>
+ {{$str := print "a simple blogging community"}}{{if .Federation}}{{$str = print "a simple, federated blogging community"}}{{end}}
+ <p>{{call .Tr "%s and spread your ideas on **%s**, %s." true (variables "Start a blog;/" .SiteName $str)}}</p>
- <p><em>{{.SiteName}}</em> is home to <strong>{{largeNumFmt .AboutStats.NumPosts}}</strong> {{pluralize "article" "articles" .AboutStats.NumPosts}} across <strong>{{largeNumFmt .AboutStats.NumBlogs}}</strong> {{pluralize "blog" "blogs" .AboutStats.NumBlogs}}.</p>
+ {{ $POSTS := .AboutStats.NumPosts }}{{ if eq .AppCfg.Lang "eu_ES" }}{{ $POSTS = 1}}{{ end }}
+ {{ $BLOGS := .AboutStats.NumBlogs }}{{ if eq .AppCfg.Lang "eu_ES" }}{{ $BLOGS = 1}}{{ end }}
- <p><a href="https://writefreely.org">WriteFreely</a> is a self-hosted, decentralized blogging platform for publishing beautiful, simple blogs.</p>
- <p>It lets you publish a single blog, or host a community of writers who can create multiple blogs under one account. You can also enable federation, which allows people in the fediverse to follow your blog, bookmark your posts, and share them with others.</p>
+ <p>{{call .Tr "%s is a self-hosted, decentralized blogging platform for publishing beautiful, simple blogs." true (variables "WriteFreely;https://writefreely.org/")}}</p>
+ <p>{{call .Tr "It lets you publish a single blog, or host a community of writers who can create multiple blogs under one account. You can also enable federation, which allows people in the fediverse to follow your blog, bookmark your posts, and share them with others."}}</p>
$aliasSite.innerHTML = '{{ if .Federation }}@<strong>' + data.data + '</strong>@{{.FriendlyHost}}{{ else }}{{.FriendlyHost}}/<strong>' + data.data + '</strong>/{{ end }}';
} else {
if (genID === true) {
$alias.el.value = alias + "-" + randStr(4);
doneTyping();
return;
}
aliasOK = false;
$alias.setClass('error');
$aliasSite.className = 'error';
$aliasSite.textContent = data.error_msg;
}
}
}
http.send(JSON.stringify(params));
} else {
$aliasSite.className += ' demo';
$aliasSite.innerHTML = '{{ if .Federation }}@<strong>your-username</strong>@{{.FriendlyHost}}{{ else }}{{.FriendlyHost}}/<strong>your-username</strong>/{{ end }}';
$aliasSite.innerHTML = '{{ if .Federation }}@<strong>' + data.data + '</strong>@{{.FriendlyHost}}{{ else }}{{.FriendlyHost}}/<strong>' + data.data + '</strong>/{{ end }}';
} else {
aliasOK = false;
$alias.setClass('error');
$aliasSite.className = 'error';
$aliasSite.textContent = data.error_msg;
}
}
}
http.send(JSON.stringify(params));
} else {
$aliasSite.className += ' demo';
$aliasSite.innerHTML = '{{ if .Federation }}@<strong>your-username</strong>@{{.FriendlyHost}}{{ else }}{{.FriendlyHost}}/<strong>your-username</strong>/{{ end }}';
if name == "collection" || name == "collection-tags" || name == "collection-post" || name == "post" || name == "chorus-collection" || name == "chorus-collection-post" {
- <div class="alert success hidden" id="edited-elsewhere">This post has been updated elsewhere since you last published! <a href="#" id="erase-edit">Delete draft and reload</a>.</div>
+ <div class="alert success hidden" id="edited-elsewhere">{{call .Tr "This post has been updated elsewhere since you last published!"}} <a href="#" id="erase-edit">{{call .Tr "Delete draft and reload"}}</a>.</div>
<header id="tools">
<div id="clip">
{{if not .SingleUser}}<h1>{{if .Chorus}}<a href="/" title="Home">{{else}}<a href="/me/c/" title="View blogs">{{end}}{{.SiteName}}</a></h1>{{end}}
<p><a class="simple-cta" href="/#{{.Alias}}">Start writing</a>, or <a class="simple-cta" href="/me/c/{{.Alias}}">customize</a> your blog.</p>
<p>Check out our <a class="simple-cta" href="https://guides.write.as/writing/?pk_campaign=welcome">writing guide</a> to see what else you can do, and <a class="simple-cta" href="/contact">get in touch</a> anytime with questions or feedback.</p>
<p><a class="simple-cta" href="/#{{.Alias}}">Start writing</a>, or <a class="simple-cta" href="/me/c/{{.Alias}}">customize</a> your blog.</p>
<p>Check out our <a class="simple-cta" href="https://guides.write.as/writing/?pk_campaign=welcome">writing guide</a> to see what else you can do, and <a class="simple-cta" href="/contact">get in touch</a> anytime with questions or feedback.</p>
<p class="error" id="create-error">Date format should be: <span class="mono"><abbr title="The full year">YYYY</abbr>-<abbr title="The numeric month of the year, where January = 1, with a zero in front if less than 10">MM</abbr>-<abbr title="The day of the month, with a zero in front if less than 10">DD</abbr> <abbr title="The hour (00-23), with a zero in front if less than 10.">HH</abbr>:<abbr title="The minute of the hour (00-59), with a zero in front if less than 10.">MM</abbr>:<abbr title="The seconds (00-59), with a zero in front if less than 10.">SS</abbr></span></p>
- <select id="move-{{.ID}}" onchange="postActions.multiMove(this, '{{.ID}}', {{if $.SingleUser}}true{{else}}false{{end}})" title="Move this post to another blog">
+ <select id="move-{{.ID}}" onchange="postActions.multiMove(this, '{{.ID}}', {{if $.SingleUser}}true{{else}}false{{end}}, '{{$.Locales}}')" title="{{call $.Tr "Move this post to another blog"}}">
- {{if not $.Format.ShowDates}}<a class="user hidden action" href="{{if not $.SingleUser}}/{{$.Alias}}/{{.Slug.String}}{{else}}{{$.CanonicalURL}}{{.Slug.String}}{{end}}">view</a>{{end}}
- <a class="user hidden action" href="/{{if not $.SingleUser}}{{$.Alias}}/{{end}}{{.Slug.String}}/edit">edit</a>
- <select id="move-{{.ID}}" onchange="postActions.multiMove(this, '{{.ID}}', {{if $.SingleUser}}true{{else}}false{{end}})" title="Move this post to another blog">
+ <select id="move-{{.ID}}" onchange="postActions.multiMove(this, '{{.ID}}', {{if $.SingleUser}}true{{else}}false{{end}}, '{{$.Locales}}')" title="{{call $.Tr "Move this post to another blog"}}">
- <div class="alert success hidden" id="edited-elsewhere">This post has been updated elsewhere since you last published! <a href="#" id="erase-edit">Delete draft and reload</a>.</div>
+ <div class="alert success hidden" id="edited-elsewhere">{{call .Tr "This post has been updated elsewhere since you last published!"}} <a href="#" id="erase-edit">{{call .Tr "Delete draft and reload"}}</a>.</div>
<header id="tools">
<div id="clip">
- {{if not .SingleUser}}<h1><a href="/me/c/" title="View blogs"><img class="ic-24dp" src="/img/ic_blogs_dark@2x.png" /></a></h1>{{end}}
- <p>Enable blogs on this site to receive micro­pay­ments from readers via <a target="wm" href="https://webmonetization.org/">Web Monetization</a>.</p>
+ {{call .Tr "Monetization"}}
+ <p>{{call .Tr "Enable blogs on this site to receive micropayments from readers via %s." true (variables "Web Monetization;https://webmonetization.org/" )}}</p>
- <p class="docs">Still have questions? Read more details in the <a href="https://writefreely.org/docs/{{.OfficialVersion}}/admin/config">configuration docs</a>.</p>
- <p>Learn about latest releases on the <a href="https://blog.writefreely.org/tag:release" target="changelog-wf">WriteFreely blog</a> or <a href="https://discuss.write.as/c/writefreely/updates" target="forum-wf">forum</a>.</p>
+ <p>{{call .Tr "Learn about latest releases on the %s or %s." true (variables "Writefreely blog;https://blog.writefreely.org/tag:release" "forum;https://discuss.write.as/c/writefreely/updates" )}}</p>
{{else if not .UpdateAvailable}}
- <p class="intro"><span class="check">✓</span> WriteFreely is <strong>up to date</strong>.</p>
- <p class="intro">A new version of WriteFreely is available! <a href="{{.LatestReleaseURL}}" target="download-wf" style="font-weight: bold;">Get {{.LatestVersion}}</a></p>
- <p class="changelog">
- <a href="{{.LatestReleaseNotesURL}}" target="changelog-wf">Read the release notes</a> for details on features, bug fixes, and notes on upgrading from your current version, <strong>{{.Version}}</strong>.
+ <p class="changelog">{{call .Tr "Read the %s for details on features, bug fixes, and notes on upgrading from your current version, **%s**." true (variables $link2 .Version) }}</p>
- <p>Learn about latest releases on the <a href="https://blog.writefreely.org/tag:release" target="changelog-wf">WriteFreely blog</a> or <a href="https://discuss.write.as/c/writefreely/updates" target="forum-wf">forum</a>.</p>
+ <p class="intro disabled">{{call .Tr "Automated update checks are disabled."}}</p>
+ <p>{{call .Tr "Learn about latest releases on the %s or %s." true (variables "Writefreely blog;https://blog.writefreely.org/tag:release" "forum;https://discuss.write.as/c/writefreely/updates" )}}</p>
- <p class="content-desc">We suggest a header (e.g. <code># Welcome</code>), optionally followed by a small bit of text. Accepts Markdown and HTML.</p>
+ <p class="content-desc">{{call .Tr "We suggest a header (e.g. `# Welcome`), optionally followed by a small bit of text. Accepts Markdown and HTML." true}}</p>
- <p>They can use this new password to log in to their account. <strong>This will only be shown once</strong>, so be sure to copy it and send it to them now.</p>
- {{if .ClearEmail}}<p>Their email address is: <a href="mailto:{{.ClearEmail}}">{{.ClearEmail}}</a></p>{{end}}
+ <p>{{call .Tr "They can use this new password to log in to their account. **This will only be shown once**, so be sure to copy it and send it to them now." true}}</p>
- <p>Permanently erase all user data, with no way to recover it.</p>
+ <h3>{{call .Tr "Delete this user"}}</h3>
+ <p>{{call .Tr "Permanently erase all user data, with no way to recover it."}}</p>
</div>
- <button class="cta danger" onclick="prepareDeleteUser()">Delete this user...</button>
+ <button class="cta danger" onclick="prepareDeleteUser()">{{call .Tr "Delete this user"}}...</button>
</div>
</div>
{{end}}
</div>
<div id="modal-delete-user" class="modal">
- <h2>Are you sure?</h2>
+ <h2>{{call .Tr "Are you sure?"}}</h2>
<div class="body">
- <p style="text-align:left">This action <strong>cannot</strong> be undone. It will permanently erase all traces of this user, <strong>{{.User.Username}}</strong>, including their account information, blogs, and posts.</p>
- <p>Please type <strong>{{.User.Username}}</strong> to confirm.</p>
+ <p style="text-align:left">{{call .Tr "This action **cannot**be undone. It will permanently erase all traces of this user, **%s**, including their account information, blogs, and posts." true (variables .User.Username)}}</p>
+ <p>{{call .Tr "Please type **%s** to confirm." true (variables .User.Username)}}</p>
- return confirm("Silence this user? They'll still be able to log in and access their posts, but no one else will be able to see them anymore. You can reverse this decision at any time.");
+ return confirm({{call .Tr "Silence this user? They'll still be able to log in and access their posts, but no one else will be able to see them anymore. You can reverse this decision at any time."}});
}
form = document.getElementById("reset-form");
form.addEventListener('submit', function(e) {
e.preventDefault();
- agreed = confirm("Reset this user's password? This will generate a new temporary password that you'll need to share with them, and invalidate their old one.");
+ agreed = confirm({{call .Tr "Reset this user's password? This will generate a new temporary password that you'll need to share with them, and invalidate their old one."}});
- <select id="move-{{.ID}}" onchange="postActions.multiMove(this, '{{.ID}}', {{if $.SingleUser}}true{{else}}false{{end}})" title="Move this post to one of your blogs">
+ <select id="move-{{.ID}}" onchange="postActions.multiMove(this, '{{.ID}}', {{if $.SingleUser}}true{{else}}false{{end}})" title={{call .Tr "Move this post to one of your blogs"}}>
- <a class="action" href="/{{$el.ID}}" title="Publish this post to your blog '{{.DisplayTitle}}'" onclick="postActions.move(this, '{{$el.ID}}', '{{.Alias}}', {{if $.SingleUser}}true{{else}}false{{end}});return false">move to {{.DisplayTitle}}</a>
+ <a class="action" href="/{{$el.ID}}" title={{call $.Tr "Publish this post to your blog %s" true (variables .DisplayTitle)}} onclick="postActions.move(this, '{{$el.ID}}', '{{.Alias}}', {{if $.SingleUser}}true{{else}}false{{end}}, {{$.Locales}});return false">{{call $.Tr "move to %s" (variables .DisplayTitle)}}</a>
- <p>Your anonymous and draft posts will show up here once you've published some. You'll be able to share them individually (without a blog) or move them to a blog when you're ready.</p>
- {{if not .SingleUser}}<p>Alternatively, see your blogs and their posts on your <a href="/me/c/">Blogs</a> page.</p>{{end}}
+ <p>{{call .Tr "Your anonymous and draft posts will show up here once you've published some. You'll be able to share them individually (without a blog) or move them to a blog when you're ready."}}</p>
+ {{if not .SingleUser}}<p>{{call .Tr "Alternatively, see your blogs and their posts on your %s page." true (variables true "Blog;/me/c/")}}</p>{{end}}
- <p class="text-cta"><a href="{{if .SingleUser}}/me/new{{else}}/{{end}}">Start writing</a></p></div>{{ end }}
+ <p class="text-cta"><a href="{{if .SingleUser}}/me/new{{else}}/{{end}}">{{call .Tr "Start writing"}}</a></p></div>{{ end }}
- <select id="move-POST_ID" onchange="postActions.multiMove(this, 'POST_ID', {{if .SingleUser}}true{{else}}false{{end}})" title="Move this post to one of your blogs">
+ <select id="move-POST_ID" onchange="postActions.multiMove(this, 'POST_ID', {{if .SingleUser}}true{{else}}false{{end}}, {{$.Locales}})" title={{call .Tr "Move this post to one of your blogs"}}>
- <a class="action" href="/POST_ID" title="Publish this post to your blog '{{.DisplayTitle}}'" onclick="postActions.move(this, 'POST_ID', '{{.Alias}}', {{if $.SingleUser}}true{{else}}false{{end}});return false">move to {{.DisplayTitle}}</a>
+ <a class="action" href="/POST_ID" title={{call $.Tr "Publish this post to your blog %s" (variables .DisplayTitle)}} onclick="postActions.move(this, 'POST_ID', '{{.Alias}}', {{if $.SingleUser}}true{{else}}false{{end}}, {{$.Locales}});return false">{{call $.Tr "move to %s" (variables .DisplayTitle)}}</a>
var $pInfo = document.getElementById('unsynced-posts-info');
$pInfo.className = 'alert info';
var plural = n != 1;
$pInfo.innerHTML = '<p>You have <strong>'+n+'</strong> post'+(plural?'s that aren\'t':' that isn\'t')+' synced to your account yet. <a href="#" id="btn-sync">Sync '+(plural?'them':'it')+' now</a>.</p>';
var $noPosts = document.getElementById('no-posts-published');
- {{if eq .Alias .Username}}<p style="font-size: 0.8em">This blog uses your username in its URL{{if .Federation}} and fediverse handle{{end}}. You can change it in your <a href="/me/settings">Account Settings</a>.</p>{{end}}
+ {{if eq .Alias .Username}}<p style="font-size: 0.8em">{{if .Federation}}{{call .Tr "This blog uses your username in its URL and fediverse handle."}}{{else}}{{call .Tr "This blog uses your username in its URL."}}{{end}} {{call .Tr "You can change it in your %s." true (variables "Account Settings;/me/settings")}}</p>{{end}}
<ul style="list-style:none">
<li>
{{.FriendlyHost}}/<strong>{{.Alias}}</strong>/
</li>
<li>
<strong id="normal-handle-env" class="fedi-handle" {{if not .Federation}}style="display:none"{{end}}>@<span id="fedi-handle">{{.Alias}}</span>@<span id="fedi-domain">{{.FriendlyHost}}</span></strong>
- <p>This blog is visible to {{if .Private}}any registered user on this instance{{else}}anyone with its link{{end}}.</p>
+ <p>{{if .Private}}{{call .Tr "This blog is visible to any registered user on this instance."}}{{else}}{{call .Tr "This blog is visible to anyone with its link."}}{{end}}</p>
- <p>A password is required to read this blog.</p>
+ <p>{{call .Tr "A password is required to read this blog."}}</p>
</li>
{{if not .SingleUser}}
<li>
<label class="option-text{{if not .LocalTimeline}} disabled{{end}}"><input type="radio" name="visibility" id="visibility-public" value="1" {{if .IsPublic}}checked="checked"{{end}} {{if not .LocalTimeline}}disabled="disabled"{{end}} />
- Public
+ {{call .Tr "Public"}}
</label>
- {{if .LocalTimeline}}<p>This blog is displayed on the public <a href="/read">reader</a>, and is visible to {{if .Private}}any registered user on this instance{{else}}anyone with its link{{end}}.</p>
- {{else}}<p>The public reader is currently turned off for this community.</p>{{end}}
+ {{if .LocalTimeline}}<p>{{if .Private}}{{call .Tr "This blog is displayed on the public %s, and is visible to any registered user on this instance." true (variables "Reader;/read")}}{{else}}{{call .Tr "This blog is displayed on the public %s, and is visible to any registered user on this instance." true (variables "Reader;/read")}}{{end}}</p>
+ {{else}}<p>{{call .Tr "The public reader is currently turned off for this community."}}</p>{{end}}
</li>
{{end}}
</ul>
</div>
</div>
<div class="option">
- <h2>Display Format</h2>
+ <h2>{{call .Tr "Display Format"}}</h2>
<div class="section">
- <p class="explain">Customize how your posts display on your page.
+ <p class="explain">{{call .Tr "Customize how your posts display on your page."}}
- <p class="explain">See our guide on <a href="https://guides.write.as/customizing/#custom-css">customization</a>.</p>
+ <p class="explain">{{call .Tr "See our guide on %s." true (variables "customization;https://guides.write.as/customizing/#custom-css")}}</p>
</div>
</div>
<div class="option">
- <h2>Post Signature</h2>
+ <h2>{{call .Tr "Post Signature"}}</h2>
<div class="section">
- <p class="explain">This content will be added to the end of every post on this blog, as if it were part of the post itself. Markdown, HTML, and shortcodes are allowed.</p>
+ <p class="explain">{{call .Tr "This content will be added to the end of every post on this blog, as if it were part of the post itself. Markdown, HTML, and shortcodes are allowed."}}</p>
- <p class="explain">Web Monetization enables you to receive micropayments from readers that have a <a href="https://coil.com">Coil membership</a>. Add your payment pointer to enable Web Monetization on your blog.</p>
+ <p class="explain">{{call .Tr "Web Monetization enables you to receive micropayments from readers that have a %s. Add your payment pointer to enable Web Monetization on your blog." true (variables "Coil membership;https://coil.com")}}</p>
- <h2>Are you sure you want to delete this blog?</h2>
+ <h2>{{call .Tr "Are you sure you want to delete this blog?"}}</h2>
<div class="body short">
- <p style="text-align:left">This will permanently erase <strong>{{.DisplayTitle}}</strong> ({{.FriendlyHost}}/{{.Alias}}) from the internet. Any posts on this blog will be saved and made into drafts (found on your <a href="/me/posts/">Drafts</a> page).</p>
- <p>If you're sure you want to delete this blog, enter its name in the box below and press <strong>Delete</strong>.</p>
+ <p style="text-align:left">{{call .Tr "This will permanently erase <strong>{{.DisplayTitle}}</strong> ({{.FriendlyHost}}/{{.Alias}}) from the internet. Any posts on this blog will be saved and made into drafts (found on your %s page)." true (variables true "Draft;/me/posts/")}}</p>
+ <p>{{call .Tr "If you're sure you want to delete this blog, enter its name in the box below and press **%s**." true (variables "Delete")}}</p>
- <p><strong>Your account has been silenced.</strong> You can still access all of your posts and blogs, but no one else can currently see them.</p>
+ <p><strong>{{call .Tr "Your account has been silenced."}}</strong> {{call .Tr "You can still access all of your posts and blogs, but no one else can currently see them."}}</p>
+ <h1>{{call .Tr "Invite to %s" (variables .SiteName)}}</h1>
{{ if .Expired }}
- <p style="font-style: italic">This invite link is expired.</p>
+ <p style="font-style: italic">{{call .Tr "This invite link is expired."}}</p>
{{ else }}
- <p>Copy the link below and send it to anyone that you want to join <em>{{ .SiteName }}</em>. You could paste it into an email, instant message, text message, or write it down on paper. Anyone who navigates to this special page will be able to create an account.</p>
+ <p>{{call .Tr "Copy the link below and send it to anyone that you want to join *%s*. You could paste it into an email, instant message, text message, or write it down on paper. Anyone who navigates to this special page will be able to create an account." true (variables .SiteName)}}</p>
- {{if eq .Invite.MaxUses.Int64 1}}Only <strong>one</strong> user{{else}}Up to <strong>{{.Invite.MaxUses.Int64}}</strong> users{{end}} can sign up with this link.
- It can be used as many times as you like{{if .Invite.Expires}} before <strong>{{.Invite.ExpiresFriendly}}</strong>, when it expires{{end}}.
+ {{call .Tr "It can be used as many times as you like"}}{{if .Invite.Expires}} {{call .Tr "before **%s**, when it expires" true (variables .Invite.ExpiresFriendly)}}{{end}}.
- <p class="introduction">Please add an <strong>email address</strong> and/or <strong>passphrase</strong> so you can log in again later.</p>
+ <p class="introduction">{{call .Tr "Please add an **%s** and/or **%s** so you can log in again later." true (variables "email address" "passphrase")}}</p>
</div>
{{ else }}
<div>
- <p>Change your account settings here.</p>
+ <p>{{call .Tr "Change your account settings here."}}</p>
+ {{if and (not .HasPass) (not .IsLogOut)}}<div class="alert info"><p>{{call .Tr "Add a passphrase to easily log in to your account."}}</p></div>{{end}}
- <p>Permanently erase all your data, with no way to recover it.</p>
+ <h3>{{call .Tr "Delete your account"}}</h3>
+ <p>{{call .Tr "Permanently erase all your data, with no way to recover it."}}</p>
</div>
- <button class="cta danger" onclick="prepareDeleteUser()">Delete your account...</button>
+ <button class="cta danger" onclick="prepareDeleteUser()">{{call .Tr "Delete your account"}}...</button>
</div>
</div>
{{end}}
</div>
<div id="modal-delete-user" class="modal">
- <h2>Are you sure?</h2>
+ <h2>{{call .Tr "Are you sure?"}}</h2>
<div class="body">
- <p style="text-align:left">This action <strong>cannot</strong> be undone. It will immediately and permanently erase your account, including your blogs and posts. Before continuing, you might want to <a href="/me/export">export your data</a>.</p>
- <p>If you're sure, please type <strong>{{.Username}}</strong> to confirm.</p>
+ <p style="text-align:left">{{call .Tr "This action **cannot** be undone. It will immediately and permanently erase your account, including your blogs and posts. Before continuing, you might want to %s." true (variables "export your data;/me/export")}}</p>
+ <p>{{call .Tr "If you're sure, please type **%s** to confirm." true (variables .Username)}}</p>
+ {{if not .Collection}}<th>{{call .Tr "Blog"}}</th>{{end}}
+ <th class="num">{{call .Tr "Total Views"}}</th>
</tr>
{{range .TopPosts}}<tr>
- <td style="word-break: break-all;"><a href="{{if .Collection}}{{.Collection.CanonicalURL}}{{.Slug.String}}{{else}}/{{.ID}}{{end}}">{{if ne .DisplayTitle ""}}{{.DisplayTitle}}{{else}}<em>{{.ID}}</em>{{end}}</a></td>
- {{ if not $.Collection }}<td>{{if .Collection}}<a href="{{.Collection.CanonicalURL}}">{{.Collection.Title}}</a>{{else}}<em>Draft</em>{{end}}</td>{{ end }}
+ <td style="word-break: break-all;"><a href="{{if .Collection}}{{.Collection.CanonicalURL}}{{.Slug.String}}{{else}}/{{.ID}}{{end}}">{{if ne .Title.String ""}}{{.Title.String}}{{else}}<em>{{.ID}}</em>{{end}}</a></td>
+ {{ if not $.Collection }}<td>{{if .Collection}}<a href="{{.Collection.CanonicalURL}}">{{.Collection.Title}}</a>{{else}}<em>{{call .Tr "Draft"}}</em>{{end}}</td>{{ end }}