diff --git a/app/Http/Controllers/SpaController.php b/app/Http/Controllers/SpaController.php
index ca4eb93b..d92cdc37 100644
--- a/app/Http/Controllers/SpaController.php
+++ b/app/Http/Controllers/SpaController.php
@@ -9,6 +9,7 @@ use League\CommonMark\CommonMarkConverter;
use App\Services\AccountService;
use App\Services\StatusService;
use App\Services\SnowflakeService;
+use App\Util\Localization\Localization;
class SpaController extends Controller
{
@@ -68,6 +69,25 @@ class SpaController extends Controller
return redirect('404');
}
+ public function updateLanguage(Request $request)
+ {
+ $this->validate($request, [
+ 'v' => 'required|in:0.1,0.2',
+ 'l' => 'required|alpha_dash|max:5'
+ ]);
+
+ $lang = $request->input('l');
+ $user = $request->user();
+
+ abort_if(!in_array($lang, Localization::languages()), 400);
+
+ $user->language = $lang;
+ $user->save();
+ session()->put('locale', $lang);
+
+ return ['language' => $lang];
+ }
+
public function getPrivacy()
{
$body = $this->markdownToHtml('views/page/privacy.md');
diff --git a/public/_lang/ar.json b/public/_lang/ar.json
index 7cffaae5..b947afa6 100644
--- a/public/_lang/ar.json
+++ b/public/_lang/ar.json
@@ -1,144 +1,144 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "comment": "\u062a\u064e\u0639\u0644\u064a\u0642",
+ "commented": "\u0639\u0644\u0651\u064e\u0642\u062a\u064e \u0639\u0644\u064a\u0647",
+ "comments": "\u062a\u064e\u0639\u0644\u064a\u0642\u0627\u062a",
+ "like": "\u0625\u0639\u062c\u0627\u0628",
+ "liked": "\u0623\u064f\u0639\u062c\u0650\u0628\u062a\u064e \u0628\u0650\u0647",
+ "likes": "\u0625\u0639\u0652\u062c\u0627\u0628\u0627\u062a",
+ "share": "\u0645\u064f\u0634\u0627\u0631\u064e\u0643\u064e\u0629",
+ "shared": "\u062a\u0645\u0651\u064e \u0645\u064f\u0634\u0627\u0631\u064e\u0643\u064e\u062a\u064f\u0647",
+ "shares": "\u0645\u064f\u0634\u0627\u0631\u064e\u0643\u064e\u0627\u062a",
+ "unshare": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u064f\u0634\u0627\u0631\u064e\u0643\u064e\u0629",
+ "cancel": "\u0625\u0644\u063a\u0627\u0621",
+ "copyLink": "\u0646\u064e\u0633\u062e \u0627\u0644\u0631\u0627\u0628\u0650\u0637",
+ "delete": "\u062d\u064e\u0630\u0641",
+ "error": "\u062e\u0637\u0623",
+ "errorMsg": "\u062d\u064e\u062f\u064e\u062b\u064e \u062e\u0637\u0623\u064c \u0645\u0627. \u064a\u064f\u0631\u062c\u0649 \u0627\u0644\u0645\u064f\u062d\u0627\u0648\u0644\u0629\u064f \u0645\u0631\u0629\u064b \u0623\u064f\u062e\u0631\u0649 \u0644\u0627\u062d\u0650\u0642\u064b\u0627.",
+ "oops": "\u0627\u0644\u0645\u064e\u0639\u0630\u0650\u0631\u064e\u0629!",
+ "other": "\u0627\u064f\u062e\u0631\u0649",
+ "readMore": "\u0642\u0631\u0627\u0621\u0629\u064f \u0627\u0644\u0645\u0632\u064a\u062f",
+ "success": "\u0646\u064e\u062c\u0627\u062d",
+ "sensitive": "\u062d\u0633\u0651\u064e\u0627\u0633",
+ "sensitiveContent": "\u0645\u064f\u062d\u062a\u064e\u0648\u064b\u0649 \u062d\u0633\u0651\u064e\u0627\u0633",
+ "sensitiveContentWarning": "\u0642\u062f \u064a\u062d\u062a\u0648\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u064e\u0646\u0634\u0648\u0631 \u0639\u0644\u0649 \u0645\u064f\u062d\u062a\u0648\u064b\u0649 \u062d\u0633\u0651\u064e\u0627\u0633"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "\u0634\u064f\u0631\u0648\u0637\u064f \u0627\u0644\u0627\u0650\u0633\u062a\u0650\u062e\u062f\u0627\u0645",
+ "privacy": "\u0633\u0650\u064a\u0627\u0633\u064e\u0629\u064f \u0627\u0644\u062e\u064f\u0635\u0648\u0635\u064a\u0651\u064e\u0629"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
- "drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
- "privacy": "Privacy",
- "terms": "Terms",
- "backToPreviousDesign": "Go back to previous design"
+ "search": "\u0627\u0644\u0628\u064e\u062d\u062b",
+ "admin": "\u0644\u0648\u062d\u064e\u0629\u064f \u062a\u064e\u062d\u0643\u0651\u064f\u0645\u0650 \u0627\u0644\u0645\u064f\u0634\u0631\u0650\u0641",
+ "homeFeed": "\u0627\u0644\u062a\u0651\u064e\u063a\u0630\u064a\u064e\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064e\u0629",
+ "localFeed": "\u0627\u0644\u062a\u0651\u064e\u063a\u0630\u064a\u064e\u0629 \u0627\u0644\u0645\u062d\u0644\u064a\u0651\u064e\u0629",
+ "globalFeed": "\u0627\u0644\u062a\u0651\u064e\u063a\u0630\u064a\u064e\u0629 \u0627\u0644\u0634\u0651\u0627\u0645\u0650\u0644\u0629",
+ "discover": "\u0627\u0644\u0627\u0650\u0633\u062a\u0650\u0643\u0634\u0627\u0641",
+ "directMessages": "\u0627\u0644\u0631\u0633\u0627\u0626\u0650\u0644\u064f \u0627\u0644\u0645\u064f\u0628\u0627\u0634\u0650\u0631\u064e\u0629",
+ "notifications": "\u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a",
+ "groups": "\u0627\u0644\u0645\u064e\u062c\u0645\u064f\u0648\u0639\u0627\u062a",
+ "stories": "\u0627\u0644\u0642\u064e\u0635\u064e\u0635",
+ "profile": "\u0627\u0644\u0645\u0650\u0644\u0641 \u0627\u0644\u062a\u0651\u064e\u0639\u0631\u064a\u0641\u064a\u0651",
+ "drive": "\u0648\u0650\u062d\u062f\u064e\u0629\u064f \u0627\u0644\u062a\u0651\u064e\u062e\u0632\u064a\u0646",
+ "settings": "\u0627\u0644\u0625\u0639\u062f\u064e\u0627\u062f\u064e\u0627\u062a",
+ "compose": "\u0625\u0646\u0634\u0627\u0621\u064f \u062c\u064e\u062f\u064a\u062f",
+ "about": "\u062d\u064e\u0648\u0644",
+ "help": "\u0627\u0644\u0645\u064f\u0633\u0627\u0639\u064e\u062f\u064e\u0629",
+ "language": "\u0627\u0644\u0644\u0651\u064f\u063a\u064e\u0629",
+ "privacy": "\u0627\u0644\u062e\u064f\u0635\u064f\u0648\u0635\u0650\u064a\u0651\u064e\u0629",
+ "terms": "\u0627\u0644\u0634\u0651\u064f\u0631\u064f\u0648\u0637",
+ "backToPreviousDesign": "\u0627\u0644\u0639\u0648\u062f\u0629 \u0625\u0644\u0649 \u0627\u0644\u062a\u0635\u0645\u064a\u0645 \u0627\u0644\u0633\u0627\u0628\u0642"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "\u0635\u064e\u0646\u062f\u0648\u0642\u064f \u0627\u0644\u0648\u0627\u0631\u0650\u062f",
+ "sent": "\u0623\u064f\u0631\u0633\u0650\u0644\u064e\u062a",
+ "requests": "\u0627\u0644\u0637\u0651\u064e\u0644\u064e\u0628\u0627\u062a"
},
"notifications": {
- "liked": "liked your",
- "commented": "commented on your",
- "reacted": "reacted to your",
- "shared": "shared your",
- "tagged": "tagged you in a",
- "updatedA": "updated a",
- "sentA": "sent a",
- "followed": "followed",
- "mentioned": "mentioned",
- "you": "you",
- "yourApplication": "Your application to join",
- "applicationApproved": "was approved!",
- "applicationRejected": "was rejected. You can re-apply to join in 6 months.",
- "dm": "dm",
- "groupPost": "group post",
- "modlog": "modlog",
- "post": "post",
- "story": "story"
+ "liked": "\u0623\u064f\u0639\u062c\u0650\u0628\u064e \u0628\u0650\u0645\u0646\u0634\u0648\u0631\u064d \u0644\u064e\u0643",
+ "commented": "\u0639\u0644\u0651\u064e\u0642\u064e \u0639\u0644\u0649 \u0645\u064e\u0646\u0634\u0648\u0631\u064d \u0644\u064e\u0643",
+ "reacted": "\u062a\u064e\u0641\u0627\u0639\u064e\u0644\u064e \u0645\u064e\u0639\u064e\u0643",
+ "shared": "\u0634\u064e\u0627\u0631\u064e\u0643\u064e \u0645\u064e\u0646\u0634\u0648\u0631\u064d \u0644\u064e\u0643",
+ "tagged": "\u0623\u0634\u0627\u0631\u064e \u0625\u0644\u064a\u0643\u064e \u0641\u0650\u064a",
+ "updatedA": "\u062d\u064e\u062f\u0651\u064e\u062b\u064e",
+ "sentA": "\u0623\u0631\u0633\u064e\u0644\u064e",
+ "followed": "\u062a\u0627\u0628\u064e\u0639\u064e",
+ "mentioned": "\u0623\u0634\u0627\u0631\u064e \u0625\u0644\u0649",
+ "you": "\u0623\u0646\u062a",
+ "yourApplication": "\u0637\u0644\u0628\u064f\u0643\u064e \u0644\u0644\u0627\u0646\u0636\u0650\u0645\u0627\u0645",
+ "applicationApproved": "\u062a\u0645\u0651\u064e\u062a \u0627\u0644\u0645\u0648\u0627\u0641\u0642\u0629 \u0639\u0644\u064a\u0647!",
+ "applicationRejected": "\u062a\u0645\u0651\u064e \u0631\u0641\u0636\u0647. \u064a\u064f\u0645\u0643\u0650\u0646\u064f\u0643\u064e \u0627\u0644\u062a\u0642\u062f\u064f\u0645\u064f \u0628\u0637\u0644\u0628\u064d \u062c\u062f\u064a\u062f\u064d \u0644\u0644\u0627\u0646\u0636\u0645\u0627\u0645 \u0628\u0639\u062f 6 \u0634\u0647\u0648\u0631.",
+ "dm": "\u0627\u0644\u0631\u0633\u0627\u0626\u0650\u0644 \u0627\u0644\u0645\u064f\u0628\u0627\u0634\u0650\u0631\u064e\u0629",
+ "groupPost": "\u0645\u064e\u0646\u0634\u0648\u0631 \u0645\u064e\u062c\u0645\u0648\u0639\u064e\u0629",
+ "modlog": "\u0633\u062c\u0644\u0627\u062a \u0627\u0644\u0645\u064f\u0634\u0631\u0650\u0641",
+ "post": "\u0645\u064e\u0646\u0634\u0648\u0631",
+ "story": "\u0642\u064e\u0635\u0651\u064e\u0629"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "\u0627\u0644\u0645\u064f\u0634\u0627\u0631\u0643\u0629 \u0645\u064e\u0639\u064e \u0627\u0644\u0645\u064f\u062a\u0627\u0628\u0650\u0639\u064a\u0646",
+ "shareToOther": "\u0627\u0644\u0645\u064f\u0634\u0627\u0631\u064e\u0643\u064e\u0629 \u0645\u064e\u0639\u064e \u0627\u0644\u0622\u062e\u0631\u064a\u0646",
+ "noLikes": "\u0644\u0627 \u0625\u0639\u062c\u0627\u0628\u0627\u062a \u062d\u062a\u0651\u064e\u0649 \u0627\u0644\u0622\u0646",
+ "uploading": "\u0627\u0644\u0631\u0651\u064e\u0641\u0639\u064f \u062c\u0627\u0631\u064d"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "posts": "\u0627\u0644\u0645\u064e\u0646\u0634\u064f\u0648\u0631\u0627\u062a",
+ "followers": "\u0627\u0644\u0645\u064f\u062a\u0627\u0628\u0650\u0639\u064f\u0648\u0646",
+ "following": "\u0627\u0644\u0645\u064f\u062a\u0627\u0628\u064e\u0639\u064f\u0648\u0646",
+ "admin": "\u0645\u064f\u0634\u0631\u0650\u0641",
+ "collections": "\u062a\u064e\u062c\u0645\u064a\u0639\u0627\u062a",
+ "follow": "\u0645\u064f\u062a\u0627\u0628\u064e\u0639\u064e\u0629",
+ "unfollow": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u064f\u062a\u0627\u0628\u064e\u0639\u064e\u0629",
+ "editProfile": "\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0645\u0650\u0644\u064e\u0641 \u0627\u0644\u062a\u0651\u064e\u0639\u0631\u064a\u0641\u064a",
+ "followRequested": "\u0637\u064f\u0644\u0650\u0628\u064e\u062a \u0627\u0644\u0645\u064f\u062a\u0627\u0628\u064e\u0639\u064e\u0629",
+ "joined": "\u0627\u0646\u0636\u064e\u0645"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
- "selectOneOption": "Select one of the following options",
- "unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
- "markAsSpammerText": "Unlist + CW existing and future posts",
- "spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
- "impersonation": "Impersonation",
- "scamOrFraud": "Scam or Fraud",
- "confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
- "toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
- "embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "viewPost": "\u0639\u064e\u0631\u0636 \u0627\u0644\u0645\u064e\u0646\u0634\u0648\u0631",
+ "viewProfile": "\u0639\u064e\u0631\u0636 \u0627\u0644\u0645\u0650\u0644\u0641 \u0627\u0644\u062a\u0639\u0631\u064a\u0641\u064a",
+ "moderationTools": "\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0625\u0634\u0631\u0627\u0641",
+ "report": "\u0625\u0628\u0644\u0627\u063a",
+ "archive": "\u0623\u0631\u0634\u064e\u0641\u064e\u0629",
+ "unarchive": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0623\u0631\u0634\u064e\u0641\u064e\u0629",
+ "embed": "\u062a\u0636\u0645\u064a\u0646",
+ "selectOneOption": "\u062d\u062f\u0651\u0650\u062f \u0623\u062d\u062f\u064e \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a\u0650 \u0627\u0644\u062a\u0627\u0644\u0650\u064a\u064e\u0629",
+ "unlistFromTimelines": "\u0627\u0644\u0627\u0633\u062a\u062b\u0646\u0627\u0621 \u0645\u0646 \u0642\u0648\u0627\u0626\u0650\u0645 \u0627\u0644\u062e\u064f\u0637\u064f\u0648\u0637 \u0627\u0644\u0632\u0645\u0646\u064a\u0651\u064e\u0629",
+ "addCW": "\u0625\u0636\u0627\u0641\u0629 \u062a\u062d\u0630\u064a\u0631 \u0645\u064f\u062d\u062a\u0648\u0649",
+ "removeCW": "\u062d\u0630\u0641 \u062a\u062d\u0630\u064a\u0631 \u0627\u0644\u0645\u064f\u062d\u062a\u0648\u0649",
+ "markAsSpammer": "\u062a\u064e\u0639\u0644\u064a\u0645 \u0643\u064e\u063a\u064a\u0631 \u0645\u064e\u0631\u063a\u064f\u0648\u0628\u064d \u0628\u0650\u0647",
+ "markAsSpammerText": "\u0627\u0644\u0627\u0633\u062a\u062b\u0650\u0646\u0627\u0621 \u0645\u0650\u0646\u064e \u0627\u0644\u0642\u0648\u0627\u0626\u0650\u0645 + \u0625\u0636\u0627\u0641\u0629 \u062a\u062d\u0630\u064a\u0631 \u0645\u064f\u062d\u062a\u0648\u0649 \u0644\u0650\u0644\u0645\u064f\u0634\u0627\u0631\u064e\u0643\u064e\u0627\u062a \u0627\u0644\u062d\u0627\u0644\u064a\u0651\u064e\u0629 \u0648\u064e\u0627\u0644\u0645\u064f\u0633\u062a\u064e\u0642\u0628\u064e\u0644\u064a\u0651\u064e\u0629",
+ "spam": "\u063a\u064a\u0631 \u0645\u064e\u0631\u063a\u0648\u0628 \u0628\u0650\u0647",
+ "sensitive": "\u0645\u064f\u062d\u062a\u064e\u0648\u064b\u0649 \u062d\u0633\u0651\u064e\u0627\u0633",
+ "abusive": "\u0645\u064f\u0633\u064a\u0621\u064c \u0623\u0648 \u0636\u0627\u0631",
+ "underageAccount": "\u062d\u0650\u0633\u0627\u0628\u064c \u062f\u0648\u0646\u064e \u0627\u0644\u0633\u0651\u0650\u0646",
+ "copyrightInfringement": "\u0627\u0650\u0646\u062a\u0650\u0647\u0627\u0643\u064f \u062d\u064f\u0642\u064f\u0648\u0642",
+ "impersonation": "\u0627\u0650\u0646\u062a\u0650\u062d\u0627\u0644\u064f \u0634\u064e\u062e\u0635\u064a\u0651\u064e\u0629",
+ "scamOrFraud": "\u0646\u064e\u0635\u0628\u064c \u0623\u0648 \u0627\u0650\u062d\u062a\u0650\u064a\u0627\u0644",
+ "confirmReport": "\u062a\u0623\u0643\u064a\u062f\u064f \u0627\u0644\u0628\u064e\u0644\u0627\u063a",
+ "confirmReportText": "\u0647\u0644 \u0623\u0646\u062a\u064e \u0645\u064f\u062a\u0623\u0643\u0651\u0650\u062f\u064c \u0645\u0650\u0646 \u0631\u064e\u063a\u0628\u064e\u062a\u0650\u0643\u064e \u0641\u0650\u064a \u0627\u0644\u0625\u0628\u0644\u0627\u063a\u0650 \u0639\u064e\u0646 \u0647\u064e\u0630\u064e\u0627 \u0627\u0644\u0645\u064e\u0646\u0634\u0648\u0631\u061f",
+ "reportSent": "\u0623\u064f\u0631\u0633\u0650\u0644\u064e \u0627\u0644\u0628\u064e\u0644\u0627\u063a!",
+ "reportSentText": "\u0644\u0642\u062f \u062a\u0644\u0642\u064a\u0646\u0627 \u0628\u064e\u0644\u0627\u063a\u064f\u0643\u064e \u0628\u0650\u0646\u062c\u0627\u062d.",
+ "reportSentError": "\u0637\u064e\u0631\u064e\u0623 \u062e\u064e\u0644\u064e\u0644\u064c \u0623\u062b\u0646\u0627\u0621\u064f \u0627\u0644\u0625\u0628\u0644\u0627\u063a\u0650 \u0639\u064e\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u064e\u0646\u0634\u0648\u0631.",
+ "modAddCWConfirm": "\u0647\u0644 \u0623\u0646\u062a\u064e \u0645\u064f\u062a\u0623\u0643\u0651\u0650\u062f\u064c \u0645\u0650\u0646 \u0631\u064e\u063a\u0628\u064e\u062a\u0650\u0643\u064e \u0641\u0650\u064a \u0625\u0636\u0627\u0641\u064e\u0629\u0650 \u062a\u064e\u062d\u0630\u064a\u0631\u064d \u0644\u0644\u0645\u064f\u062d\u062a\u064e\u0648\u0649 \u0639\u064e\u0644\u0649 \u0647\u064e\u0630\u064e\u0627 \u0627\u0644\u0645\u064e\u0646\u0634\u064f\u0648\u0631\u061f",
+ "modCWSuccess": "\u0623\u064f\u0636\u064a\u0641\u064e \u062a\u064e\u062d\u0630\u064a\u0631\u064f \u0627\u0644\u0645\u064f\u062d\u062a\u064e\u0648\u0649 \u0628\u0650\u0646\u064e\u062c\u0627\u062d",
+ "modRemoveCWConfirm": "\u0647\u064e\u0644 \u0623\u0646\u062a\u064e \u0645\u064f\u062a\u0623\u0643\u0651\u0650\u062f\u064c \u0645\u0650\u0646 \u0631\u064e\u063a\u0628\u064e\u062a\u0650\u0643\u064e \u0641\u0650\u064a \u0625\u0632\u0627\u0644\u064e\u0629\u0650 \u062a\u064e\u062d\u0630\u064a\u0631\u0650 \u0627\u0644\u0645\u064f\u062d\u062a\u064e\u0648\u0649 \u0645\u0650\u0646 \u0639\u064e\u0644\u0649 \u0647\u064e\u0630\u064e\u0627 \u0627\u0644\u0645\u064e\u0646\u0634\u064f\u0648\u0631\u061f",
+ "modRemoveCWSuccess": "\u0623\u064f\u0632\u064a\u0644\u064e \u062a\u064e\u062d\u0630\u064a\u0631\u064f \u0627\u0644\u0645\u064f\u062d\u062a\u064e\u0648\u0649 \u0628\u0650\u0646\u064e\u062c\u0627\u062d",
+ "modUnlistConfirm": "\u0647\u0644 \u0623\u0646\u062a\u064e \u0645\u064f\u062a\u0623\u0643\u0651\u0650\u062f\u064c \u0645\u0650\u0646 \u0631\u064e\u063a\u0628\u064e\u062a\u0650\u0643\u064e \u0641\u0650\u064a \u0627\u0650\u0633\u062a\u0650\u062b\u0646\u0627\u0621\u0650 \u0647\u064e\u0630\u064e\u0627 \u0627\u0644\u0645\u064e\u0646\u0634\u064f\u0648\u0631\u0650 \u0645\u0650\u0646\u064e \u0627\u0644\u0642\u0627\u0626\u0650\u0645\u064e\u0629 (\u062c\u064e\u0639\u0644\u064e\u0647\u064f \u063a\u064e\u064a\u0631\u064f \u0645\u064f\u062f\u0631\u064e\u062c)\u061f",
+ "modUnlistSuccess": "\u0627\u064f\u0633\u062a\u064f\u062b\u0646\u0650\u064a\u064e \u0627\u0644\u0645\u064e\u0646\u0634\u064f\u0648\u0631\u064f \u0628\u0650\u0646\u064e\u062c\u0627\u062d",
+ "modMarkAsSpammerConfirm": "\u0647\u064e\u0644 \u0623\u0646\u062a\u064e \u0645\u064f\u062a\u0623\u0643\u0651\u0650\u062f\u064c \u0645\u0650\u0646 \u0631\u064e\u063a\u0628\u064e\u062a\u0650\u0643\u064e \u0641\u0650\u064a \u062a\u064e\u0639\u0644\u064a\u0645\u0650 \u0647\u0630\u0627 \u0627\u0644\u0645\u064f\u0633\u062a\u064e\u062e\u062f\u0650\u0645\u0650 \u0643\u064e\u0646\u0627\u0634\u0650\u0631\u064d \u0644\u0650\u0645\u064e\u0646\u0634\u064f\u0648\u0631\u0627\u062a\u064d \u063a\u064a\u0631\u0650 \u0645\u064e\u0631\u063a\u0648\u0628\u064d \u0641\u0650\u064a\u0647\u0627\u061f \u0633\u0648\u0641 \u064a\u064f\u0644\u063a\u0649 \u0625\u062f\u0631\u0627\u062c\u064f \u062c\u064e\u0645\u064a\u0639\u0650 \u0645\u064e\u0646\u0634\u0648\u0631\u0627\u062a\u0650\u0647\u0650 \u0627\u0644\u062d\u0627\u0644\u064a\u0651\u064e\u0629\u0650 \u0648\u064e\u0627\u0644\u0645\u064f\u0633\u062a\u064e\u0642\u0628\u064e\u0644\u064a\u0651\u064e\u0629\u0650 \u0645\u0650\u0646\u064e \u0627\u0644\u062e\u064f\u0637\u064f\u0648\u0637\u0650 \u0627\u0644\u0632\u064e\u0645\u0646\u064a\u0651\u064e\u0629\u0650 \u0648\u064e\u0633\u0648\u0641 \u064a\u064f\u0637\u0628\u0651\u064e\u0642\u064f \u062a\u064e\u062d\u0630\u064a\u0631\u064f \u0627\u0644\u0645\u064f\u062d\u062a\u064e\u0648\u064e\u0649 \u0639\u064e\u0644\u064a\u0647\u0627.",
+ "modMarkAsSpammerSuccess": "\u0639\u064f\u0644\u0651\u0650\u0645\u064e \u0627\u0644\u0645\u064f\u0633\u062a\u064e\u062e\u062f\u0650\u0645\u064f \u0643\u064e\u0646\u0627\u0634\u0650\u0631\u064d \u0644\u0650\u0645\u064e\u0646\u0634\u064f\u0648\u0631\u0627\u062a\u064d \u063a\u064a\u0631\u0650 \u0645\u064e\u0631\u063a\u0648\u0628\u064d \u0641\u0650\u064a\u0647\u0627 \u0628\u0650\u0646\u064e\u062c\u0627\u062d",
+ "toFollowers": "\u0625\u0644\u064e\u0649 \u0627\u0644\u0645\u064f\u062a\u064e\u0627\u0628\u0650\u0639\u064a\u0646",
+ "showCaption": "\u0639\u064e\u0631\u0636\u064f \u0627\u0644\u062a\u064e\u0639\u0644\u064a\u0642\u0650 \u0627\u0644\u062a\u064e\u0648\u0636\u064a\u062d\u064a",
+ "showLikes": "\u0625\u0638\u0647\u0627\u0631\u064f \u0627\u0644\u0625\u0639\u062c\u0627\u0628\u0627\u062a",
+ "compactMode": "\u0627\u0644\u0648\u064e\u0636\u0639 \u0627\u0644\u0645\u064e\u0636\u063a\u0648\u0637",
+ "embedConfirmText": "\u0628\u0627\u0650\u0633\u062a\u0650\u062e\u062f\u0627\u0645\u0650\u0643\u064e \u0644\u0650\u0647\u0630\u0627 \u0627\u0644\u062a\u0651\u064e\u0636\u0645\u064a\u0646\u060c \u0623\u0646\u062a\u064e \u062a\u064f\u0648\u0627\u0641\u0650\u0642\u064f \u0639\u064e\u0644\u064e\u0649",
+ "deletePostConfirm": "\u0647\u064e\u0644 \u0623\u0646\u062a\u064e \u0645\u064f\u062a\u0623\u0643\u0651\u0650\u062f\u064c \u0645\u0650\u0646 \u0631\u064e\u063a\u0628\u064e\u062a\u0650\u0643\u064e \u0641\u0650\u064a \u062d\u064e\u0630\u0641\u0650 \u0647\u064e\u0630\u064e\u0627 \u0627\u0644\u0645\u064e\u0646\u0634\u064f\u0648\u0631\u061f",
+ "archivePostConfirm": "\u0647\u064e\u0644 \u0623\u0646\u062a\u064e \u0645\u064f\u062a\u0623\u0643\u0651\u0650\u062f\u064c \u0645\u0650\u0646 \u0631\u064e\u063a\u0628\u064e\u062a\u0650\u0643\u064e \u0641\u0650\u064a \u0623\u0631\u0634\u064e\u0641\u064e\u0629\u0650 \u0647\u064e\u0630\u064e\u0627 \u0627\u0644\u0645\u064e\u0646\u0634\u064f\u0648\u0631\u061f",
+ "unarchivePostConfirm": "\u0647\u064e\u0644 \u0623\u0646\u062a\u064e \u0645\u064f\u062a\u0623\u0643\u0651\u0650\u062f\u064c \u0645\u0650\u0646 \u0631\u064e\u063a\u0628\u064e\u062a\u0650\u0643\u064e \u0641\u0650\u064a \u0625\u0644\u063a\u0627\u0621\u0650 \u0623\u0631\u0634\u064e\u0641\u064e\u0629\u0650 \u0647\u064e\u0630\u064e\u0627 \u0627\u0644\u0645\u064e\u0646\u0634\u064f\u0648\u0631\u061f"
},
"story": {
- "add": "Add Story"
+ "add": "\u0625\u0636\u0627\u0641\u064e\u0629\u064f \u0642\u064e\u0635\u0651\u064e\u0629"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "\u0623\u0634\u062e\u0627\u0635\u064c \u0642\u064e\u062f \u062a\u064e\u0639\u0631\u0650\u0641\u064f\u0647\u064f\u0645"
}
}
\ No newline at end of file
diff --git a/public/_lang/bn.json b/public/_lang/bn.json
new file mode 100644
index 00000000..7cffaae5
--- /dev/null
+++ b/public/_lang/bn.json
@@ -0,0 +1,144 @@
+{
+ "common": {
+ "comment": "Comment",
+ "commented": "Commented",
+ "comments": "Comments",
+ "like": "Like",
+ "liked": "Liked",
+ "likes": "Likes",
+ "share": "Share",
+ "shared": "Shared",
+ "shares": "Shares",
+ "unshare": "Unshare",
+ "cancel": "Cancel",
+ "copyLink": "Copy Link",
+ "delete": "Delete",
+ "error": "Error",
+ "errorMsg": "Something went wrong. Please try again later.",
+ "oops": "Oops!",
+ "other": "Other",
+ "readMore": "Read more",
+ "success": "Success",
+ "sensitive": "Sensitive",
+ "sensitiveContent": "Sensitive Content",
+ "sensitiveContentWarning": "This post may contain sensitive content"
+ },
+ "site": {
+ "terms": "Terms of Use",
+ "privacy": "Privacy Policy"
+ },
+ "navmenu": {
+ "search": "Search",
+ "admin": "Admin Dashboard",
+ "homeFeed": "Home Feed",
+ "localFeed": "Local Feed",
+ "globalFeed": "Global Feed",
+ "discover": "Discover",
+ "directMessages": "Direct Messages",
+ "notifications": "Notifications",
+ "groups": "Groups",
+ "stories": "Stories",
+ "profile": "Profile",
+ "drive": "Drive",
+ "settings": "Settings",
+ "compose": "Create New",
+ "about": "About",
+ "help": "Help",
+ "language": "Language",
+ "privacy": "Privacy",
+ "terms": "Terms",
+ "backToPreviousDesign": "Go back to previous design"
+ },
+ "directMessages": {
+ "inbox": "Inbox",
+ "sent": "Sent",
+ "requests": "Requests"
+ },
+ "notifications": {
+ "liked": "liked your",
+ "commented": "commented on your",
+ "reacted": "reacted to your",
+ "shared": "shared your",
+ "tagged": "tagged you in a",
+ "updatedA": "updated a",
+ "sentA": "sent a",
+ "followed": "followed",
+ "mentioned": "mentioned",
+ "you": "you",
+ "yourApplication": "Your application to join",
+ "applicationApproved": "was approved!",
+ "applicationRejected": "was rejected. You can re-apply to join in 6 months.",
+ "dm": "dm",
+ "groupPost": "group post",
+ "modlog": "modlog",
+ "post": "post",
+ "story": "story"
+ },
+ "post": {
+ "shareToFollowers": "Share to followers",
+ "shareToOther": "Share to other",
+ "noLikes": "No likes yet",
+ "uploading": "Uploading"
+ },
+ "profile": {
+ "posts": "Posts",
+ "followers": "Followers",
+ "following": "Following",
+ "admin": "Admin",
+ "collections": "Collections",
+ "follow": "Follow",
+ "unfollow": "Unfollow",
+ "editProfile": "Edit Profile",
+ "followRequested": "Follow Requested",
+ "joined": "Joined"
+ },
+ "menu": {
+ "viewPost": "View Post",
+ "viewProfile": "View Profile",
+ "moderationTools": "Moderation Tools",
+ "report": "Report",
+ "archive": "Archive",
+ "unarchive": "Unarchive",
+ "embed": "Embed",
+ "selectOneOption": "Select one of the following options",
+ "unlistFromTimelines": "Unlist from Timelines",
+ "addCW": "Add Content Warning",
+ "removeCW": "Remove Content Warning",
+ "markAsSpammer": "Mark as Spammer",
+ "markAsSpammerText": "Unlist + CW existing and future posts",
+ "spam": "Spam",
+ "sensitive": "Sensitive Content",
+ "abusive": "Abusive or Harmful",
+ "underageAccount": "Underage Account",
+ "copyrightInfringement": "Copyright Infringement",
+ "impersonation": "Impersonation",
+ "scamOrFraud": "Scam or Fraud",
+ "confirmReport": "Confirm Report",
+ "confirmReportText": "Are you sure you want to report this post?",
+ "reportSent": "Report Sent!",
+ "reportSentText": "We have successfully received your report.",
+ "reportSentError": "There was an issue reporting this post.",
+ "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
+ "modCWSuccess": "Successfully added content warning",
+ "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
+ "modRemoveCWSuccess": "Successfully removed content warning",
+ "modUnlistConfirm": "Are you sure you want to unlist this post?",
+ "modUnlistSuccess": "Successfully unlisted post",
+ "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
+ "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
+ "toFollowers": "to Followers",
+ "showCaption": "Show Caption",
+ "showLikes": "Show Likes",
+ "compactMode": "Compact Mode",
+ "embedConfirmText": "By using this embed, you agree to our",
+ "deletePostConfirm": "Are you sure you want to delete this post?",
+ "archivePostConfirm": "Are you sure you want to archive this post?",
+ "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ },
+ "story": {
+ "add": "Add Story"
+ },
+ "timeline": {
+ "peopleYouMayKnow": "People you may know"
+ }
+}
\ No newline at end of file
diff --git a/public/_lang/ca.json b/public/_lang/ca.json
index 7cffaae5..307f1d3b 100644
--- a/public/_lang/ca.json
+++ b/public/_lang/ca.json
@@ -1,144 +1,144 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
+ "comment": "Comentar",
+ "commented": "Comentari",
+ "comments": "Comentaris",
+ "like": "M'agrada",
+ "liked": "M'ha agradat",
+ "likes": "\"M'agrada\"",
+ "share": "Comparteix",
+ "shared": "S'han compartit",
+ "shares": "S'han compartit",
+ "unshare": "Deixa de compartir",
+ "cancel": "Cancel\u00b7la",
+ "copyLink": "Copia l'enlla\u00e7",
+ "delete": "Esborra",
"error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "errorMsg": "Alguna cosa ha anat malament. Siusplau, intenta-ho m\u00e9s tard.",
+ "oops": "Uix!",
+ "other": "Altres",
+ "readMore": "Llegiu-ne m\u00e9s",
+ "success": "Completat amb \u00e8xit",
+ "sensitive": "Sensible",
+ "sensitiveContent": "Contingut sensible",
+ "sensitiveContentWarning": "Aquest article pot contenir contingut sensible"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "Condicions d'\u00fas",
+ "privacy": "Pol\u00edtica de Privacitat"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
- "drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
- "privacy": "Privacy",
- "terms": "Terms",
- "backToPreviousDesign": "Go back to previous design"
+ "search": "Cercar",
+ "admin": "Tauler d'Administraci\u00f3",
+ "homeFeed": "L\u00ednia de temps principal",
+ "localFeed": "L\u00ednia de temps local",
+ "globalFeed": "L\u00ednia de temps global",
+ "discover": "Descobrir",
+ "directMessages": "Missatges directes",
+ "notifications": "Notificacions",
+ "groups": "Grups",
+ "stories": "Hist\u00f2ries",
+ "profile": "Perfil",
+ "drive": "Unitat",
+ "settings": "Par\u00e0metres",
+ "compose": "Crea un nou",
+ "about": "Quant a",
+ "help": "Ajuda",
+ "language": "Idioma",
+ "privacy": "Privacitat",
+ "terms": "Termes",
+ "backToPreviousDesign": "Tornar al disseny anterior"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "Safata d'entrada",
+ "sent": "Enviat",
+ "requests": "Sol\u00b7licitud"
},
"notifications": {
- "liked": "liked your",
- "commented": "commented on your",
- "reacted": "reacted to your",
- "shared": "shared your",
- "tagged": "tagged you in a",
- "updatedA": "updated a",
- "sentA": "sent a",
- "followed": "followed",
- "mentioned": "mentioned",
- "you": "you",
- "yourApplication": "Your application to join",
- "applicationApproved": "was approved!",
- "applicationRejected": "was rejected. You can re-apply to join in 6 months.",
- "dm": "dm",
- "groupPost": "group post",
+ "liked": "li agrada la teva",
+ "commented": "comentat el teu",
+ "reacted": "ha reaccionat al teu",
+ "shared": "ha compartit la teva",
+ "tagged": "t'ha etiquetat en una",
+ "updatedA": "actualitzat a",
+ "sentA": "enviat a",
+ "followed": "seguits",
+ "mentioned": "mencionat",
+ "you": "vost\u00e8",
+ "yourApplication": "La teva sol\u00b7licitud per unir-te",
+ "applicationApproved": "est\u00e0 aprovat!",
+ "applicationRejected": "ha estat rebutjat. Pots tornar a sol\u00b7licitar unir-te en 6 mesos.",
+ "dm": "md",
+ "groupPost": "publicacions al grup",
"modlog": "modlog",
- "post": "post",
- "story": "story"
+ "post": "publicaci\u00f3",
+ "story": "hist\u00f2ria"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "Comparteix amb els seguidors",
+ "shareToOther": "Compartits per altres",
+ "noLikes": "Cap m'agrada encara",
+ "uploading": "Carregant"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "posts": "Publicacions",
+ "followers": "Seguidors",
+ "following": "Seguint",
+ "admin": "Administrador",
+ "collections": "Col\u00b7leccions",
+ "follow": "Segueix",
+ "unfollow": "Deixeu de seguir",
+ "editProfile": "Edita el teu perfil",
+ "followRequested": "Sol\u00b7licitud de seguidor",
+ "joined": "S'ha unit"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
- "selectOneOption": "Select one of the following options",
- "unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
- "markAsSpammerText": "Unlist + CW existing and future posts",
- "spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
- "impersonation": "Impersonation",
- "scamOrFraud": "Scam or Fraud",
- "confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
- "toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
- "embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "viewPost": "Veure publicaci\u00f3",
+ "viewProfile": "Mostra el perfil",
+ "moderationTools": "Eines de moderaci\u00f3",
+ "report": "Informe",
+ "archive": "Arxiu",
+ "unarchive": "Desarxiva",
+ "embed": "Incrusta",
+ "selectOneOption": "Seleccioneu una de les opcions seg\u00fcents",
+ "unlistFromTimelines": "Desllista de les l\u00ednies de temps",
+ "addCW": "Afegeix advert\u00e8ncia de contingut",
+ "removeCW": "Esborra advert\u00e8ncia de contingut",
+ "markAsSpammer": "Marca com a brossa",
+ "markAsSpammerText": "Desllista + CW publicacions existents i futures",
+ "spam": "Contingut brossa",
+ "sensitive": "Contingut sensible",
+ "abusive": "Abusiu o nociu",
+ "underageAccount": "Compte de menors d'edat",
+ "copyrightInfringement": "Infracci\u00f3 de drets d\u2019autor",
+ "impersonation": "Suplantacions",
+ "scamOrFraud": "Estafa o Frau",
+ "confirmReport": "Confirma l'informe",
+ "confirmReportText": "Esteu segur que voleu informar d'aquesta publicaci\u00f3?",
+ "reportSent": "Informe enviat!",
+ "reportSentText": "Hem rebut correctament el vostre informe.",
+ "reportSentError": "Hi ha hagut un problema en informar d'aquesta publicaci\u00f3.",
+ "modAddCWConfirm": "Confirmes que vols afegir un av\u00eds de contingut a aquesta publicaci\u00f3?",
+ "modCWSuccess": "Av\u00eds de contingut afegit correctament",
+ "modRemoveCWConfirm": "Confirmes que vols esborrar un av\u00eds de contingut d'aquesta publicaci\u00f3?",
+ "modRemoveCWSuccess": "Av\u00eds de contingut esborrat correctament",
+ "modUnlistConfirm": "Esteu segur que voleu desllistar d'aquesta publicaci\u00f3?",
+ "modUnlistSuccess": "Entrada desllistada amb \u00e8xit",
+ "modMarkAsSpammerConfirm": "Esteu segur que voleu marcar aquest usuari com a brossa? Totes les publicacions existents i futures no apareixeran a les cronologies i s'aplicar\u00e0 un av\u00eds de contingut.",
+ "modMarkAsSpammerSuccess": "El compte s'ha marcat correctament com a brossa",
+ "toFollowers": "els seguidors",
+ "showCaption": "Mostra el subt\u00edtol",
+ "showLikes": "Mostra els m'agrada",
+ "compactMode": "Mode Compacte",
+ "embedConfirmText": "En utilitzar aquesta inserci\u00f3, accepteu el nostre",
+ "deletePostConfirm": "Esteu segur que voleu suprimir aquesta publicaci\u00f3?",
+ "archivePostConfirm": "Segur que voleu arxivar aquesta publicaci\u00f3?",
+ "unarchivePostConfirm": "Segur que voleu desarxivar aquesta publicaci\u00f3?"
},
"story": {
- "add": "Add Story"
+ "add": "Afegir hist\u00f2ria"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Gent que potser coneixes"
}
}
\ No newline at end of file
diff --git a/public/_lang/cs.json b/public/_lang/cs.json
index 7cffaae5..b57a1c6f 100644
--- a/public/_lang/cs.json
+++ b/public/_lang/cs.json
@@ -1,64 +1,64 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
+ "comment": "Koment\u00e1\u0159",
+ "commented": "Okomentov\u00e1no",
+ "comments": "Koment\u00e1\u0159e",
+ "like": "L\u00edb\u00ed se mi",
"liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
+ "likes": "To se mi l\u00edb\u00ed",
+ "share": "Sd\u00edlet",
+ "shared": "Sd\u00edleno",
+ "shares": "Sd\u00edlen\u00ed",
+ "unshare": "Zru\u0161it sd\u00edlen\u00ed",
+ "cancel": "Zru\u0161it",
+ "copyLink": "Kop\u00edrovat odkaz",
+ "delete": "Smazat",
+ "error": "Chyba",
+ "errorMsg": "N\u011bco se pokazilo. Zkuste to pros\u00edm pozd\u011bji.",
+ "oops": "Jejda!",
"other": "Other",
- "readMore": "Read more",
+ "readMore": "\u010c\u00edst v\u00edce",
"success": "Success",
"sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "sensitiveContent": "Citliv\u00fd obsah",
+ "sensitiveContentWarning": "Tento p\u0159\u00edsp\u011bvek m\u016f\u017ee obsahovat citliv\u00fd obsah"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "Podm\u00ednky pou\u017eit\u00ed",
+ "privacy": "Z\u00e1sady ochrany osobn\u00edch \u00fadaj\u016f"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
+ "search": "Hledat",
+ "admin": "Administr\u00e1torsk\u00fd ovl\u00e1dac\u00ed panel",
"homeFeed": "Home Feed",
- "localFeed": "Local Feed",
+ "localFeed": "M\u00edstn\u00ed \u010dasov\u00e1 osa",
"globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
+ "discover": "Objevovat",
+ "directMessages": "P\u0159\u00edm\u00e9 zpr\u00e1vy",
+ "notifications": "Ozn\u00e1men\u00ed",
+ "groups": "Skupiny",
+ "stories": "P\u0159\u00edb\u011bhy",
+ "profile": "Profil",
"drive": "Drive",
- "settings": "Settings",
+ "settings": "Nastaven\u00ed",
"compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
- "privacy": "Privacy",
- "terms": "Terms",
- "backToPreviousDesign": "Go back to previous design"
+ "about": "O aplikaci",
+ "help": "N\u00e1pov\u011bda",
+ "language": "Jazyk",
+ "privacy": "Soukrom\u00ed",
+ "terms": "Podm\u00ednky",
+ "backToPreviousDesign": "Vr\u00e1tit se k p\u0159edchoz\u00edmu vzhledu"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "P\u0159ijat\u00e9 zpr\u00e1vy",
+ "sent": "Odeslan\u00e9",
+ "requests": "Po\u017eadavky"
},
"notifications": {
- "liked": "liked your",
- "commented": "commented on your",
- "reacted": "reacted to your",
- "shared": "shared your",
+ "liked": "se l\u00edb\u00ed v\u00e1\u0161",
+ "commented": "komentoval/a v\u00e1\u0161",
+ "reacted": "reagoval/a na v\u00e1\u0161",
+ "shared": "sd\u00edlel/a v\u00e1\u0161",
"tagged": "tagged you in a",
"updatedA": "updated a",
"sentA": "sent a",
@@ -70,75 +70,75 @@
"applicationRejected": "was rejected. You can re-apply to join in 6 months.",
"dm": "dm",
"groupPost": "group post",
- "modlog": "modlog",
- "post": "post",
- "story": "story"
+ "modlog": "moder\u00e1torsk\u00fd z\u00e1znam",
+ "post": "p\u0159\u00edsp\u011bvek",
+ "story": "p\u0159\u00edbeh"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
+ "shareToFollowers": "Sd\u00edlet se sleduj\u00edc\u00edmi",
+ "shareToOther": "Sd\u00edlet s ostatn\u00edmi",
"noLikes": "No likes yet",
- "uploading": "Uploading"
+ "uploading": "Nahr\u00e1v\u00e1n\u00ed"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
+ "posts": "P\u0159\u00edsp\u011bvky",
+ "followers": "Sleduj\u00edc\u00ed",
+ "following": "Sledovan\u00ed",
+ "admin": "Administr\u00e1tor",
+ "collections": "Sb\u00edrky",
+ "follow": "Sledovat",
+ "unfollow": "P\u0159estat sledovat",
+ "editProfile": "Upravit profil",
"followRequested": "Follow Requested",
"joined": "Joined"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
+ "viewPost": "Zobrazit p\u0159\u00edsp\u011bvek",
+ "viewProfile": "Zobrazit profil",
+ "moderationTools": "N\u00e1stroje pro moder\u00e1tory",
"report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
+ "archive": "Archivovat",
+ "unarchive": "Vyjmout z archivu",
"embed": "Embed",
- "selectOneOption": "Select one of the following options",
- "unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
+ "selectOneOption": "Vyberte jednu z n\u00e1sleduj\u00edc\u00edch mo\u017enost\u00ed",
+ "unlistFromTimelines": "Odebrat z \u010dasov\u00e9 osy",
+ "addCW": "P\u0159idat varov\u00e1n\u00ed o obsahu",
+ "removeCW": "Odstranit varov\u00e1n\u00ed o obsahu",
+ "markAsSpammer": "Ozna\u010dit za spammera",
"markAsSpammerText": "Unlist + CW existing and future posts",
"spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
+ "sensitive": "Citliv\u00fd obsah",
+ "abusive": "Ur\u00e1\u017eliv\u00e9 nebo \u0161kodliv\u00e9",
"underageAccount": "Underage Account",
"copyrightInfringement": "Copyright Infringement",
"impersonation": "Impersonation",
"scamOrFraud": "Scam or Fraud",
- "confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
+ "confirmReport": "Potvrdit hl\u00e1\u0161en\u00ed",
+ "confirmReportText": "Jste si jisti, \u017ee chcete nahl\u00e1sit tento p\u0159\u00edsp\u011bvek?",
+ "reportSent": "Hl\u00e1\u0161en\u00ed odesl\u00e1no!",
+ "reportSentText": "\u00dasp\u011b\u0161n\u011b jsme obdr\u017eeli va\u0161e hl\u00e1\u0161en\u00ed.",
+ "reportSentError": "P\u0159i nahl\u00e1\u0161en\u00ed tohoto p\u0159\u00edsp\u011bvku do\u0161lo k chyb\u011b.",
+ "modAddCWConfirm": "Jste si jisti, \u017ee chcete k tomuto p\u0159\u00edsp\u011bvku p\u0159idat varov\u00e1n\u00ed o obsahu?",
+ "modCWSuccess": "Varov\u00e1n\u00ed o obsahu bylo \u00fasp\u011b\u0161n\u011b p\u0159id\u00e1no",
+ "modRemoveCWConfirm": "Jste si jisti, \u017ee chcete odebrat upozorn\u011bn\u00ed na obsah tohoto p\u0159\u00edsp\u011bvku?",
+ "modRemoveCWSuccess": "Varov\u00e1n\u00ed o obsahu bylo \u00fasp\u011b\u0161n\u011b odebr\u00e1no",
+ "modUnlistConfirm": "Opravdu chcete odebrat tento p\u0159\u00edsp\u011bvek?",
+ "modUnlistSuccess": "P\u0159\u00edsp\u011bvek byl odebr\u00e1n z \u010dasov\u00e9 osy",
+ "modMarkAsSpammerConfirm": "Jste si jisti, \u017ee chcete tohoto u\u017eivatele ozna\u010dit jako spammer? V\u0161echny existuj\u00edc\u00ed a budouc\u00ed p\u0159\u00edsp\u011bvky budou vy\u0159azeny z \u010dasov\u00fdch os a bude na n\u011b aplikov\u00e1no varov\u00e1n\u00ed o obsahu.",
+ "modMarkAsSpammerSuccess": "\u00da\u010det byl ozna\u010den jako spammer",
"toFollowers": "to Followers",
"showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
+ "showLikes": "Zobrazit To se mi l\u00edb\u00ed",
+ "compactMode": "Kompaktn\u00ed re\u017eim",
"embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "deletePostConfirm": "Opravdu chcete smazat tento p\u0159\u00edsp\u011bvek?",
+ "archivePostConfirm": "Opravdu chcete archivovat tento p\u0159\u00edsp\u011bvek?",
+ "unarchivePostConfirm": "Opravdu chcete zru\u0161it archivaci tohoto p\u0159\u00edsp\u011bvku?"
},
"story": {
- "add": "Add Story"
+ "add": "P\u0159idat p\u0159\u00edb\u011bh"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Lid\u00e9, kter\u00e9 mo\u017en\u00e1 zn\u00e1te"
}
}
\ No newline at end of file
diff --git a/public/_lang/cy.json b/public/_lang/cy.json
index 5445b011..7a5a9963 100644
--- a/public/_lang/cy.json
+++ b/public/_lang/cy.json
@@ -1,58 +1,63 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "comment": "Gwneud Sylw",
+ "commented": "Sylwadau ar",
+ "comments": "Sylwadau",
+ "like": "Hoffi",
+ "liked": "Hoffi",
+ "likes": "Hoffi",
+ "share": "Rhannu",
+ "shared": "Rhannu",
+ "shares": "Rhannu",
+ "unshare": "Dad-rannu",
+ "cancel": "Canslo",
+ "copyLink": "Cop\u00efo'r ddolen",
+ "delete": "Dileu",
+ "error": "Gwall",
+ "errorMsg": "Aeth rhywbeth o'i le. Rhowch gynnig arall arni yn nes ymlaen.",
+ "oops": "Wps!",
+ "other": "Arall",
+ "readMore": "Darllen mwy",
+ "success": "Llwyddiant",
+ "sensitive": "Sensitif",
+ "sensitiveContent": "Cynnwys sensitif",
+ "sensitiveContentWarning": "Gall y post hon gynnwys cynnwys sensitif"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "Telerau defnyddio",
+ "privacy": "Polisi preifatrwydd"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
- "drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "backToPreviousDesign": "Go back to previous design"
+ "search": "Chwilio",
+ "admin": "Dangosfwrdd gweinyddol",
+ "homeFeed": "Ffrwd gatref",
+ "localFeed": "Ffrwd lleol",
+ "globalFeed": "Ffrwd byd-eang",
+ "discover": "Darganfod",
+ "directMessages": "Negeseuon preifat",
+ "notifications": "Hysbysiadau",
+ "groups": "Grwpiau",
+ "stories": "Straeon",
+ "profile": "Proffil",
+ "drive": "Gyriant storio",
+ "settings": "Gosodiadau",
+ "compose": "Creu newydd",
+ "about": "Amdano",
+ "help": "Cymorth",
+ "language": "Iaith",
+ "privacy": "Preifatrwydd",
+ "terms": "Telerau",
+ "backToPreviousDesign": "Ewch yn \u00f4l at ddyluniad blaenorol"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "Mewnflwch",
+ "sent": "Anfonwyd",
+ "requests": "Ceisiadau"
},
"notifications": {
- "liked": "liked your",
- "commented": "commented on your",
- "reacted": "reacted to your",
+ "liked": "wedi hoffi eich",
+ "commented": "gwnaeth sylwadau ar eich",
+ "reacted": "adweithio i'ch",
"shared": "shared your",
"tagged": "tagged you in a",
"updatedA": "updated a",
@@ -109,7 +114,7 @@
"impersonation": "Impersonation",
"scamOrFraud": "Scam or Fraud",
"confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
+ "confirmReportText": "Ydych chi'n si\u0175r eich bod chi am adroddi'r post hon?",
"reportSent": "Report Sent!",
"reportSentText": "We have successfully received your report.",
"reportSentError": "There was an issue reporting this post.",
diff --git a/public/_lang/de.json b/public/_lang/de.json
index ecd0f1db..eb3cc6af 100644
--- a/public/_lang/de.json
+++ b/public/_lang/de.json
@@ -3,13 +3,13 @@
"comment": "Kommentar",
"commented": "Kommentiert",
"comments": "Kommentare",
- "like": "Gef\u00e4llt",
- "liked": "Liked",
+ "like": "Gef\u00e4llt mir",
+ "liked": "Gef\u00e4llt",
"likes": "Gef\u00e4llt",
"share": "Teilen",
"shared": "Geteilt",
"shares": "Geteilt",
- "unshare": "Teilen r\u00fcckg\u00e4ngig",
+ "unshare": "Teilen r\u00fcckg\u00e4ngig machen",
"cancel": "Abbrechen",
"copyLink": "Link kopieren",
"delete": "L\u00f6schen",
@@ -17,7 +17,7 @@
"errorMsg": "Etwas ist schief gelaufen. Bitter versuch es sp\u00e4ter nochmal.",
"oops": "Hoppla!",
"other": "Anderes",
- "readMore": "Mehr lesen",
+ "readMore": "Weiterlesen",
"success": "Erfolgreich",
"sensitive": "Sensibel",
"sensitiveContent": "Sensibler Inhalt",
@@ -37,7 +37,7 @@
"directMessages": "Direktnachrichten",
"notifications": "Benachrichtigungen",
"groups": "Gruppen",
- "stories": "Storys",
+ "stories": "Stories",
"profile": "Profil",
"drive": "Festplatte",
"settings": "Einstellungen",
@@ -62,22 +62,22 @@
"tagged": "markierte dich in einem",
"updatedA": "aktualisierte ein",
"sentA": "sendete ein",
- "followed": "followed",
+ "followed": "gefolgt",
"mentioned": "erw\u00e4hnt",
"you": "du",
"yourApplication": "Deine Bewerbung um beizutreten",
"applicationApproved": "wurde genehmigt!",
"applicationRejected": "wurde abgelehnt. Du kannst dich in 6 Monaten erneut f\u00fcr den Beitritt bewerben.",
"dm": "PN",
- "groupPost": "group post",
+ "groupPost": "Gruppen-Post",
"modlog": "modlog",
"post": "Beitrag",
- "story": "story"
+ "story": "Story"
},
"post": {
- "shareToFollowers": "Share to followers",
+ "shareToFollowers": "Mit Folgenden teilen",
"shareToOther": "Mit anderen teilen",
- "noLikes": "Noch keine Gef\u00e4llt mir",
+ "noLikes": "Gef\u00e4llt bisher noch niemandem",
"uploading": "L\u00e4dt hoch"
},
"profile": {
@@ -97,22 +97,22 @@
"viewProfile": "Profil anzeigen",
"moderationTools": "Moderationswerkzeuge",
"report": "Melden",
- "archive": "Archiv",
- "unarchive": "Unarchive",
+ "archive": "Archivieren",
+ "unarchive": "Entarchivieren",
"embed": "Einbetten",
- "selectOneOption": "W\u00e4hle eine der folgenden M\u00f6glichkeiten",
+ "selectOneOption": "W\u00e4hle eine der folgenden Optionen",
"unlistFromTimelines": "Nicht in Timelines listen",
"addCW": "Inhaltswarnung hinzuf\u00fcgen",
"removeCW": "Inhaltswarnung entfernen",
"markAsSpammer": "Als Spammer markieren",
- "markAsSpammerText": "Unlist + CW existing and future posts",
+ "markAsSpammerText": "Aus der Zeitleiste entfernen und bisherige und zuk\u00fcnftige Beitr\u00e4ge mit einer Inhaltswarnung versehen",
"spam": "Spam",
- "sensitive": "Sensitiver Inhalt",
- "abusive": "Abusive or Harmful",
+ "sensitive": "Sensibler Inhalt",
+ "abusive": "missbr\u00e4uchlich oder sch\u00e4digend",
"underageAccount": "Minderj\u00e4hrigen-Konto",
"copyrightInfringement": "Urheberrechtsverletzung",
- "impersonation": "Nachahmen",
- "scamOrFraud": "Scam or Fraud",
+ "impersonation": "Identit\u00e4tsdiebstahl",
+ "scamOrFraud": "Betrug oder Missbrauch",
"confirmReport": "Meldung best\u00e4tigen",
"confirmReportText": "Bist du sicher, dass du diesen Beitrag melden m\u00f6chtest?",
"reportSent": "Meldung gesendet!",
@@ -124,16 +124,16 @@
"modRemoveCWSuccess": "Inhaltswarnung erfolgreich entfernt",
"modUnlistConfirm": "Bist du sicher, dass du diesen Beitrag nicht listen m\u00f6chtest?",
"modUnlistSuccess": "Beitrag erfolgreich nicht gelistet",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
+ "modMarkAsSpammerConfirm": "Bist du sicher, dass du diesen Benutzer als Spam markieren m\u00f6chtest? Alle existierenden und zuk\u00fcnftigen Beitr\u00e4ge werden nicht mehr in der Zeitleiste angezeigt und mit einer Inhaltswarnung versehen.",
"modMarkAsSpammerSuccess": "Konto erfolgreich als Spammer markiert",
- "toFollowers": "to Followers",
+ "toFollowers": "an die Folgenden",
"showCaption": "Bildunterschrift anzeigen",
"showLikes": "\"Gef\u00e4llt mir\" anzeigen",
"compactMode": "Kompaktmodus",
"embedConfirmText": "Mit der Nutzung dieser Einbettung erkl\u00e4rst du dich mit unseren",
"deletePostConfirm": "Bist du sicher, dass du diesen Beitrag l\u00f6schen m\u00f6chtest?",
"archivePostConfirm": "Bist du sicher, dass du diesen Beitrag archivieren m\u00f6chtest?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "unarchivePostConfirm": "M\u00f6chten Sie dieses Element wirklich aus dem Archiv zur\u00fcckholen?"
},
"story": {
"add": "Story hinzuf\u00fcgen"
diff --git a/public/_lang/el.json b/public/_lang/el.json
index 197d6a5d..256ec518 100644
--- a/public/_lang/el.json
+++ b/public/_lang/el.json
@@ -8,8 +8,8 @@
"likes": "\u0391\u03c1\u03ad\u03c3\u03b5\u03b9",
"share": "\u039a\u03bf\u03b9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7",
"shared": "\u039a\u03bf\u03b9\u03bd\u03bf\u03c0\u03bf\u03b9\u03ae\u03b8\u03b7\u03ba\u03b5",
- "shares": "Shares",
- "unshare": "Unshare",
+ "shares": "\u039a\u03bf\u03b9\u03bd\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
+ "unshare": "\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03ba\u03bf\u03b9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2",
"cancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7",
"copyLink": "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03a3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5",
"delete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae",
@@ -39,7 +39,7 @@
"groups": "\u039f\u03bc\u03ac\u03b4\u03b5\u03c2",
"stories": "\u0399\u03c3\u03c4\u03bf\u03c1\u03af\u03b5\u03c2",
"profile": "\u03a0\u03c1\u03bf\u03c6\u03af\u03bb",
- "drive": "Drive",
+ "drive": "\u03a7\u03ce\u03c1\u03bf\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2",
"settings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
"compose": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03bf\u03c5",
"about": "\u03a3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5",
diff --git a/public/_lang/es.json b/public/_lang/es.json
index 7cffaae5..d041a17e 100644
--- a/public/_lang/es.json
+++ b/public/_lang/es.json
@@ -1,144 +1,144 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
+ "comment": "Comentario",
+ "commented": "Comentado",
+ "comments": "Comentarios",
+ "like": "Me gusta",
+ "liked": "Te gusta",
+ "likes": "Me gustas",
+ "share": "Compartir",
+ "shared": "Compartido",
+ "shares": "Compartidos",
+ "unshare": "No compartir",
+ "cancel": "Cancelar",
+ "copyLink": "Copiar Enlace",
+ "delete": "Eliminar",
"error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "errorMsg": "Algo fue mal. Por favor int\u00e9ntelo de nuevo m\u00e1s tarde.",
+ "oops": "Upss!",
+ "other": "Otros",
+ "readMore": "Ver m\u00e1s",
+ "success": "Correcto",
+ "sensitive": "Sensible",
+ "sensitiveContent": "Contenido Sensible",
+ "sensitiveContentWarning": "Este post podr\u00eda tener contenido sensible"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "T\u00e9rminos de Uso",
+ "privacy": "Pol\u00edtica de Privacidad"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
- "drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
- "privacy": "Privacy",
- "terms": "Terms",
- "backToPreviousDesign": "Go back to previous design"
+ "search": "Buscar",
+ "admin": "Panel de Administrador",
+ "homeFeed": "Feed Principal",
+ "localFeed": "Feed Local",
+ "globalFeed": "Feed Global",
+ "discover": "Descubre",
+ "directMessages": "Mensajes Directos",
+ "notifications": "Notificaciones",
+ "groups": "Grupos",
+ "stories": "Historias",
+ "profile": "Perfil",
+ "drive": "Multimedia",
+ "settings": "Ajustes",
+ "compose": "Crear Nuevo",
+ "about": "Acerca de",
+ "help": "Ayuda",
+ "language": "Idioma",
+ "privacy": "Privacidad",
+ "terms": "T\u00e9rminos",
+ "backToPreviousDesign": "Volver al dise\u00f1o anterior"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "Entrada",
+ "sent": "Enviado",
+ "requests": "Solicitudes"
},
"notifications": {
- "liked": "liked your",
- "commented": "commented on your",
- "reacted": "reacted to your",
- "shared": "shared your",
- "tagged": "tagged you in a",
- "updatedA": "updated a",
- "sentA": "sent a",
- "followed": "followed",
- "mentioned": "mentioned",
- "you": "you",
- "yourApplication": "Your application to join",
- "applicationApproved": "was approved!",
- "applicationRejected": "was rejected. You can re-apply to join in 6 months.",
- "dm": "dm",
- "groupPost": "group post",
+ "liked": "le gust\u00f3 tu",
+ "commented": "coment\u00f3 en tu",
+ "reacted": "reaccion\u00f3 a tu",
+ "shared": "ha compartido tu",
+ "tagged": "te ha etiquetado en",
+ "updatedA": "actualiz\u00f3 una",
+ "sentA": "envi\u00f3 un",
+ "followed": "te sigui\u00f3",
+ "mentioned": "te mencion\u00f3",
+ "you": "t\u00fa",
+ "yourApplication": "Tu solicitud para unirse",
+ "applicationApproved": "ha sido aprobada!",
+ "applicationRejected": "ha sido rechazada. Puedes volver a solicitar unirte en 6 meses.",
+ "dm": "md",
+ "groupPost": "publicaci\u00f3n de grupo",
"modlog": "modlog",
- "post": "post",
- "story": "story"
+ "post": "publicaci\u00f3n",
+ "story": "historia"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "Compartir a seguidores",
+ "shareToOther": "Compartir a otros",
+ "noLikes": "No hay me gustas",
+ "uploading": "Subiendo"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "posts": "Publicaciones",
+ "followers": "Seguidores",
+ "following": "Siguiendo",
+ "admin": "Administrador",
+ "collections": "Colecciones",
+ "follow": "Seguir",
+ "unfollow": "Dejar de seguir",
+ "editProfile": "Editar Perfil",
+ "followRequested": "Seguimiento Solicitado",
+ "joined": "Se uni\u00f3"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
- "selectOneOption": "Select one of the following options",
- "unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
- "markAsSpammerText": "Unlist + CW existing and future posts",
+ "viewPost": "Ver Publicaci\u00f3n",
+ "viewProfile": "Ver Perfil",
+ "moderationTools": "Herramientas de Moderaci\u00f3n",
+ "report": "Reportar",
+ "archive": "Archivar",
+ "unarchive": "No Archivar",
+ "embed": "Incrustar",
+ "selectOneOption": "Escoge una de las siguientes opciones",
+ "unlistFromTimelines": "No listar en L\u00edneas Temporales",
+ "addCW": "A\u00f1adir Spoiler",
+ "removeCW": "Quitar Spoiler",
+ "markAsSpammer": "Marcar como Spammer",
+ "markAsSpammerText": "No listar + Spoiler publicaciones actuales y futuras",
"spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
- "impersonation": "Impersonation",
- "scamOrFraud": "Scam or Fraud",
- "confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
- "toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
- "embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "sensitive": "Contenido Sensible",
+ "abusive": "Abusivo o Da\u00f1ino",
+ "underageAccount": "Cuenta de Menor de Edad",
+ "copyrightInfringement": "Violaci\u00f3n de Copyright",
+ "impersonation": "Suplantaci\u00f3n",
+ "scamOrFraud": "Scam o Fraude",
+ "confirmReport": "Confirmar Reporte",
+ "confirmReportText": "\u00bfSeguro que quieres reportar esta publicaci\u00f3n?",
+ "reportSent": "\u00a1Reporte enviado!",
+ "reportSentText": "Hemos recibido tu reporte de forma satisfactoria.",
+ "reportSentError": "Hubo un problema reportando esta publicaci\u00f3n.",
+ "modAddCWConfirm": "\u00bfSeguro que desea a\u00f1adir un spoiler a esta publicaci\u00f3n?",
+ "modCWSuccess": "Spoiler a\u00f1adido correctamente",
+ "modRemoveCWConfirm": "\u00bfSeguro que desea eliminar el spoiler de esta publicaci\u00f3n?",
+ "modRemoveCWSuccess": "Spoiler eliminado correctamente",
+ "modUnlistConfirm": "\u00bfSeguro que desea no listar esta publicaci\u00f3n?",
+ "modUnlistSuccess": "Publicaci\u00f3n no listada correctamente",
+ "modMarkAsSpammerConfirm": "\u00bfSeguro que quiere marcar este usuario como spammer? Todas las publicaciones existentes y futuras no ser\u00e1n listadas en las l\u00edneas temporales y se les agregar\u00e1 un Spoiler o alerta de contenido.",
+ "modMarkAsSpammerSuccess": "Cuenta marcada como spam correctamente",
+ "toFollowers": "a Seguidores",
+ "showCaption": "Mostrar subt\u00edtulos",
+ "showLikes": "Mostrar me gustas",
+ "compactMode": "Modo Compacto",
+ "embedConfirmText": "Usando este incrustado, usted acepta",
+ "deletePostConfirm": "\u00bfSeguro que desea eliminar esta publicaci\u00f3n?",
+ "archivePostConfirm": "\u00bfSeguro que desea archivar esta publicaci\u00f3n?",
+ "unarchivePostConfirm": "\u00bfSeguro que desea desarchivar esta publicaci\u00f3n?"
},
"story": {
- "add": "Add Story"
+ "add": "A\u00f1adir Historia"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Gente que podr\u00edas conocer"
}
}
\ No newline at end of file
diff --git a/public/_lang/eu.json b/public/_lang/eu.json
index 5445b011..6daca8a3 100644
--- a/public/_lang/eu.json
+++ b/public/_lang/eu.json
@@ -1,139 +1,144 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "comment": "Iruzkindu",
+ "commented": "Iruzkindu",
+ "comments": "Iruzkinak",
+ "like": "Datsegit",
+ "liked": "Datsegit",
+ "likes": "Atsegite",
+ "share": "Partekatu",
+ "shared": "Partekatua",
+ "shares": "Partekatze",
+ "unshare": "Utzi partekatzeari",
+ "cancel": "Utzi",
+ "copyLink": "Kopiatu esteka",
+ "delete": "Ezabatu",
+ "error": "Errorea",
+ "errorMsg": "Zerbait oker joan da. Saiatu berriro beranduago.",
+ "oops": "Arranopola!",
+ "other": "Bestelakoa",
+ "readMore": "Gehiago irakurri",
+ "success": "Burutu da",
+ "sensitive": "Sentibera",
+ "sensitiveContent": "Kontuz edukiarekin",
+ "sensitiveContentWarning": "Argitalpen honen edukia mingarria izan daiteke"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "Erabilera-baldintzak",
+ "privacy": "Pribatutasun-gidalerroak"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
- "drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "backToPreviousDesign": "Go back to previous design"
+ "search": "Bilatu",
+ "admin": "Adminaren panela",
+ "homeFeed": "Hasierako jarioa",
+ "localFeed": "Tokiko jarioa",
+ "globalFeed": "Iturri globala",
+ "discover": "Aurkitu",
+ "directMessages": "Mezu zuzenak",
+ "notifications": "Jakinarazpenak",
+ "groups": "Taldeak",
+ "stories": "Istorioak",
+ "profile": "Profila",
+ "drive": "Gida",
+ "settings": "Ezarpenak",
+ "compose": "Argitaratu",
+ "about": "Honi buruz",
+ "help": "Laguntza",
+ "language": "Hizkuntza",
+ "privacy": "Pribatutasuna",
+ "terms": "Baldintzak",
+ "backToPreviousDesign": "Itzuli aurreko itxurara"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "Sarrera ontzia",
+ "sent": "Bidalita",
+ "requests": "Eskaerak"
},
"notifications": {
- "liked": "liked your",
- "commented": "commented on your",
- "reacted": "reacted to your",
- "shared": "shared your",
- "tagged": "tagged you in a",
- "updatedA": "updated a",
- "sentA": "sent a",
- "followed": "followed",
- "mentioned": "mentioned",
- "you": "you",
- "yourApplication": "Your application to join",
- "applicationApproved": "was approved!",
- "applicationRejected": "was rejected. You can re-apply to join in 6 months.",
- "dm": "dm",
- "groupPost": "group post",
- "modlog": "modlog",
- "post": "post",
- "story": "story"
+ "liked": "datsegi zure",
+ "commented": "iruzkindu du zure",
+ "reacted": "-(e)k erantzun egin du zure",
+ "shared": "partekatu du zure",
+ "tagged": "etiketatu zaitu hemen:",
+ "updatedA": "-(e)k eguneratu egin du",
+ "sentA": "-(e)k bidali egin du",
+ "followed": "honi jarraitzen hasi da:",
+ "mentioned": "-(e)k aipatu zaitu",
+ "you": "zu",
+ "yourApplication": "Elkartzeko zure eskaera",
+ "applicationApproved": "onartu da!",
+ "applicationRejected": "ez da onartu. Berriz eska dezakezu 6 hilabete barru.",
+ "dm": "mezu pribatua",
+ "groupPost": "talde argitarapena",
+ "modlog": "modloga",
+ "post": "bidalketa",
+ "story": "istorioa"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "Partekatu jarraitzaileekin",
+ "shareToOther": "Partekatu besteekin",
+ "noLikes": "Atsegiterik ez oraindik",
+ "uploading": "Igotzen"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
+ "posts": "Bidalketak",
+ "followers": "Jarraitzaileak",
+ "following": "Jarraitzen",
"admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "collections": "Bildumak",
+ "follow": "Jarraitu",
+ "unfollow": "Utzi jarraitzeari",
+ "editProfile": "Editatu profila",
+ "followRequested": "Eskaera bidalita",
+ "joined": "Elkartu da"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
- "selectOneOption": "Select one of the following options",
+ "viewPost": "Ikusi bidalketa",
+ "viewProfile": "Ikusi profila",
+ "moderationTools": "Moderazio tresnak",
+ "report": "Salatu",
+ "archive": "Artxibatu",
+ "unarchive": "Desartxibatu",
+ "embed": "Kapsulatu",
+ "selectOneOption": "Hautatu aukera hauetako bat",
"unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
+ "addCW": "Edukia kontuz ibiltzekoa dela aipatu",
+ "removeCW": "Edukia kontuz ibiltzekoa denaren aipamena kendu",
+ "markAsSpammer": "Markatu zabor-bidaltzaile gisa",
"markAsSpammerText": "Unlist + CW existing and future posts",
- "spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
- "impersonation": "Impersonation",
- "scamOrFraud": "Scam or Fraud",
- "confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
+ "spam": "Zaborra",
+ "sensitive": "Eduki hunkigarria",
+ "abusive": "Bortxazko edo Mingarria",
+ "underageAccount": "Adin txikiko baten kontua",
+ "copyrightInfringement": "Copyrightaren urraketa",
+ "impersonation": "Nortasunaren iruzurra",
+ "scamOrFraud": "Iruzur edo lapurreta",
+ "confirmReport": "Salaketa berretsi",
+ "confirmReportText": "Ziur bidalketa hau salatu nahi duzula?",
+ "reportSent": "Salaketa bidali da",
+ "reportSentText": "Zure salaketa jaso dugu.",
+ "reportSentError": "Arazo bat egon da bidalketa hau salatzerakoan.",
+ "modAddCWConfirm": "Ziur al zaude edukiaren abisua jarri nahi duzula argitalpen honetarako?",
"modCWSuccess": "Successfully added content warning",
"modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
"modRemoveCWSuccess": "Successfully removed content warning",
"modUnlistConfirm": "Are you sure you want to unlist this post?",
"modUnlistSuccess": "Successfully unlisted post",
"modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
- "toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
+ "modMarkAsSpammerSuccess": "Kontua zabor-bidaltzaile gisa markatu da",
+ "toFollowers": "jarraitzaileei",
+ "showCaption": "Irudiaren azalpena erakutsi",
+ "showLikes": "Erakutsi atsegiteak",
+ "compactMode": "Modu trinkoa",
"embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "deletePostConfirm": "Ziur bidalketa hau ezabatu nahi duzula?",
+ "archivePostConfirm": "Ziur bidalketa hau artxibatu nahi duzula?",
+ "unarchivePostConfirm": "Ziur bidalketa hau desartxibatu nahi duzula?"
},
"story": {
- "add": "Add Story"
+ "add": "Gehitu Istorioa"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Agian ezagutzen duzun jendea"
}
}
\ No newline at end of file
diff --git a/public/_lang/fa.json b/public/_lang/fa.json
index 5445b011..7cffaae5 100644
--- a/public/_lang/fa.json
+++ b/public/_lang/fa.json
@@ -42,6 +42,11 @@
"drive": "Drive",
"settings": "Settings",
"compose": "Create New",
+ "about": "About",
+ "help": "Help",
+ "language": "Language",
+ "privacy": "Privacy",
+ "terms": "Terms",
"backToPreviousDesign": "Go back to previous design"
},
"directMessages": {
diff --git a/public/_lang/fr.json b/public/_lang/fr.json
index 671315e9..66befa69 100644
--- a/public/_lang/fr.json
+++ b/public/_lang/fr.json
@@ -4,7 +4,7 @@
"commented": "Comment\u00e9",
"comments": "Commentaires",
"like": "J'aime",
- "liked": "Aim\u00e9\u00b7e",
+ "liked": "Aim\u00e9",
"likes": "J'aime",
"share": "Partager",
"shared": "Partag\u00e9",
@@ -15,130 +15,130 @@
"delete": "Supprimer",
"error": "Erreur",
"errorMsg": "Une erreur est survenue. Veuillez r\u00e9essayer plus tard.",
- "oops": "Oups\u00a0!",
+ "oops": "Zut !",
"other": "Autre",
- "readMore": "Lire plus",
- "success": "Succ\u00e8s",
+ "readMore": "En savoir plus",
+ "success": "Op\u00e9ration r\u00e9ussie",
"sensitive": "Sensible",
"sensitiveContent": "Contenu sensible",
- "sensitiveContentWarning": "Ce message peut contenir du contenu sensible"
+ "sensitiveContentWarning": "Le contenu de ce message peut \u00eatre sensible"
},
"site": {
"terms": "Conditions d'utilisation",
"privacy": "Politique de confidentialit\u00e9"
},
"navmenu": {
- "search": "Rechercher",
- "admin": "Tableau de bord administrateur",
- "homeFeed": "Flux principal",
- "localFeed": "Flux local",
- "globalFeed": "Flux global",
+ "search": "Chercher",
+ "admin": "Tableau de bord d'administration",
+ "homeFeed": "Fil principal",
+ "localFeed": "Fil local",
+ "globalFeed": "Fil global",
"discover": "D\u00e9couvrir",
"directMessages": "Messages Priv\u00e9s",
"notifications": "Notifications",
"groups": "Groupes",
"stories": "Stories",
"profile": "Profil",
- "drive": "Drive",
+ "drive": "M\u00e9diath\u00e8que",
"settings": "Param\u00e8tres",
- "compose": "Create New",
+ "compose": "Publier",
"about": "\u00c0 propos",
"help": "Aide",
"language": "Langue",
- "privacy": "Privacy",
- "terms": "Conditions\u00a0",
+ "privacy": "Confidentialit\u00e9",
+ "terms": "Conditions",
"backToPreviousDesign": "Revenir au design pr\u00e9c\u00e9dent"
},
"directMessages": {
"inbox": "Bo\u00eete de r\u00e9ception",
- "sent": "Sent",
+ "sent": "Bo\u00eete d'envois",
"requests": "Demandes"
},
"notifications": {
- "liked": "a aim\u00e9\u00b7e votre",
- "commented": "a comment\u00e9\u00b7e votre",
+ "liked": "a aim\u00e9 votre",
+ "commented": "a comment\u00e9 votre",
"reacted": "a r\u00e9agi \u00e0 votre",
- "shared": "shared your",
- "tagged": "tagged you in a",
- "updatedA": "updated a",
- "sentA": "sent a",
- "followed": "followed",
- "mentioned": "mentioned",
- "you": "you",
- "yourApplication": "Your application to join",
- "applicationApproved": "was approved!",
- "applicationRejected": "was rejected. You can re-apply to join in 6 months.",
- "dm": "dm",
- "groupPost": "group post",
- "modlog": "modlog",
- "post": "post",
+ "shared": "a partag\u00e9 votre",
+ "tagged": "vous a tagu\u00e9\u00b7e dans un",
+ "updatedA": "mis \u00e0 jour un\u00b7e",
+ "sentA": "a envoy\u00e9 un\u00b7e",
+ "followed": "s'est abonn\u00e9\u00b7e \u00e0",
+ "mentioned": "a mentionn\u00e9",
+ "you": "vous",
+ "yourApplication": "Votre candidature \u00e0 rejoindre",
+ "applicationApproved": "a \u00e9t\u00e9 approuv\u00e9e !",
+ "applicationRejected": "a \u00e9t\u00e9 rejet\u00e9e. Vous pouvez refaire une demande dans 6 mois.",
+ "dm": "mp",
+ "groupPost": "publication de groupe",
+ "modlog": "journal de mod\u00e9ration",
+ "post": "publication",
"story": "story"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "Partager avec ses abonn\u00e9\u00b7e\u00b7s",
+ "shareToOther": "Partager avec d'autres",
+ "noLikes": "Aucun J'aime pour le moment",
+ "uploading": "Envoi en cours"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
+ "posts": "Publications",
+ "followers": "Abonn\u00e9\u00b7e\u00b7s",
+ "following": "Abonnements",
+ "admin": "Administrateur\u00b7rice",
"collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "follow": "S'abonner",
+ "unfollow": "Se d\u00e9sabonner",
+ "editProfile": "Modifier votre profil",
+ "followRequested": "Demande d'abonnement",
+ "joined": "A rejoint"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
- "selectOneOption": "Select one of the following options",
- "unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
- "markAsSpammerText": "Unlist + CW existing and future posts",
- "spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
+ "viewPost": "Voir la publication",
+ "viewProfile": "Voir le profil",
+ "moderationTools": "Outils de mod\u00e9ration",
+ "report": "Signaler",
+ "archive": "Archiver",
+ "unarchive": "D\u00e9sarchiver",
+ "embed": "Int\u00e9grer",
+ "selectOneOption": "S\u00e9lectionnez l'une des options suivantes",
+ "unlistFromTimelines": "Retirer des flux",
+ "addCW": "Ajouter un avertissement de contenu",
+ "removeCW": "Enlever l\u2019avertissement de contenu",
+ "markAsSpammer": "Marquer comme spammeur\u00b7euse",
+ "markAsSpammerText": "Retirer + avertissements pour les contenus existants et futurs",
+ "spam": "Ind\u00e9sirable",
+ "sensitive": "Contenu sensible",
+ "abusive": "Abusif ou pr\u00e9judiciable",
+ "underageAccount": "Compte d'un\u00b7e mineur\u00b7e",
+ "copyrightInfringement": "Violation des droits d\u2019auteur",
"impersonation": "Usurpation d'identit\u00e9",
"scamOrFraud": "Arnaque ou fraude",
"confirmReport": "Confirmer le signalement",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
- "toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
- "embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "confirmReportText": "\u00cates-vous s\u00fbr\u00b7e de vouloir signaler cette publication ?",
+ "reportSent": "Signalement envoy\u00e9 !",
+ "reportSentText": "Nous avons bien re\u00e7u votre signalement.",
+ "reportSentError": "Une erreur s'est produite lors du signalement de cette publication.",
+ "modAddCWConfirm": "\u00cates-vous s\u00fbr\u00b7e de vouloir ajouter un avertissement de contenu \u00e0 cette publication ?",
+ "modCWSuccess": "Avertissement de contenu ajout\u00e9 avec succ\u00e8s",
+ "modRemoveCWConfirm": "\u00cates-vous s\u00fbr\u00b7e de vouloir supprimer l'avertissement de contenu sur cette publication ?",
+ "modRemoveCWSuccess": "Avertissement de contenu supprim\u00e9 avec succ\u00e8s",
+ "modUnlistConfirm": "\u00cates-vous s\u00fbr\u00b7e de vouloir retirer cette publication des flux ?",
+ "modUnlistSuccess": "Publication retir\u00e9e des fils avec succ\u00e8s",
+ "modMarkAsSpammerConfirm": "\u00cates-vous s\u00fbr\u00b7e de vouloir marquer cet utilisateur\u00b7rice comme spammeur\u00b7euse ? Toutes les publications existantes et futures seront retir\u00e9es des flux et un avertissement de contenu sera appliqu\u00e9.",
+ "modMarkAsSpammerSuccess": "Compte marqu\u00e9 avec succ\u00e8s comme spammeur",
+ "toFollowers": "aux abonn\u00e9\u00b7e\u00b7s",
+ "showCaption": "Afficher la l\u00e9gende",
+ "showLikes": "Afficher les J'aime",
+ "compactMode": "Mode compact",
+ "embedConfirmText": "En utilisant ce module, vous acceptez nos",
+ "deletePostConfirm": "\u00cates-vous s\u00fbr\u00b7e de vouloir supprimer cette publication ?",
+ "archivePostConfirm": "\u00cates-vous s\u00fbr\u00b7e de vouloir archiver cette publication ?",
+ "unarchivePostConfirm": "\u00cates-vous s\u00fbr\u00b7e de vouloir d\u00e9sarchiver cette publication ?"
},
"story": {
- "add": "Add Story"
+ "add": "Ajouter une story"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Connaissances possibles"
}
}
\ No newline at end of file
diff --git a/public/_lang/gd.json b/public/_lang/gd.json
new file mode 100644
index 00000000..166dc666
--- /dev/null
+++ b/public/_lang/gd.json
@@ -0,0 +1,144 @@
+{
+ "common": {
+ "comment": "Beachd",
+ "commented": "Commented",
+ "comments": "Comments",
+ "like": "Like",
+ "liked": "Liked",
+ "likes": "Likes",
+ "share": "Co-roinn",
+ "shared": "Shared",
+ "shares": "Shares",
+ "unshare": "Unshare",
+ "cancel": "Sguir dheth",
+ "copyLink": "D\u00e8an lethbhreac dhen cheangal",
+ "delete": "Sguab \u00e0s",
+ "error": "Mearachd",
+ "errorMsg": "Something went wrong. Please try again later.",
+ "oops": "Oops!",
+ "other": "Other",
+ "readMore": "Read more",
+ "success": "Success",
+ "sensitive": "Frionasach",
+ "sensitiveContent": "Susbaint fhrionasach",
+ "sensitiveContentWarning": "This post may contain sensitive content"
+ },
+ "site": {
+ "terms": "Terms of Use",
+ "privacy": "Privacy Policy"
+ },
+ "navmenu": {
+ "search": "Lorg",
+ "admin": "Admin Dashboard",
+ "homeFeed": "Inbhir na dachaigh",
+ "localFeed": "Inbhir ionadail",
+ "globalFeed": "Global Feed",
+ "discover": "Discover",
+ "directMessages": "Direct Messages",
+ "notifications": "Brathan",
+ "groups": "Buidhnean",
+ "stories": "Stories",
+ "profile": "Pr\u00f2ifil",
+ "drive": "Draibh",
+ "settings": "Roghainnean",
+ "compose": "Cruthaich fear \u00f9r",
+ "about": "Mu dh\u00e8idhinn",
+ "help": "Cobhair",
+ "language": "C\u00e0nan",
+ "privacy": "Pr\u00ecobhaideachd",
+ "terms": "Teirmichean",
+ "backToPreviousDesign": "Go back to previous design"
+ },
+ "directMessages": {
+ "inbox": "Am bogsa a-steach",
+ "sent": "Sent",
+ "requests": "Iarrtasan"
+ },
+ "notifications": {
+ "liked": "liked your",
+ "commented": "commented on your",
+ "reacted": "reacted to your",
+ "shared": "shared your",
+ "tagged": "tagged you in a",
+ "updatedA": "updated a",
+ "sentA": "sent a",
+ "followed": "followed",
+ "mentioned": "mentioned",
+ "you": "you",
+ "yourApplication": "Your application to join",
+ "applicationApproved": "was approved!",
+ "applicationRejected": "was rejected. You can re-apply to join in 6 months.",
+ "dm": "dm",
+ "groupPost": "group post",
+ "modlog": "modlog",
+ "post": "post",
+ "story": "sgeul"
+ },
+ "post": {
+ "shareToFollowers": "Share to followers",
+ "shareToOther": "Share to other",
+ "noLikes": "No likes yet",
+ "uploading": "Uploading"
+ },
+ "profile": {
+ "posts": "Posts",
+ "followers": "Followers",
+ "following": "Following",
+ "admin": "Admin",
+ "collections": "Collections",
+ "follow": "Lean air",
+ "unfollow": "Unfollow",
+ "editProfile": "Deasaich a\u2019 phr\u00f2ifil",
+ "followRequested": "Follow Requested",
+ "joined": "Joined"
+ },
+ "menu": {
+ "viewPost": "Seall am post",
+ "viewProfile": "Seall a\u2019 phr\u00f2ifil",
+ "moderationTools": "Innealan na maorsainneachd",
+ "report": "Report",
+ "archive": "Archive",
+ "unarchive": "Unarchive",
+ "embed": "Leabaich",
+ "selectOneOption": "Tagh t\u00e8 dhe na roghainnean seo",
+ "unlistFromTimelines": "Unlist from Timelines",
+ "addCW": "Cuir rabhadh susbainte ris",
+ "removeCW": "Thoir air falbh an rabhadh susbainte",
+ "markAsSpammer": "Cuir comharra gur e spamair a th\u2019 ann",
+ "markAsSpammerText": "Unlist + CW existing and future posts",
+ "spam": "Spama",
+ "sensitive": "Susbaint fhrionasach",
+ "abusive": "Abusive or Harmful",
+ "underageAccount": "Underage Account",
+ "copyrightInfringement": "Copyright Infringement",
+ "impersonation": "Impersonation",
+ "scamOrFraud": "Scam or Fraud",
+ "confirmReport": "Dearbh an gearan",
+ "confirmReportText": "Are you sure you want to report this post?",
+ "reportSent": "Chaidh an gearan a chur!",
+ "reportSentText": "Fhuair sinn do ghearan.",
+ "reportSentError": "There was an issue reporting this post.",
+ "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
+ "modCWSuccess": "Successfully added content warning",
+ "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
+ "modRemoveCWSuccess": "Successfully removed content warning",
+ "modUnlistConfirm": "Are you sure you want to unlist this post?",
+ "modUnlistSuccess": "Successfully unlisted post",
+ "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
+ "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
+ "toFollowers": "to Followers",
+ "showCaption": "Seall am fo-thiotal",
+ "showLikes": "Show Likes",
+ "compactMode": "Compact Mode",
+ "embedConfirmText": "By using this embed, you agree to our",
+ "deletePostConfirm": "A bheil thu cinnteach gu bheil thu airson am post seo a sguabadh \u00e0s?",
+ "archivePostConfirm": "A bheil thu cinnteach gu bheil thu airson am post seo a chur dhan tasg-lann?",
+ "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ },
+ "story": {
+ "add": "Cuir sgeul ris"
+ },
+ "timeline": {
+ "peopleYouMayKnow": "People you may know"
+ }
+}
\ No newline at end of file
diff --git a/public/_lang/gl.json b/public/_lang/gl.json
index 7cffaae5..7444ad51 100644
--- a/public/_lang/gl.json
+++ b/public/_lang/gl.json
@@ -1,144 +1,144 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "comment": "Comentar",
+ "commented": "Comentou",
+ "comments": "Comentarios",
+ "like": "Agr\u00e1dame",
+ "liked": "Gustoulle",
+ "likes": "Gustoulle",
+ "share": "Compartir",
+ "shared": "Compartiu",
+ "shares": "Compartido",
+ "unshare": "Non compartir",
+ "cancel": "Cancelar",
+ "copyLink": "Copiar ligaz\u00f3n",
+ "delete": "Eliminar",
+ "error": "Erro",
+ "errorMsg": "Algo foi mal. T\u00e9nteo de novo m\u00e1is tarde.",
+ "oops": "Vaites!",
+ "other": "Outro",
+ "readMore": "Ler m\u00e1is",
+ "success": "\u00c9xito",
+ "sensitive": "Sensible",
+ "sensitiveContent": "Contido sensible",
+ "sensitiveContentWarning": "Esta publicaci\u00f3n pode conter contido sensible"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "Termos de uso",
+ "privacy": "Pol\u00edtica de Privacidade"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
+ "search": "Busca",
+ "admin": "Panel Administrativo",
+ "homeFeed": "Cronolox\u00eda de Inicio",
+ "localFeed": "Cronolox\u00eda Local",
+ "globalFeed": "Cronolox\u00eda Global",
+ "discover": "Descubrir",
+ "directMessages": "Mensaxes Directas",
+ "notifications": "Notificaci\u00f3ns",
+ "groups": "Grupos",
+ "stories": "Historias",
+ "profile": "Perfil",
"drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
- "privacy": "Privacy",
- "terms": "Terms",
- "backToPreviousDesign": "Go back to previous design"
+ "settings": "Axustes",
+ "compose": "Crear Nova",
+ "about": "Acerca de",
+ "help": "Axuda",
+ "language": "Idioma",
+ "privacy": "Privacidade",
+ "terms": "Termos",
+ "backToPreviousDesign": "Volver \u00f3 dese\u00f1o previo"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "Bandexa de entrada",
+ "sent": "Enviados",
+ "requests": "Petici\u00f3ns"
},
"notifications": {
- "liked": "liked your",
- "commented": "commented on your",
- "reacted": "reacted to your",
- "shared": "shared your",
- "tagged": "tagged you in a",
- "updatedA": "updated a",
- "sentA": "sent a",
- "followed": "followed",
- "mentioned": "mentioned",
+ "liked": "gustoulle a t\u00faa",
+ "commented": "comentou na t\u00faa",
+ "reacted": "reaccionou a t\u00faa",
+ "shared": "compartiu a t\u00faa",
+ "tagged": "etiquetoute nunca",
+ "updatedA": "actualizou unha",
+ "sentA": "enviou unha",
+ "followed": "seguiu",
+ "mentioned": "mencionou",
"you": "you",
- "yourApplication": "Your application to join",
- "applicationApproved": "was approved!",
- "applicationRejected": "was rejected. You can re-apply to join in 6 months.",
- "dm": "dm",
+ "yourApplication": "A t\u00faa solicitude para unirte",
+ "applicationApproved": "foi aprobada!",
+ "applicationRejected": "for rexeitada. Podes volver a solicitar unirte en 6 meses.",
+ "dm": "md",
"groupPost": "group post",
"modlog": "modlog",
- "post": "post",
- "story": "story"
+ "post": "publicaci\u00f3n",
+ "story": "historia"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "Compartir a seguidores",
+ "shareToOther": "Compartir a outros",
+ "noLikes": "Sen g\u00fastame por agora",
+ "uploading": "Subindo"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "posts": "Publicaci\u00f3ns",
+ "followers": "Seguidores",
+ "following": "Seguindo",
+ "admin": "Administrador",
+ "collections": "Colecci\u00f3ns",
+ "follow": "Seguir",
+ "unfollow": "Deixar de seguir",
+ "editProfile": "Editar perfil",
+ "followRequested": "Seguimento pedido",
+ "joined": "Uniuse"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
- "selectOneOption": "Select one of the following options",
- "unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
- "markAsSpammerText": "Unlist + CW existing and future posts",
+ "viewPost": "Ver publicaci\u00f3n",
+ "viewProfile": "Ver perfil",
+ "moderationTools": "Ferramentas de moderaci\u00f3n",
+ "report": "Informar",
+ "archive": "Arquivar",
+ "unarchive": "Desarquivar",
+ "embed": "Incrustar",
+ "selectOneOption": "Elixe unha das seguintes opci\u00f3ns",
+ "unlistFromTimelines": "Desalistar das cronolox\u00edas",
+ "addCW": "Engadir aviso sobre o contido",
+ "removeCW": "Retirar o aviso sobre o contido",
+ "markAsSpammer": "Marcar como Spammer",
+ "markAsSpammerText": "Desalistar + aviso sobre o contido en publicaci\u00f3ns existentes e futuras",
"spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
- "impersonation": "Impersonation",
- "scamOrFraud": "Scam or Fraud",
- "confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
- "toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
- "embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "sensitive": "Contido sensible",
+ "abusive": "Abusivo ou dani\u00f1o",
+ "underageAccount": "Conta de minor de idade",
+ "copyrightInfringement": "Violaci\u00f3n dos dereitos de autor",
+ "impersonation": "Suplantaci\u00f3n de identidade",
+ "scamOrFraud": "Estafa ou fraude",
+ "confirmReport": "Confirmar reporte",
+ "confirmReportText": "Seguro que queres informar sobre esta publicaci\u00f3n?",
+ "reportSent": "Informe enviado!",
+ "reportSentText": "Recibimos correctamente o teu informe.",
+ "reportSentError": "Houbo un problema reportando esta publicaci\u00f3n.",
+ "modAddCWConfirm": "Seguro que queres engadir un aviso de contido sobre esta publicaci\u00f3n?",
+ "modCWSuccess": "Aviso de contido engadido correctamente",
+ "modRemoveCWConfirm": "Seguro que queres eliminar o aviso de contido sobre esta publicaci\u00f3n?",
+ "modRemoveCWSuccess": "Aviso de contido eliminado correctamente",
+ "modUnlistConfirm": "Seguro que queres desalistar esta publicaci\u00f3n?",
+ "modUnlistSuccess": "Publicaci\u00f3n desalistada correctamente",
+ "modMarkAsSpammerConfirm": "Seguro que queres marcar a este usuario como spam? Todas as publicaci\u00f3ns existentes e futuras ser\u00e1n desalistadas das cronolox\u00edas e un aviso de contido ser\u00e1 aplicado.",
+ "modMarkAsSpammerSuccess": "Conta marcada como spam correctamente",
+ "toFollowers": "para Seguidores",
+ "showCaption": "Mostrar descrici\u00f3n",
+ "showLikes": "Mostrar os g\u00fastame",
+ "compactMode": "Modo compacto",
+ "embedConfirmText": "Utilizando ese incrustado, aceptas",
+ "deletePostConfirm": "Seguro que queres eliminar esta publicaci\u00f3n?",
+ "archivePostConfirm": "Seguro que queres arquivar esta publicaci\u00f3n?",
+ "unarchivePostConfirm": "Seguro que queres desarquivar esta publicaci\u00f3n?"
},
"story": {
- "add": "Add Story"
+ "add": "Engadir historia"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Xente que podes co\u00f1ecer"
}
}
\ No newline at end of file
diff --git a/public/_lang/he.json b/public/_lang/he.json
index 7e987d57..c53c108c 100644
--- a/public/_lang/he.json
+++ b/public/_lang/he.json
@@ -29,7 +29,7 @@
},
"navmenu": {
"search": "\u05d7\u05d9\u05e4\u05d5\u05e9",
- "admin": "\u05dc\u05d5\u05d7 \u05d1\u05e7\u05e8\u05d4 \u05dc\u05d0\u05d3\u05de\u05d9\u05e0\u05d9\u05e1\u05d8\u05e8\u05e6\u05d9\u05d4",
+ "admin": "\u05dc\u05d5\u05d7 \u05d1\u05e7\u05e8\u05d4 \u05dc\u05de\u05e0\u05d4\u05dc",
"homeFeed": "\u05e4\u05d9\u05d3 \u05d1\u05d9\u05ea\u05d9",
"localFeed": "\u05e4\u05d9\u05d3 \u05de\u05e7\u05d5\u05de\u05d9",
"globalFeed": "\u05e4\u05d9\u05d3 \u05d2\u05dc\u05d5\u05d1\u05d0\u05dc\u05d9",
@@ -58,61 +58,61 @@
"liked": "\u05d0\u05d4\u05d1\u05d5 \u05dc\u05da",
"commented": "\u05d4\u05e2\u05d9\u05e8\u05d5 \u05dc\u05da \u05e2\u05dc",
"reacted": "\u05d4\u05d2\u05d9\u05d1\u05d5 \u05dc\u05da \u05e2\u05dc",
- "shared": "shared your",
- "tagged": "tagged you in a",
- "updatedA": "updated a",
- "sentA": "sent a",
- "followed": "followed",
- "mentioned": "mentioned",
+ "shared": "\u05e9\u05d9\u05ea\u05e4\u05d5 \u05dc\u05da",
+ "tagged": "\u05ea\u05d9\u05d9\u05d2\u05d5 \u05d0\u05d5\u05ea\u05da \u05d1\u05ea\u05d5\u05da",
+ "updatedA": "\u05e2\u05d3\u05db\u05e0\u05d5",
+ "sentA": "\u05e9\u05dc\u05d7\u05d5",
+ "followed": "\u05e2\u05d5\u05e7\u05d1\u05d9\u05dd",
+ "mentioned": "\u05e6\u05d9\u05d9\u05e0\u05d5",
"you": "\u05d0\u05ea\u05db\u05dd",
"yourApplication": "\u05d1\u05e7\u05e9\u05ea\u05db\u05dd \u05dc\u05d4\u05e6\u05d8\u05e8\u05e4\u05d5\u05ea",
"applicationApproved": "\u05d0\u05d5\u05e9\u05e8\u05d4!",
"applicationRejected": "\u05e0\u05d3\u05d7\u05ea\u05d4. \u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05dc\u05d5\u05d7 \u05d1\u05e7\u05e9\u05d4 \u05d7\u05d5\u05d6\u05e8\u05ea \u05dc\u05d0\u05d7\u05e8 6 \u05d7\u05d5\u05d3\u05e9\u05d9\u05dd.",
"dm": "\u05d4\u05d5\u05d3\u05e2\u05d4 \u05d0\u05d9\u05e9\u05d9\u05ea",
"groupPost": "\u05e4\u05d5\u05e1\u05d8 \u05e7\u05d1\u05d5\u05e6\u05ea\u05d9",
- "modlog": "modlog",
+ "modlog": "\u05dc\u05d5\u05d2 \u05de\u05e0\u05d4\u05dc\u05d9\u05dd",
"post": "\u05e4\u05d5\u05e1\u05d8",
- "story": "story"
+ "story": "\u05e1\u05d8\u05d5\u05e8\u05d9"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "\u05e9\u05ea\u05e3 \u05dc\u05e2\u05d5\u05e7\u05d1\u05d9\u05dd",
+ "shareToOther": "\u05e9\u05ea\u05e3 \u05dc-\u05d0\u05d7\u05e8",
+ "noLikes": "\u05d0\u05d9\u05df \u05e2\u05d3\u05d9\u05d9\u05df \u05e1\u05d9\u05de\u05d5\u05e0\u05d9 \"\u05d0\u05d4\u05d1\u05ea\u05d9\"",
+ "uploading": "\u05de\u05e2\u05dc\u05d4"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "posts": "\u05e4\u05d5\u05e1\u05d8\u05d9\u05dd",
+ "followers": "\u05e2\u05d5\u05e7\u05d1\u05d9\u05dd",
+ "following": "\u05e2\u05d5\u05e7\u05d1/\u05ea",
+ "admin": "\u05de\u05e0\u05d4\u05dc \u05de\u05e2\u05e8\u05db\u05ea",
+ "collections": "\u05d0\u05d5\u05e1\u05e4\u05d9\u05dd",
+ "follow": "\u05e2\u05e7\u05d5\u05d1",
+ "unfollow": "\u05d4\u05e4\u05e1\u05e7 \u05de\u05e2\u05e7\u05d1",
+ "editProfile": "\u05e2\u05e8\u05d5\u05da \u05e4\u05e8\u05d5\u05e4\u05d9\u05dc",
+ "followRequested": "\u05d1\u05e7\u05e9\u05ea \u05e2\u05e7\u05d9\u05d1\u05d4",
+ "joined": "\u05d4\u05e6\u05d8\u05e8\u05e4\u05d5\u05d9\u05d5\u05ea"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
- "selectOneOption": "Select one of the following options",
- "unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
- "markAsSpammerText": "Unlist + CW existing and future posts",
- "spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
- "impersonation": "Impersonation",
- "scamOrFraud": "Scam or Fraud",
+ "viewPost": "\u05d4\u05e6\u05d2 \u05e4\u05d5\u05e1\u05d8",
+ "viewProfile": "\u05d4\u05e6\u05d2 \u05e4\u05e8\u05d5\u05e4\u05d9\u05dc",
+ "moderationTools": "\u05db\u05dc\u05d9 \u05e0\u05d9\u05d4\u05d5\u05dc",
+ "report": "\u05d3\u05d5\u05d5\u05d7",
+ "archive": "\u05d0\u05e8\u05db\u05d9\u05d5\u05df",
+ "unarchive": "\u05d4\u05e1\u05e8 \u05de\u05d4\u05d0\u05e8\u05db\u05d9\u05d5\u05df",
+ "embed": "\u05d4\u05d8\u05de\u05e2",
+ "selectOneOption": "\u05d1\u05d7\u05e8 \u05d1\u05d0\u05d7\u05d3 \u05de\u05d4\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05d1\u05d0\u05d5\u05ea",
+ "unlistFromTimelines": "\u05d4\u05e2\u05dc\u05dd \u05de\u05d8\u05d9\u05d9\u05de\u05dc\u05d9\u05d9\u05e0\u05d9\u05dd",
+ "addCW": "\u05d4\u05d5\u05e1\u05e3 \u05d0\u05d6\u05d4\u05e8\u05ea \u05ea\u05d5\u05db\u05df",
+ "removeCW": "\u05d4\u05e1\u05e8 \u05d0\u05d6\u05d4\u05e8\u05ea \u05ea\u05d5\u05db\u05df",
+ "markAsSpammer": "\u05e1\u05de\u05df \u05d1\u05ea\u05d5\u05e8 \u05e1\u05e4\u05d0\u05de\u05e8 (\u05de\u05e6\u05d9\u05e3)",
+ "markAsSpammerText": "\u05d4\u05e2\u05dc\u05dd \u05d5\u05d4\u05e4\u05e2\u05dc \u05d0\u05d6\u05d4\u05e8\u05ea \u05ea\u05d5\u05db\u05df \u05dc\u05e4\u05d5\u05e1\u05d8\u05d9\u05dd \u05e7\u05d9\u05d9\u05de\u05d9\u05dd \u05d5\u05e2\u05ea\u05d9\u05d3\u05d9\u05d9\u05dd",
+ "spam": "\u05e1\u05e4\u05d0\u05dd",
+ "sensitive": "\u05ea\u05d5\u05db\u05df \u05e8\u05d2\u05d9\u05e9",
+ "abusive": "\u05ea\u05d5\u05db\u05df \u05de\u05d8\u05e8\u05d9\u05d3 \u05d0\u05d5 \u05de\u05d6\u05d9\u05e7",
+ "underageAccount": "\u05ea\u05d5\u05db\u05df \u05e2\u05dd \u05e7\u05d8\u05d9\u05e0\u05d9\u05dd",
+ "copyrightInfringement": "\u05d4\u05e4\u05e8\u05ea \u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05d9\u05d5\u05e6\u05e8\u05d9\u05dd",
+ "impersonation": "\u05d4\u05ea\u05d7\u05d6\u05d5\u05ea",
+ "scamOrFraud": "\u05d4\u05d5\u05e0\u05d0\u05d4",
"confirmReport": "\u05d0\u05d9\u05e9\u05d5\u05e8 \u05d3\u05d9\u05d5\u05d5\u05d7",
"confirmReportText": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05dd \u05d1\u05d8\u05d5\u05d7\u05d9\u05dd \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05db\u05dd \u05dc\u05d3\u05d5\u05d5\u05d7 \u05e2\u05dc \u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4?",
"reportSent": "\u05d3\u05d9\u05d5\u05d5\u05d7 \u05e0\u05e9\u05dc\u05d7!",
@@ -122,23 +122,23 @@
"modCWSuccess": "\u05d0\u05d6\u05d4\u05e8\u05ea \u05ea\u05d5\u05db\u05df \u05e0\u05d5\u05e1\u05e4\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4",
"modRemoveCWConfirm": "\u05d0\u05ea\u05dd \u05d1\u05d8\u05d5\u05d7\u05d9\u05dd \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05db\u05dd \u05dc\u05d4\u05e1\u05d9\u05e8 \u05d0\u05ea \u05d0\u05d6\u05d4\u05e8\u05ea \u05d4\u05ea\u05d5\u05db\u05df \u05de\u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4?",
"modRemoveCWSuccess": "\u05d0\u05d6\u05d4\u05e8\u05ea \u05ea\u05d5\u05db\u05df \u05d4\u05d5\u05e1\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
- "toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
- "embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "modUnlistConfirm": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05dd \u05d1\u05d8\u05d5\u05d7\u05d9\u05dd \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05db\u05dd \u05dc\u05d4\u05e2\u05dc\u05d9\u05dd \u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4?",
+ "modUnlistSuccess": "\u05e4\u05d5\u05e1\u05d8 \u05d4\u05d5\u05e2\u05dc\u05dd \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4",
+ "modMarkAsSpammerConfirm": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05dd \u05d1\u05d8\u05d5\u05d7\u05d9\u05dd \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05db\u05dd \u05dc\u05e1\u05de\u05df \u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05d1\u05ea\u05d5\u05e8 \u05e1\u05e4\u05d0\u05de\u05e8 (\u05de\u05e6\u05d9\u05e3)? \u05db\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8\u05d9\u05dd \u05d4\u05e7\u05d9\u05d9\u05de\u05d9\u05dd \u05d5\u05e2\u05ea\u05d9\u05d3\u05d9\u05d9\u05dd \u05d9\u05d5\u05e2\u05dc\u05de\u05d5 \u05d5\u05d0\u05d6\u05d4\u05e8\u05ea \u05ea\u05d5\u05db\u05df \u05ea\u05d5\u05e4\u05e2\u05dc.",
+ "modMarkAsSpammerSuccess": "\u05d7\u05e9\u05d1\u05d5\u05df \u05e1\u05d5\u05de\u05df \u05d1\u05ea\u05d5\u05e8 \u05e1\u05e4\u05d0\u05de\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4",
+ "toFollowers": "\u05e2\u05d1\u05d5\u05e8 \u05e2\u05d5\u05e7\u05d1\u05d9\u05dd",
+ "showCaption": "\u05d4\u05e6\u05d2 \u05ea\u05d9\u05d0\u05d5\u05e8",
+ "showLikes": "\u05d4\u05e6\u05d2 \u05db\u05de\u05d5\u05ea \u05f4\u05d0\u05d4\u05d1\u05ea\u05d9\u05f4",
+ "compactMode": "\u05de\u05e6\u05d1 \u05de\u05d5\u05e7\u05d8\u05df",
+ "embedConfirmText": "\u05d1\u05e2\u05d8 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d4\u05de\u05d8\u05e2\u05d4 \u05d6\u05d5, \u05d4\u05e0\u05db\u05dd \u05de\u05e1\u05db\u05d9\u05de\u05d9\u05dd \u05d0\u05dc",
+ "deletePostConfirm": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05dd \u05d1\u05d8\u05d5\u05d7\u05d9\u05dd \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05db\u05dd \u05dc\u05de\u05d7\u05d5\u05e7 \u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4?",
+ "archivePostConfirm": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05dd \u05d1\u05d8\u05d5\u05d7\u05d9\u05dd \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05db\u05dd \u05dc\u05d4\u05e2\u05d1\u05d9\u05e8 \u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df?",
+ "unarchivePostConfirm": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05dd \u05d1\u05d8\u05d5\u05d7\u05d9\u05dd \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05db\u05dd \u05dc\u05d4\u05d5\u05e6\u05d9\u05d0 \u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4 \u05de\u05d4\u05d0\u05e8\u05db\u05d9\u05d5\u05df?"
},
"story": {
- "add": "Add Story"
+ "add": "\u05d4\u05d5\u05e1\u05e3 \u05e1\u05d8\u05d5\u05e8\u05d9"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "\u05d0\u05e0\u05e9\u05d9\u05dd \u05e9\u05d0\u05ea\u05dd \u05d0\u05d5\u05dc\u05d9 \u05de\u05db\u05d9\u05e8\u05d9\u05dd"
}
}
\ No newline at end of file
diff --git a/public/_lang/id.json b/public/_lang/id.json
index b9110607..f978be2a 100644
--- a/public/_lang/id.json
+++ b/public/_lang/id.json
@@ -8,7 +8,7 @@
"likes": "Suka",
"share": "Bagikan",
"shared": "Dibagikan",
- "shares": "Bagi",
+ "shares": "Dibagikan",
"unshare": "Batalkan berbagi",
"cancel": "Batal",
"copyLink": "Salin tautan",
@@ -57,7 +57,7 @@
"notifications": {
"liked": "menyukai",
"commented": "mengomentari",
- "reacted": "reacted to your",
+ "reacted": "bereaksi terhadap",
"shared": "membagikan",
"tagged": "menandai Anda pada sebuah",
"updatedA": "mengupdate sebuah",
@@ -71,74 +71,74 @@
"dm": "dm",
"groupPost": "postingan grup",
"modlog": "modlog",
- "post": "post",
- "story": "story"
+ "post": "postingan",
+ "story": "cerita"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "Membagikan kepada pengikut",
+ "shareToOther": "Membagikan ke orang lain",
+ "noLikes": "Belum ada yang menyukai",
+ "uploading": "Mengunggah"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "posts": "Postingan",
+ "followers": "Pengikut",
+ "following": "Mengikuti",
+ "admin": "Pengelola",
+ "collections": "Koleksi",
+ "follow": "Ikuti",
+ "unfollow": "Berhenti Ikuti",
+ "editProfile": "Ubah Profil",
+ "followRequested": "Meminta Permintaan Mengikuti",
+ "joined": "Bergabung"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
- "selectOneOption": "Select one of the following options",
- "unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
- "markAsSpammerText": "Unlist + CW existing and future posts",
+ "viewPost": "Lihat Postingan",
+ "viewProfile": "Lihat Profil",
+ "moderationTools": "Alat Moderasi",
+ "report": "Laporkan",
+ "archive": "Arsipkan",
+ "unarchive": "Keluarkan dari arsip",
+ "embed": "Penyemat",
+ "selectOneOption": "Pilih salah satu dari opsi berikut",
+ "unlistFromTimelines": "Keluarkan dari Timeline",
+ "addCW": "Tambahkan peringatan konten",
+ "removeCW": "Hapus Peringatan Konten",
+ "markAsSpammer": "Tandai sebagai pelaku spam",
+ "markAsSpammerText": "Hapus dari daftar dan tambahkan peringatan konten pada konten yang telah ada dan akan datang",
"spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
- "impersonation": "Impersonation",
- "scamOrFraud": "Scam or Fraud",
- "confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
- "toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
- "embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "sensitive": "Konten Sensitif",
+ "abusive": "Kasar atau Berbahaya",
+ "underageAccount": "Akun di bawah umur",
+ "copyrightInfringement": "Pelanggaran Hak Cipta",
+ "impersonation": "Peniruan",
+ "scamOrFraud": "Penipuan",
+ "confirmReport": "Konfirmasi Laporan",
+ "confirmReportText": "Apakah Anda yakin ingin melaporkan postingan ini?",
+ "reportSent": "Laporan Terkirim!",
+ "reportSentText": "Kita telah berhasil menerima laporan Anda.",
+ "reportSentError": "Ada masalah saat melaporkan postingan ini.",
+ "modAddCWConfirm": "Apakah Anda yakin ingin menambahkan peringatan konten pada postingan ini?",
+ "modCWSuccess": "Berhasil menambahkan peringatan konten",
+ "modRemoveCWConfirm": "Apakah Anda yakin ingin menghapus peringatan konten pada postingan ini?",
+ "modRemoveCWSuccess": "Berhasil menghapus peringatan konten",
+ "modUnlistConfirm": "Apakah Anda yakin ingin mengeluarkan postingan ini dari daftar?",
+ "modUnlistSuccess": "Berhasil mengeluarkan postingan dari daftar",
+ "modMarkAsSpammerConfirm": "Apakah Anda ingin menandai pengguna ini sebagai pelaku spam? Semua postingan yang ada dan akan datang akan dihapus dari timeline dan peringatan konten akan diterapkan.",
+ "modMarkAsSpammerSuccess": "Berhasil menandai akun sebagai pelaku spam",
+ "toFollowers": "kepada Pengikut",
+ "showCaption": "Tampilkan Keterangan",
+ "showLikes": "Tampilkan suka",
+ "compactMode": "Mode Praktis",
+ "embedConfirmText": "Dengan menggunakan penyemat ini, Anda setuju dengan",
+ "deletePostConfirm": "Apakah Anda yakin ingin menghapus postingan ini?",
+ "archivePostConfirm": "Apakah Anda yakin ingin mengarsip postingan ini?",
+ "unarchivePostConfirm": "Apakah Anda yakin ingin tidak mengarsipkan postingan ini?"
},
"story": {
- "add": "Add Story"
+ "add": "Tambah Cerita"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Orang yang mungkin Anda kenal"
}
}
\ No newline at end of file
diff --git a/public/_lang/it.json b/public/_lang/it.json
index 7cffaae5..476bde3f 100644
--- a/public/_lang/it.json
+++ b/public/_lang/it.json
@@ -1,144 +1,144 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "comment": "Commenta",
+ "commented": "Commentato",
+ "comments": "Commenti",
+ "like": "Mi piace",
+ "liked": "Like aggiunto",
+ "likes": "Tutti i Like",
+ "share": "Condividi",
+ "shared": "Condiviso",
+ "shares": "Condivisioni",
+ "unshare": "Annulla condivisione",
+ "cancel": "Annulla",
+ "copyLink": "Copia link",
+ "delete": "Elimina",
+ "error": "Errore",
+ "errorMsg": "Qualcosa \u00e8 andato storto. Sei pregato di riprovare pi\u00f9 tardi.",
+ "oops": "Ops!",
+ "other": "Altro",
+ "readMore": "Leggi di pi\u00f9",
+ "success": "Riuscito",
+ "sensitive": "Sensibile",
+ "sensitiveContent": "Contenuto Sensibile",
+ "sensitiveContentWarning": "Questo post potrebbe contenere contenuti sensibili"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "Termini di Utilizzo",
+ "privacy": "Informativa sulla Privacy"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
+ "search": "Cerca",
+ "admin": "Pannello di amministrazione",
+ "homeFeed": "Feed Home",
+ "localFeed": "Feed Locale",
+ "globalFeed": "Feed Globale",
+ "discover": "Esplora",
+ "directMessages": "Messaggi Diretti",
+ "notifications": "Notifiche",
+ "groups": "Gruppi",
+ "stories": "Storie",
+ "profile": "Profilo",
"drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
+ "settings": "Impostazioni",
+ "compose": "Crea Nuovo",
+ "about": "Info",
+ "help": "Aiuto",
+ "language": "Lingua",
"privacy": "Privacy",
- "terms": "Terms",
- "backToPreviousDesign": "Go back to previous design"
+ "terms": "Condizioni",
+ "backToPreviousDesign": "Torna al design precedente"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "In arrivo",
+ "sent": "Inviata",
+ "requests": "Richieste"
},
"notifications": {
- "liked": "liked your",
- "commented": "commented on your",
- "reacted": "reacted to your",
- "shared": "shared your",
- "tagged": "tagged you in a",
- "updatedA": "updated a",
- "sentA": "sent a",
- "followed": "followed",
- "mentioned": "mentioned",
- "you": "you",
- "yourApplication": "Your application to join",
- "applicationApproved": "was approved!",
- "applicationRejected": "was rejected. You can re-apply to join in 6 months.",
+ "liked": "ha messo like a",
+ "commented": "ha commentato",
+ "reacted": "ha reagito a",
+ "shared": "ha condiviso",
+ "tagged": "ti ha taggato in",
+ "updatedA": "ha aggiornato un",
+ "sentA": "ha inviato un",
+ "followed": "stai seguendo",
+ "mentioned": "menzionato",
+ "you": "tu",
+ "yourApplication": "La tua candidatura per unirti",
+ "applicationApproved": "\u00e8 stata approvata!",
+ "applicationRejected": "\u00e8 stata respinta. Puoi richiedere di unirti fra 6 mesi.",
"dm": "dm",
- "groupPost": "group post",
+ "groupPost": "post di gruppo",
"modlog": "modlog",
"post": "post",
- "story": "story"
+ "story": "storia"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "Condividi con i follower",
+ "shareToOther": "Condividi con altri",
+ "noLikes": "Ancora nessun Like",
+ "uploading": "Caricamento in corso"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "posts": "Post",
+ "followers": "Follower",
+ "following": "Seguiti",
+ "admin": "Amministrazione",
+ "collections": "Collezioni",
+ "follow": "Segui",
+ "unfollow": "Smetti di seguire",
+ "editProfile": "Modifica profilo",
+ "followRequested": "Richiesta in attesa",
+ "joined": "Iscritto"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
- "selectOneOption": "Select one of the following options",
- "unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
- "markAsSpammerText": "Unlist + CW existing and future posts",
+ "viewPost": "Mostra Post",
+ "viewProfile": "Mostra Profilo",
+ "moderationTools": "Strumenti di moderazione",
+ "report": "Segnala",
+ "archive": "Archivia",
+ "unarchive": "Rimuovi dall'archivio",
+ "embed": "Incorpora",
+ "selectOneOption": "Scegli una delle seguenti opzioni",
+ "unlistFromTimelines": "Rimuovi dalle Timeline",
+ "addCW": "Aggiungi segnalazione",
+ "removeCW": "Rimuovi segnalazione",
+ "markAsSpammer": "Segna come Spammer",
+ "markAsSpammerText": "Rimuovi dalla lista + segnalazione di contenuti sensibili per post attuali e futuri",
"spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
- "impersonation": "Impersonation",
- "scamOrFraud": "Scam or Fraud",
- "confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
- "toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
- "embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "sensitive": "Contenuto Sensibile",
+ "abusive": "Abusivo o Dannoso",
+ "underageAccount": "Account di minorenne",
+ "copyrightInfringement": "Violazione del copyright",
+ "impersonation": "Impersonifica",
+ "scamOrFraud": "Truffa o frode",
+ "confirmReport": "Conferma Segnalazione",
+ "confirmReportText": "Sei sicur\u0259 di voler segnalare questo contenuto?",
+ "reportSent": "Segnalazione inviata!",
+ "reportSentText": "Abbiamo ricevuto la tua segnalazione con successo.",
+ "reportSentError": "Si \u00e8 verificato un problema nella segnalazione di questo post.",
+ "modAddCWConfirm": "Sei sicur\u0259 di voler segnalare come sensibile questo post?",
+ "modCWSuccess": "Segnalazione aggiunta con successo",
+ "modRemoveCWConfirm": "Sei sicur\u0259 di voler rimuovere la segnalazione da questo post?",
+ "modRemoveCWSuccess": "Segnalazione rimossa con successo",
+ "modUnlistConfirm": "Sei sicur\u0259 di voler rimuovere questo post dall\u2019elenco?",
+ "modUnlistSuccess": "Post rimosso dall\u2019elenco con successo",
+ "modMarkAsSpammerConfirm": "Sei sicuro di voler contrassegnare questo utente come spammer? Tutti i suoi post esistenti e futuri saranno rimossi dalle timeline e una segnalazione per contenuti sensibili sar\u00e0 aggiunta.",
+ "modMarkAsSpammerSuccess": "Account contrassegnato come spammer con successo",
+ "toFollowers": "ai follower",
+ "showCaption": "Mostra didascalia",
+ "showLikes": "Mostra i like",
+ "compactMode": "Modalit\u00e0 compatta",
+ "embedConfirmText": "Usando questo strumento, acconsenti ai nostri",
+ "deletePostConfirm": "Sei sicur\u0259 di voler eliminare questo post?",
+ "archivePostConfirm": "Sei sicur\u0259 di voler archiviare questo post?",
+ "unarchivePostConfirm": "Sei sicur\u0259 di voler rimuovere questo post dall\u2019archivio?"
},
"story": {
- "add": "Add Story"
+ "add": "Aggiungi Storia"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Persone che potresti conoscere"
}
}
\ No newline at end of file
diff --git a/public/_lang/ja.json b/public/_lang/ja.json
index 7cffaae5..e07b683d 100644
--- a/public/_lang/ja.json
+++ b/public/_lang/ja.json
@@ -1,58 +1,58 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "comment": "\u30b3\u30e1\u30f3\u30c8",
+ "commented": "\u30b3\u30e1\u30f3\u30c8\u3055\u308c\u307e\u3057\u305f",
+ "comments": "\u30b3\u30e1\u30f3\u30c8",
+ "like": "\u3044\u3044\u306d",
+ "liked": "\u3044\u3044\u306d\u3057\u307e\u3057\u305f",
+ "likes": "\u3044\u3044\u306d",
+ "share": "\u5171\u6709",
+ "shared": "\u5171\u6709\u3055\u308c\u307e\u3057\u305f",
+ "shares": "\u5171\u6709",
+ "unshare": "\u5171\u6709\u89e3\u9664",
+ "cancel": "\u30ad\u30e3\u30f3\u30bb\u30eb",
+ "copyLink": "\u30ea\u30f3\u30af\u3092\u30b3\u30d4\u30fc",
+ "delete": "\u524a\u9664",
+ "error": "\u30a8\u30e9\u30fc",
+ "errorMsg": "\u4f55\u304b\u304c\u9593\u9055\u3063\u3066\u3044\u307e\u3059\u3002\u3057\u3070\u3089\u304f\u3057\u3066\u304b\u3089\u3084\u308a\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002",
+ "oops": "\u304a\u304a\u3063\u3068\uff01",
+ "other": "\u305d\u306e\u4ed6",
+ "readMore": "\u3082\u3063\u3068\u8aad\u3080",
+ "success": "\u6210\u529f\u3057\u307e\u3057\u305f",
+ "sensitive": "\u30bb\u30f3\u30b7\u30c6\u30a3\u30d6",
+ "sensitiveContent": "\u30bb\u30f3\u30b7\u30c6\u30a3\u30d6\u306a\u30b3\u30f3\u30c6\u30f3\u30c4",
+ "sensitiveContentWarning": "\u3053\u306e\u6295\u7a3f\u306b\u306f\u30bb\u30f3\u30b7\u30c6\u30a3\u30d6\u306a\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "\u5229\u7528\u898f\u7d04",
+ "privacy": "\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u30dd\u30ea\u30b7\u30fc"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
- "drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
- "privacy": "Privacy",
- "terms": "Terms",
- "backToPreviousDesign": "Go back to previous design"
+ "search": "\u691c\u7d22",
+ "admin": "\u7ba1\u7406\u8005\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9",
+ "homeFeed": "\u30db\u30fc\u30e0\u30d5\u30a3\u30fc\u30c9",
+ "localFeed": "\u30ed\u30fc\u30ab\u30eb\u30d5\u30a3\u30fc\u30c9",
+ "globalFeed": "\u30b0\u30ed\u30fc\u30d0\u30eb\u30d5\u30a3\u30fc\u30c9",
+ "discover": "\u767a\u898b",
+ "directMessages": "\u30c0\u30a4\u30ec\u30af\u30c8\u30e1\u30c3\u30bb\u30fc\u30b8",
+ "notifications": "\u901a\u77e5",
+ "groups": "\u30b0\u30eb\u30fc\u30d7",
+ "stories": "\u30b9\u30c8\u30fc\u30ea\u30fc\u30ba",
+ "profile": "\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb",
+ "drive": "\u30c9\u30e9\u30a4\u30d6",
+ "settings": "\u8a2d\u5b9a",
+ "compose": "\u65b0\u898f\u6295\u7a3f",
+ "about": "\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u3064\u3044\u3066",
+ "help": "\u30d8\u30eb\u30d7",
+ "language": "\u8a00\u8a9e",
+ "privacy": "\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc",
+ "terms": "\u5229\u7528\u898f\u7d04",
+ "backToPreviousDesign": "\u4ee5\u524d\u306e\u30c7\u30b6\u30a4\u30f3\u306b\u623b\u3059"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "\u53d7\u4fe1\u30c8\u30ec\u30a4",
+ "sent": "\u9001\u4fe1\u6e08\u307f",
+ "requests": "\u30ea\u30af\u30a8\u30b9\u30c8"
},
"notifications": {
"liked": "liked your",
@@ -64,81 +64,81 @@
"sentA": "sent a",
"followed": "followed",
"mentioned": "mentioned",
- "you": "you",
+ "you": "\u3042\u306a\u305f",
"yourApplication": "Your application to join",
"applicationApproved": "was approved!",
"applicationRejected": "was rejected. You can re-apply to join in 6 months.",
"dm": "dm",
- "groupPost": "group post",
- "modlog": "modlog",
- "post": "post",
- "story": "story"
+ "groupPost": "\u30b0\u30eb\u30fc\u30d7\u306e\u6295\u7a3f",
+ "modlog": "\u30e2\u30c7\u30ec\u30fc\u30b7\u30e7\u30f3\u30ed\u30b0",
+ "post": "\u6295\u7a3f",
+ "story": "\u30b9\u30c8\u30fc\u30ea\u30fc"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709",
+ "shareToOther": "\u305d\u306e\u4ed6\u306b\u5171\u6709",
+ "noLikes": "\u307e\u3060\u8ab0\u304b\u3089\u3082\u3044\u3044\u306d\u3055\u308c\u3066\u3044\u307e\u305b\u3093",
+ "uploading": "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4e2d"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "posts": "\u6295\u7a3f",
+ "followers": "\u30d5\u30a9\u30ed\u30ef\u30fc",
+ "following": "\u30d5\u30a9\u30ed\u30fc\u4e2d",
+ "admin": "\u7ba1\u7406\u8005",
+ "collections": "\u30b3\u30ec\u30af\u30b7\u30e7\u30f3",
+ "follow": "\u30d5\u30a9\u30ed\u30fc",
+ "unfollow": "\u30d5\u30a9\u30ed\u30fc\u89e3\u9664",
+ "editProfile": "\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u3092\u7de8\u96c6",
+ "followRequested": "\u30d5\u30a9\u30ed\u30fc\u627f\u8a8d\u5f85\u3061",
+ "joined": "\u53c2\u52a0\u3057\u307e\u3057\u305f"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
- "selectOneOption": "Select one of the following options",
- "unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
- "markAsSpammer": "Mark as Spammer",
- "markAsSpammerText": "Unlist + CW existing and future posts",
- "spam": "Spam",
- "sensitive": "Sensitive Content",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
- "impersonation": "Impersonation",
- "scamOrFraud": "Scam or Fraud",
- "confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
+ "viewPost": "\u6295\u7a3f\u3092\u898b\u308b",
+ "viewProfile": "\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u3092\u898b\u308b",
+ "moderationTools": "\u30e2\u30c7\u30ec\u30fc\u30b7\u30e7\u30f3\u30c4\u30fc\u30eb",
+ "report": "\u5831\u544a",
+ "archive": "\u30a2\u30fc\u30ab\u30a4\u30d6",
+ "unarchive": "\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u89e3\u9664",
+ "embed": "\u57cb\u3081\u8fbc\u307f",
+ "selectOneOption": "\u4ee5\u4e0b\u306e\u9078\u629e\u80a2\u304b\u30891\u3064\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044",
+ "unlistFromTimelines": "\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3\u306b\u975e\u8868\u793a",
+ "addCW": "\u30b3\u30f3\u30c6\u30f3\u30c4\u8b66\u544a\u3092\u8ffd\u52a0",
+ "removeCW": "\u30b3\u30f3\u30c6\u30f3\u30c4\u8b66\u544a\u3092\u524a\u9664",
+ "markAsSpammer": "\u30b9\u30d1\u30e0\u3068\u3057\u3066\u30de\u30fc\u30af",
+ "markAsSpammerText": "\u975e\u8868\u793a\uff0b\u30b3\u30f3\u30c6\u30f3\u30c4\u8b66\u544a\u3092\u65e2\u5b58\u306e\u3001\u307e\u305f\u5c06\u6765\u306e\u6295\u7a3f\u306b\u8ffd\u52a0",
+ "spam": "\u30b9\u30d1\u30e0",
+ "sensitive": "\u30bb\u30f3\u30b7\u30c6\u30a3\u30d6\u306a\u30b3\u30f3\u30c6\u30f3\u30c4",
+ "abusive": "\u8650\u5f85\u307e\u305f\u306f\u6709\u5bb3",
+ "underageAccount": "\u672a\u6210\u5e74\u306e\u30a2\u30ab\u30a6\u30f3\u30c8",
+ "copyrightInfringement": "\u8457\u4f5c\u6a29\u4fb5\u5bb3",
+ "impersonation": "\u306a\u308a\u3059\u307e\u3057",
+ "scamOrFraud": "\u8a50\u6b3a\u307e\u305f\u306f\u4e0d\u6b63\u306a\u884c\u70ba",
+ "confirmReport": "\u5831\u544a\u3092\u9001\u4fe1",
+ "confirmReportText": "\u672c\u5f53\u306b\u3053\u306e\u6295\u7a3f\u3092\u5831\u544a\u3057\u307e\u3059\u304b\uff1f",
+ "reportSent": "\u5831\u544a\u304c\u9001\u4fe1\u3055\u308c\u307e\u3057\u305f\uff01",
+ "reportSentText": "\u3042\u306a\u305f\u306e\u5831\u544a\u3092\u53d7\u3051\u53d6\u308a\u307e\u3057\u305f\u3002",
+ "reportSentError": "\u3053\u306e\u6295\u7a3f\u3092\u5831\u544a\u3059\u308b\u969b\u306b\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002",
+ "modAddCWConfirm": "\u3053\u306e\u6295\u7a3f\u306b\u30b3\u30f3\u30c6\u30f3\u30c4\u8b66\u544a\u3092\u8ffd\u52a0\u3057\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3059\u304b\uff1f",
+ "modCWSuccess": "\u30b3\u30f3\u30c6\u30f3\u30c4\u8b66\u544a\u304c\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f",
+ "modRemoveCWConfirm": "\u672c\u5f53\u306b\u3053\u306e\u6295\u7a3f\u304b\u3089\u30b3\u30f3\u30c6\u30f3\u30c4\u8b66\u544a\u3092\u524a\u9664\u3057\u307e\u3059\u304b\uff1f",
+ "modRemoveCWSuccess": "\u30b3\u30f3\u30c6\u30f3\u30c4\u8b66\u544a\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f",
+ "modUnlistConfirm": "\u672c\u5f53\u306b\u3053\u306e\u6295\u7a3f\u3092\u975e\u8868\u793a\u306b\u3057\u307e\u3059\u304b\uff1f",
+ "modUnlistSuccess": "\u6295\u7a3f\u304c\u975e\u8868\u793a\u306b\u306a\u308a\u307e\u3057\u305f",
+ "modMarkAsSpammerConfirm": "\u3053\u306e\u30e6\u30fc\u30b6\u30fc\u3092\u30b9\u30d1\u30e0\u3068\u3057\u3066\u767b\u9332\u3057\u3066\u3044\u3044\u3067\u3059\u304b\uff1f\u65e2\u5b58\u306e\u307e\u305f\u3001\u4eca\u5f8c\u306e\u6295\u7a3f\u306f\u3059\u3079\u3066\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3\u306b\u8868\u793a\u3055\u308c\u305a\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u8b66\u544a\u304c\u9069\u7528\u3055\u308c\u307e\u3059\u3002",
+ "modMarkAsSpammerSuccess": "\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u30b9\u30d1\u30e0\u3068\u3057\u3066\u30de\u30fc\u30af\u3057\u307e\u3057\u305f",
"toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
+ "showCaption": "\u8aac\u660e\u3092\u8868\u793a",
+ "showLikes": "\u3044\u3044\u306d\u3092\u8868\u793a",
+ "compactMode": "\u30b3\u30f3\u30d1\u30af\u30c8\u30e2\u30fc\u30c9",
"embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "deletePostConfirm": "\u672c\u5f53\u306b\u3053\u306e\u6295\u7a3f\u3092\u524a\u9664\u3057\u307e\u3059\u304b\uff1f",
+ "archivePostConfirm": "\u672c\u5f53\u306b\u3053\u306e\u6295\u7a3f\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3059\u304b\uff1f",
+ "unarchivePostConfirm": "\u672c\u5f53\u306b\u3053\u306e\u6295\u7a3f\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u304b\u3089\u524a\u9664\u3057\u307e\u3059\u304b\uff1f"
},
"story": {
- "add": "Add Story"
+ "add": "\u30b9\u30c8\u30fc\u30ea\u30fc\u3092\u8ffd\u52a0"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "\u77e5\u308a\u5408\u3044\u304b\u3082"
}
}
\ No newline at end of file
diff --git a/public/_lang/ko.json b/public/_lang/ko.json
index 7cffaae5..27d6c48f 100644
--- a/public/_lang/ko.json
+++ b/public/_lang/ko.json
@@ -1,58 +1,58 @@
{
"common": {
- "comment": "Comment",
+ "comment": "\ub313\uae00",
"commented": "Commented",
"comments": "Comments",
- "like": "Like",
+ "like": "\uc88b\uc544\uc694",
"liked": "Liked",
"likes": "Likes",
- "share": "Share",
+ "share": "\uacf5\uc720",
"shared": "Shared",
"shares": "Shares",
"unshare": "Unshare",
- "cancel": "Cancel",
+ "cancel": "\ucde8\uc18c",
"copyLink": "Copy Link",
"delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "error": "\uc624\ub958",
+ "errorMsg": "\ubb38\uc81c\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. \ub098\uc911\uc5d0 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.",
+ "oops": "\uc774\ub7f0!",
+ "other": "\uae30\ud0c0",
+ "readMore": "\ub354\ubcf4\uae30",
+ "success": "\uc131\uacf5",
+ "sensitive": "\ubbfc\uac10\ud568 ",
+ "sensitiveContent": "\ubbfc\uac10\ud55c \ub0b4\uc6a9",
+ "sensitiveContentWarning": "\uc774 \uac8c\uc2dc\ubb3c\uc740 \ubbfc\uac10\ud55c \ub0b4\uc6a9\uc744 \ud3ec\ud568\ud569\ub2c8\ub2e4"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "\uc774\uc6a9\uc57d\uad00",
+ "privacy": "\uac1c\uc778\uc815\ubcf4 \ucde8\uae09\ubc29\uce68"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
- "drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
- "privacy": "Privacy",
- "terms": "Terms",
- "backToPreviousDesign": "Go back to previous design"
+ "search": "\uac80\uc0c9",
+ "admin": "\uad00\ub9ac\uc790 \ub300\uc2dc\ubcf4\ub4dc",
+ "homeFeed": "\ud648 \ud53c\ub4dc",
+ "localFeed": "\ub85c\uceec \ud53c\ub4dc",
+ "globalFeed": "\uae00\ub85c\ubc8c \ud53c\ub4dc",
+ "discover": "\ubc1c\uacac\ud558\uae30",
+ "directMessages": "\ucabd\uc9c0",
+ "notifications": "\uc54c\ub9bc",
+ "groups": "\uadf8\ub8f9",
+ "stories": "\uc2a4\ud1a0\ub9ac",
+ "profile": "\ud504\ub85c\ud544",
+ "drive": "\ub4dc\ub77c\uc774\ube0c",
+ "settings": "\uc124\uc815",
+ "compose": "\uc0c8\ub85c \ub9cc\ub4e4\uae30",
+ "about": "\uc815\ubcf4",
+ "help": "\ub3c4\uc6c0\ub9d0",
+ "language": "\uc5b8\uc5b4",
+ "privacy": "\uac1c\uc778\uc815\ubcf4",
+ "terms": "\uc57d\uad00",
+ "backToPreviousDesign": "\uc774\uc804 \ub514\uc790\uc778\uc73c\ub85c \ub3cc\uc544\uac00\uae30"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "\ubc1b\uc740 \ud3b8\uc9c0\ud568",
+ "sent": "\ubcf4\ub0c4",
+ "requests": "\uc694\uccad \ub0b4\uc5ed"
},
"notifications": {
"liked": "liked your",
@@ -106,8 +106,8 @@
"removeCW": "Remove Content Warning",
"markAsSpammer": "Mark as Spammer",
"markAsSpammerText": "Unlist + CW existing and future posts",
- "spam": "Spam",
- "sensitive": "Sensitive Content",
+ "spam": "\uc2a4\ud338",
+ "sensitive": "\ubbfc\uac10\ud55c \ub0b4\uc6a9",
"abusive": "Abusive or Harmful",
"underageAccount": "Underage Account",
"copyrightInfringement": "Copyright Infringement",
diff --git a/public/_lang/oc.json b/public/_lang/oc.json
index 5445b011..7cffaae5 100644
--- a/public/_lang/oc.json
+++ b/public/_lang/oc.json
@@ -42,6 +42,11 @@
"drive": "Drive",
"settings": "Settings",
"compose": "Create New",
+ "about": "About",
+ "help": "Help",
+ "language": "Language",
+ "privacy": "Privacy",
+ "terms": "Terms",
"backToPreviousDesign": "Go back to previous design"
},
"directMessages": {
diff --git a/public/_lang/pl.json b/public/_lang/pl.json
index d8782431..072f05a6 100644
--- a/public/_lang/pl.json
+++ b/public/_lang/pl.json
@@ -1,53 +1,53 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
+ "comment": "Skomentuj",
+ "commented": "Skomentowane",
+ "comments": "Komentarze",
+ "like": "Polub",
+ "liked": "Polubione",
+ "likes": "Polubienia",
+ "share": "Udost\u0119pnij",
+ "shared": "Udost\u0119pnione",
+ "shares": "Udost\u0119pnione",
+ "unshare": "Anuluj udost\u0119pnianie",
+ "cancel": "Anuluj",
+ "copyLink": "Kopiuj Link",
+ "delete": "Usu\u0144",
+ "error": "B\u0142\u0105d",
+ "errorMsg": "Co\u015b posz\u0142o nie tak. Spr\u00f3buj ponownie p\u00f3\u017aniej.",
+ "oops": "Ups!",
+ "other": "Inne",
+ "readMore": "Czytaj wi\u0119cej",
+ "success": "Sukces",
"sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "sensitiveContent": "Tre\u015b\u0107 wra\u017cliwa",
+ "sensitiveContentWarning": "Ten post mo\u017ce zawiera\u0107 wra\u017cliwe tre\u015bci"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "Warunki U\u017cytkowania",
+ "privacy": "Polityka Prywatno\u015bci"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
+ "search": "Szukaj",
+ "admin": "Panel administracyjny",
+ "homeFeed": "G\u0142\u00f3wny kana\u0142",
+ "localFeed": "Lokalny kana\u0142",
+ "globalFeed": "Globalny kana\u0142",
+ "discover": "Odkrywaj",
+ "directMessages": "Wiadomo\u015bci bezpo\u015brednie",
+ "notifications": "Powiadomienia",
+ "groups": "Grupy",
"stories": "Stories",
- "profile": "Profile",
- "drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
- "privacy": "Privacy",
- "terms": "Terms",
- "backToPreviousDesign": "Go back to previous design"
+ "profile": "Profil",
+ "drive": "Dysk",
+ "settings": "Ustawienia",
+ "compose": "Utw\u00f3rz nowy",
+ "about": "O nas",
+ "help": "Pomoc",
+ "language": "J\u0119zyk",
+ "privacy": "Prywatno\u015b\u0107",
+ "terms": "Regulamin",
+ "backToPreviousDesign": "Wr\u00f3\u0107 do poprzedniego wygl\u0105du"
},
"directMessages": {
"inbox": "Wiadomo\u015bci",
@@ -59,66 +59,66 @@
"commented": "skomentowa\u0142(a) twoje",
"reacted": "zareagowa\u0142(a) na twoje",
"shared": "shared your",
- "tagged": "tagged you in a",
- "updatedA": "updated a",
- "sentA": "sent a",
- "followed": "followed",
- "mentioned": "mentioned",
- "you": "you",
+ "tagged": "oznaczono ci\u0119 w",
+ "updatedA": "zaktualizowano",
+ "sentA": "wys\u0142ano",
+ "followed": "zaobserwowa\u0142(-a)",
+ "mentioned": "wspomina\u0142(-a)",
+ "you": "ciebie",
"yourApplication": "Your application to join",
- "applicationApproved": "was approved!",
- "applicationRejected": "was rejected. You can re-apply to join in 6 months.",
+ "applicationApproved": "zosta\u0142a zatwierdzona!",
+ "applicationRejected": "zosta\u0142a odrzucona. Mo\u017cesz ponownie ubiega\u0107 si\u0119 o do\u0142\u0105czenie za 6 miesi\u0119cy.",
"dm": "dm",
"groupPost": "group post",
- "modlog": "modlog",
+ "modlog": "logi",
"post": "post",
"story": "story"
},
"post": {
- "shareToFollowers": "Share to followers",
- "shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "shareToFollowers": "Udost\u0119pnij obserwuj\u0105cym",
+ "shareToOther": "Udost\u0119pnij innym",
+ "noLikes": "Brak polubie\u0144",
+ "uploading": "Przesy\u0142anie"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
+ "posts": "Posty",
+ "followers": "Obserwuj\u0105cy",
+ "following": "Obserwowane",
+ "admin": "Administrator",
+ "collections": "Kolekcje",
+ "follow": "Obserwuj",
+ "unfollow": "Przesta\u0144 obserwowa\u0107",
+ "editProfile": "Edytuj profil",
"followRequested": "Follow Requested",
- "joined": "Joined"
+ "joined": "Do\u0142\u0105czono"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
- "moderationTools": "Moderation Tools",
- "report": "Report",
- "archive": "Archive",
- "unarchive": "Unarchive",
- "embed": "Embed",
+ "viewPost": "Zobacz post",
+ "viewProfile": "Zobacz profil",
+ "moderationTools": "Narz\u0119dzia moderacyjne",
+ "report": "Zg\u0142o\u015b",
+ "archive": "Przenie\u015b do archiwum",
+ "unarchive": "Usu\u0144 z archiwum",
+ "embed": "Osad\u017a",
"selectOneOption": "Select one of the following options",
"unlistFromTimelines": "Unlist from Timelines",
- "addCW": "Add Content Warning",
- "removeCW": "Remove Content Warning",
+ "addCW": "Dodaj ostrze\u017cenie o tre\u015bci",
+ "removeCW": "Usu\u0144 ostrze\u017cenie o tre\u015bci",
"markAsSpammer": "Mark as Spammer",
"markAsSpammerText": "Unlist + CW existing and future posts",
"spam": "Spam",
- "sensitive": "Sensitive Content",
+ "sensitive": "Tre\u015b\u0107 wra\u017cliwa",
"abusive": "Abusive or Harmful",
"underageAccount": "Underage Account",
- "copyrightInfringement": "Copyright Infringement",
- "impersonation": "Impersonation",
+ "copyrightInfringement": "Naruszenie praw autorskich",
+ "impersonation": "Podszywanie si\u0119 pod inne osoby",
"scamOrFraud": "Scam or Fraud",
"confirmReport": "Confirm Report",
"confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
+ "reportSent": "Zg\u0142oszenie wys\u0142ane!",
+ "reportSentText": "Otrzymali\u015bmy Tw\u00f3j raport.",
+ "reportSentError": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas zg\u0142aszania tego posta.",
+ "modAddCWConfirm": "Czy na pewno chcesz doda\u0107 ostrze\u017cenie o tre\u015bci do tego wpisu?",
"modCWSuccess": "Successfully added content warning",
"modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
"modRemoveCWSuccess": "Successfully removed content warning",
@@ -128,17 +128,17 @@
"modMarkAsSpammerSuccess": "Successfully marked account as spammer",
"toFollowers": "to Followers",
"showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
+ "showLikes": "Poka\u017c polubienia",
+ "compactMode": "Tryb kompaktowy",
"embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "deletePostConfirm": "Czy na pewno chcesz usun\u0105\u0107 ten post?",
+ "archivePostConfirm": "Czy na pewno chcesz zarchiwizowa\u0107 ten post?",
+ "unarchivePostConfirm": "Czy na pewno chcesz cofn\u0105\u0107 archiwizacj\u0119 tego wpisu?"
},
"story": {
"add": "Add Story"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Ludzie, kt\u00f3rych mo\u017cesz zna\u0107"
}
}
\ No newline at end of file
diff --git a/public/_lang/pt.json b/public/_lang/pt.json
index 7cffaae5..b5a8c550 100644
--- a/public/_lang/pt.json
+++ b/public/_lang/pt.json
@@ -1,63 +1,63 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
+ "comment": "Comentar",
+ "commented": "Comentado",
+ "comments": "Coment\u00e1rios",
+ "like": "Gosto",
+ "liked": "Gostei",
+ "likes": "Gostos",
+ "share": "Partilhar",
+ "shared": "Partilhado",
+ "shares": "Partilhas",
+ "unshare": "Despartilhar",
+ "cancel": "Cancelar",
+ "copyLink": "Copiar link",
+ "delete": "Eliminar",
+ "error": "Erro",
+ "errorMsg": "Algo correu mal. Por favor, tente novamente mais tarde.",
"oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "other": "Outro",
+ "readMore": "Ler mais",
+ "success": "Sucesso",
+ "sensitive": "Sens\u00edvel",
+ "sensitiveContent": "Conte\u00fado sens\u00edvel",
+ "sensitiveContentWarning": "Este post pode conter conte\u00fado sens\u00edvel"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "Termos de Uso",
+ "privacy": "Pol\u00edtica de Privacidade"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
- "homeFeed": "Home Feed",
- "localFeed": "Local Feed",
- "globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
+ "search": "Pesquisa",
+ "admin": "Painel de Administra\u00e7\u00e3o",
+ "homeFeed": "Inicio",
+ "localFeed": "Feed local",
+ "globalFeed": "Feed global",
+ "discover": "Descobrir",
+ "directMessages": "Mensagens Diretas",
+ "notifications": "Notifica\u00e7\u00f5es",
+ "groups": "Grupos",
"stories": "Stories",
- "profile": "Profile",
- "drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
- "privacy": "Privacy",
- "terms": "Terms",
- "backToPreviousDesign": "Go back to previous design"
+ "profile": "Perfil",
+ "drive": "Disco",
+ "settings": "Defini\u00e7\u00f5es",
+ "compose": "Criar novo",
+ "about": "Sobre",
+ "help": "Ajuda",
+ "language": "Idioma",
+ "privacy": "Privacidade",
+ "terms": "Termos",
+ "backToPreviousDesign": "Voltar ao design antigo"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "Caixa de Entrada",
+ "sent": "Enviadas",
+ "requests": "Pedidos"
},
"notifications": {
- "liked": "liked your",
- "commented": "commented on your",
- "reacted": "reacted to your",
+ "liked": "gostou do seu",
+ "commented": "comentou no seu",
+ "reacted": "reagiu ao seu",
"shared": "shared your",
"tagged": "tagged you in a",
"updatedA": "updated a",
@@ -114,31 +114,31 @@
"impersonation": "Impersonation",
"scamOrFraud": "Scam or Fraud",
"confirmReport": "Confirm Report",
- "confirmReportText": "Are you sure you want to report this post?",
- "reportSent": "Report Sent!",
- "reportSentText": "We have successfully received your report.",
- "reportSentError": "There was an issue reporting this post.",
- "modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
- "modUnlistConfirm": "Are you sure you want to unlist this post?",
- "modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
- "toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
- "compactMode": "Compact Mode",
- "embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "confirmReportText": "Tem a certeza que deseja denunciar esta mensagem?",
+ "reportSent": "Den\u00fancia enviada!",
+ "reportSentText": "Recebemos com sucesso a sua den\u00fancia.",
+ "reportSentError": "Ocorreu um erro ao denunciar este conte\u00fado.",
+ "modAddCWConfirm": "Tem a certeza que pretende adicionar um alerta de conte\u00fado ao post?",
+ "modCWSuccess": "Adicionou com sucesso um alerta de conte\u00fado",
+ "modRemoveCWConfirm": "Tem a certeza que pretende remover um alerta de conte\u00fado deste post?",
+ "modRemoveCWSuccess": "Removeu com sucesso o alerta de conte\u00fado",
+ "modUnlistConfirm": "Tem a certeza que pretende deslistar este post?",
+ "modUnlistSuccess": "Deslistou com sucesso este post",
+ "modMarkAsSpammerConfirm": "Tem a certeza que deseja marcar este utilizador como spammer? Todos os posts existentes e futuros ser\u00e3o deslistados da timeline e o alerta de conte\u00fado ser\u00e1 aplicado.",
+ "modMarkAsSpammerSuccess": "Marcou com sucesso esta conta como spammer",
+ "toFollowers": "para Seguidores",
+ "showCaption": "Mostar legenda",
+ "showLikes": "Mostrar Gostos",
+ "compactMode": "Modo compacto",
+ "embedConfirmText": "Ao utilizar este conte\u00fado, encontra-se a aceitar os nossos",
+ "deletePostConfirm": "Tem a certeza que pretende remover este post?",
+ "archivePostConfirm": "Tem a certeza que pretende arquivar este post?",
+ "unarchivePostConfirm": "Tem a certeza que pretende desarquivar este post?"
},
"story": {
- "add": "Add Story"
+ "add": "Adicionar Storie"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Pessoas que talvez conhe\u00e7a"
}
}
\ No newline at end of file
diff --git a/public/_lang/ru.json b/public/_lang/ru.json
index c0131262..387c1aae 100644
--- a/public/_lang/ru.json
+++ b/public/_lang/ru.json
@@ -55,14 +55,14 @@
"requests": "\u0417\u0430\u043f\u0440\u043e\u0441\u044b"
},
"notifications": {
- "liked": "liked your",
- "commented": "commented on your",
- "reacted": "reacted to your",
- "shared": "shared your",
- "tagged": "tagged you in a",
+ "liked": "\u043f\u043e\u043d\u0440\u0430\u0432\u0438\u043b\u0441\u044f \u0432\u0430\u0448",
+ "commented": "\u043f\u0440\u043e\u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u043b \u0432\u0430\u0448",
+ "reacted": "\u043e\u0442\u0440\u0435\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u043b \u043d\u0430 \u0432\u0430\u0448",
+ "shared": "\u043f\u043e\u0434\u0435\u043b\u0438\u043b\u0441\u044f \u0432\u0430\u0448\u0438\u043c",
+ "tagged": "\u043e\u0442\u043c\u0435\u0442\u0438\u043b \u0432\u0430\u0441 \u0432 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438",
"updatedA": "updated a",
- "sentA": "sent a",
- "followed": "followed",
+ "sentA": "\u043e\u0442\u043f\u0440\u0430\u0432\u0438\u043b",
+ "followed": "\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043b\u0441\u044f",
"mentioned": "mentioned",
"you": "\u0432\u044b",
"yourApplication": "\u0412\u0430\u0448\u0435 \u0437\u0430\u044f\u0432\u043a\u0430 \u043d\u0430 \u0432\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435",
@@ -72,11 +72,11 @@
"groupPost": "\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u0433\u0440\u0443\u043f\u043f\u044b",
"modlog": "modlog",
"post": "\u043f\u043e\u0441\u0442",
- "story": "story"
+ "story": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
},
"post": {
"shareToFollowers": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f \u0441 \u043f\u043e\u0434\u043f\u0438\u0441\u0447\u0438\u043a\u0430\u043c\u0438",
- "shareToOther": "Share to other",
+ "shareToOther": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438",
"noLikes": "\u041f\u043e\u043a\u0430 \u043d\u0438\u043a\u043e\u043c\u0443 \u043d\u0435 \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u043b\u043e\u0441\u044c",
"uploading": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f"
},
@@ -108,8 +108,8 @@
"markAsSpammerText": "Unlist + CW existing and future posts",
"spam": "\u0421\u043f\u0430\u043c",
"sensitive": "\u0414\u0435\u043b\u0438\u043a\u0430\u0442\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442",
- "abusive": "Abusive or Harmful",
- "underageAccount": "Underage Account",
+ "abusive": "\u0416\u0435\u0441\u0442\u043e\u043a\u043e\u0435 \u043e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u043f\u0440\u0438\u0447\u0438\u043d\u0435\u043d\u0438\u0435 \u0432\u0440\u0435\u0434\u0430",
+ "underageAccount": "\u041d\u0435\u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e\u043b\u0435\u0442\u043d\u0438\u0439 \u0430\u043a\u043a\u0430\u0443\u043d\u0442",
"copyrightInfringement": "\u041d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u0435 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432",
"impersonation": "\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0435\u0431\u044f \u0437\u0430 \u0434\u0440\u0443\u0433\u043e\u0433\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430",
"scamOrFraud": "\u041e\u0431\u043c\u0430\u043d \u0438\u043b\u0438 \u043c\u043e\u0448\u0435\u043d\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u043e",
@@ -124,8 +124,8 @@
"modRemoveCWSuccess": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 \u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e",
"modUnlistConfirm": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0441\u043a\u0440\u044b\u0442\u044c \u044d\u0442\u043e\u0442 \u043f\u043e\u0441\u0442 \u0438\u0437 \u043b\u0435\u043d\u0442?",
"modUnlistSuccess": "Successfully unlisted post",
- "modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
- "modMarkAsSpammerSuccess": "Successfully marked account as spammer",
+ "modMarkAsSpammerConfirm": "\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441\u043f\u0430\u043c\u043e\u043c? \u0412\u0441\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0438 \u0431\u0443\u0434\u0443\u0449\u0438\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u0438\u0437 \u0441\u043f\u0438\u0441\u043a\u0430 \u0432 \u0441\u0440\u043e\u043a\u0438, \u0438 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c\u0441\u044f \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 \u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0438.",
+ "modMarkAsSpammerSuccess": "\u0410\u043a\u043a\u0430\u0443\u043d\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u043c\u0435\u0447\u0435\u043d \u043a\u0430\u043a \u0441\u043f\u0430\u043c\u043c\u0435\u0440",
"toFollowers": "to Followers",
"showCaption": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043f\u043e\u0434\u043f\u0438\u0441\u044c",
"showLikes": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043e\u0442\u043c\u0435\u0442\u043a\u0438 \"\u043c\u043d\u0435 \u043d\u0440\u0430\u0432\u0438\u0442\u0441\u044f\"",
diff --git a/public/_lang/tr.json b/public/_lang/tr.json
index 7cffaae5..0f578ace 100644
--- a/public/_lang/tr.json
+++ b/public/_lang/tr.json
@@ -1,58 +1,58 @@
{
"common": {
- "comment": "Comment",
- "commented": "Commented",
- "comments": "Comments",
- "like": "Like",
- "liked": "Liked",
- "likes": "Likes",
- "share": "Share",
- "shared": "Shared",
- "shares": "Shares",
- "unshare": "Unshare",
- "cancel": "Cancel",
- "copyLink": "Copy Link",
- "delete": "Delete",
- "error": "Error",
- "errorMsg": "Something went wrong. Please try again later.",
- "oops": "Oops!",
- "other": "Other",
- "readMore": "Read more",
- "success": "Success",
- "sensitive": "Sensitive",
- "sensitiveContent": "Sensitive Content",
- "sensitiveContentWarning": "This post may contain sensitive content"
+ "comment": "Yorum",
+ "commented": "Yorumlar",
+ "comments": "Yorumlar",
+ "like": "Be\u011fen",
+ "liked": "Be\u011fenildi",
+ "likes": "Be\u011feniler",
+ "share": "Payla\u015f",
+ "shared": "Payla\u015f\u0131lan",
+ "shares": "Payla\u015f\u0131lanlar",
+ "unshare": "Payla\u015f\u0131m\u0131 kald\u0131r",
+ "cancel": "\u0130ptal",
+ "copyLink": "Ba\u011flant\u0131y\u0131 Kopyala",
+ "delete": "Sil",
+ "error": "Hata",
+ "errorMsg": "Bir \u015feyler yanl\u0131\u015f gitti. L\u00fctfen daha sonra tekrar deneyiniz.",
+ "oops": "Hay aksi!",
+ "other": "Di\u011fer",
+ "readMore": "Daha fazlas\u0131n\u0131 oku",
+ "success": "Ba\u015far\u0131l\u0131",
+ "sensitive": "Hassasiyet",
+ "sensitiveContent": "Hassas i\u00e7erik",
+ "sensitiveContentWarning": "Bu ileti hassas i\u00e7erik i\u00e7eriyor olabilir"
},
"site": {
- "terms": "Terms of Use",
- "privacy": "Privacy Policy"
+ "terms": "Kullan\u0131m Ko\u015fullar\u0131",
+ "privacy": "Gizlilik Politikas\u0131"
},
"navmenu": {
- "search": "Search",
- "admin": "Admin Dashboard",
+ "search": "Arama",
+ "admin": "Y\u00f6netici Paneli",
"homeFeed": "Home Feed",
"localFeed": "Local Feed",
"globalFeed": "Global Feed",
- "discover": "Discover",
- "directMessages": "Direct Messages",
- "notifications": "Notifications",
- "groups": "Groups",
- "stories": "Stories",
- "profile": "Profile",
- "drive": "Drive",
- "settings": "Settings",
- "compose": "Create New",
- "about": "About",
- "help": "Help",
- "language": "Language",
- "privacy": "Privacy",
- "terms": "Terms",
+ "discover": "Ke\u015ffet",
+ "directMessages": "Direkt Mesajlar",
+ "notifications": "Bildirimler",
+ "groups": "Gruplar",
+ "stories": "Hikayeler",
+ "profile": "Profil",
+ "drive": "Depolama",
+ "settings": "Ayarlar",
+ "compose": "Yeni olu\u015ftur",
+ "about": "Hakk\u0131nda",
+ "help": "Yard\u0131m",
+ "language": "Dil",
+ "privacy": "Gizlilik",
+ "terms": "Ko\u015fullar",
"backToPreviousDesign": "Go back to previous design"
},
"directMessages": {
- "inbox": "Inbox",
- "sent": "Sent",
- "requests": "Requests"
+ "inbox": "Gelen Kutusu",
+ "sent": "G\u00f6nder",
+ "requests": "\u0130stekler"
},
"notifications": {
"liked": "liked your",
@@ -72,33 +72,33 @@
"groupPost": "group post",
"modlog": "modlog",
"post": "post",
- "story": "story"
+ "story": "hikaye"
},
"post": {
- "shareToFollowers": "Share to followers",
+ "shareToFollowers": "Takip\u00e7ileri payla\u015f",
"shareToOther": "Share to other",
- "noLikes": "No likes yet",
- "uploading": "Uploading"
+ "noLikes": "Hen\u00fcz be\u011fenilmedi",
+ "uploading": "Y\u00fckleniyor"
},
"profile": {
- "posts": "Posts",
- "followers": "Followers",
- "following": "Following",
- "admin": "Admin",
- "collections": "Collections",
- "follow": "Follow",
- "unfollow": "Unfollow",
- "editProfile": "Edit Profile",
- "followRequested": "Follow Requested",
- "joined": "Joined"
+ "posts": "G\u00f6nderiler",
+ "followers": "Takip\u00e7iler",
+ "following": "Takip ediliyor",
+ "admin": "Y\u00f6netici",
+ "collections": "Koleksiyonlar",
+ "follow": "Takip et",
+ "unfollow": "Takibi b\u0131rak",
+ "editProfile": "Profili D\u00fczenle",
+ "followRequested": "Takip \u0130ste\u011fi",
+ "joined": "Kat\u0131ld\u0131"
},
"menu": {
- "viewPost": "View Post",
- "viewProfile": "View Profile",
+ "viewPost": "G\u00f6nderiyi g\u00f6r\u00fcnt\u00fcle",
+ "viewProfile": "Profili G\u00f6r\u00fcnt\u00fcle",
"moderationTools": "Moderation Tools",
- "report": "Report",
+ "report": "Bildir",
"archive": "Archive",
- "unarchive": "Unarchive",
+ "unarchive": "Ar\u015fivden \u00e7\u0131kar",
"embed": "Embed",
"selectOneOption": "Select one of the following options",
"unlistFromTimelines": "Unlist from Timelines",
@@ -107,7 +107,7 @@
"markAsSpammer": "Mark as Spammer",
"markAsSpammerText": "Unlist + CW existing and future posts",
"spam": "Spam",
- "sensitive": "Sensitive Content",
+ "sensitive": "Hassas i\u00e7erik",
"abusive": "Abusive or Harmful",
"underageAccount": "Underage Account",
"copyrightInfringement": "Copyright Infringement",
@@ -119,26 +119,26 @@
"reportSentText": "We have successfully received your report.",
"reportSentError": "There was an issue reporting this post.",
"modAddCWConfirm": "Are you sure you want to add a content warning to this post?",
- "modCWSuccess": "Successfully added content warning",
- "modRemoveCWConfirm": "Are you sure you want to remove the content warning on this post?",
- "modRemoveCWSuccess": "Successfully removed content warning",
+ "modCWSuccess": "\u0130\u00e7erik uyar\u0131s\u0131 ba\u015far\u0131yla eklendi",
+ "modRemoveCWConfirm": "Bu g\u00f6nderiden i\u00e7erik uyar\u0131s\u0131n\u0131 kald\u0131rmak istedi\u011finize emin misiniz?",
+ "modRemoveCWSuccess": "\u0130\u00e7erik uyar\u0131s\u0131 ba\u015far\u0131yla kald\u0131r\u0131ld\u0131",
"modUnlistConfirm": "Are you sure you want to unlist this post?",
"modUnlistSuccess": "Successfully unlisted post",
"modMarkAsSpammerConfirm": "Are you sure you want to mark this user as a spammer? All existing and future posts will be unlisted on timelines and a content warning will be applied.",
"modMarkAsSpammerSuccess": "Successfully marked account as spammer",
"toFollowers": "to Followers",
- "showCaption": "Show Caption",
- "showLikes": "Show Likes",
+ "showCaption": "A\u00e7\u0131klamay\u0131 g\u00f6ster",
+ "showLikes": "Be\u011fenileri G\u00f6ster",
"compactMode": "Compact Mode",
"embedConfirmText": "By using this embed, you agree to our",
- "deletePostConfirm": "Are you sure you want to delete this post?",
- "archivePostConfirm": "Are you sure you want to archive this post?",
- "unarchivePostConfirm": "Are you sure you want to unarchive this post?"
+ "deletePostConfirm": "Bu g\u00f6nderiyi silmek istedi\u011finizden emin misiniz?",
+ "archivePostConfirm": "Bu g\u00f6nderiyi ar\u015fivlemek istedi\u011finizden emin misiniz?",
+ "unarchivePostConfirm": "Bu g\u00f6nderiyi ar\u015fivden \u00e7\u0131karmak istedi\u011finize emin misiniz?"
},
"story": {
- "add": "Add Story"
+ "add": "Hikaye ekle"
},
"timeline": {
- "peopleYouMayKnow": "People you may know"
+ "peopleYouMayKnow": "Tan\u0131yor olabilece\u011fin ki\u015filer"
}
}
\ No newline at end of file
diff --git a/public/js/spa.js b/public/js/spa.js
index 20a0b913..5aabd544 100644
--- a/public/js/spa.js
+++ b/public/js/spa.js
@@ -1 +1 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[20],{"+3PN":function(t,e,n){var i=n("eWeD");"string"==typeof i&&(i=[[t.i,i,""]]);var a={hmr:!0,transform:void 0,insertInto:void 0};n("aET+")(i,a);i.locals&&(t.exports=i.locals)},"+VHp":function(t,e,n){"use strict";n("V8Te")},"+uhv":function(t,e,n){"use strict";n("M24V")},"/RaH":function(t,e,n){var i=n("iTP3");"string"==typeof i&&(i=[[t.i,i,""]]);var a={hmr:!0,transform:void 0,insertInto:void 0};n("aET+")(i,a);i.locals&&(t.exports=i.locals)},"/Y1X":function(t,e,n){"use strict";n("KOWi")},"/jad":function(t,e,n){"use strict";var i=n("1gDp"),a=n("ngXG"),r={props:{status:{type:Object},recommended:{type:Boolean,default:!1},reactionBar:{type:Boolean,default:!0},hasTopBorder:{type:Boolean,default:!1},size:{type:String,validator:function(t){return["regular","small"].includes(t)},default:"regular"}},components:{"context-menu":i.a,"poll-card":a.a},data:function(){return{config:window.App.config,profile:{},loading:!0,replies:[],replyId:null,lightboxMedia:!1,showSuggestions:!0,showReadMore:!0,replyStatus:{},replyText:"",replyNsfw:!1,emoji:window.App.util.emoji}},mounted:function(){this.profile=window._sharedData.curUser},methods:{formatCount:function(t){return App.util.format.count(t)},statusUrl:function(t){return 1==t.local?t.url:"/i/web/post/_/"+t.account.id+"/"+t.id},profileUrl:function(t){return 1==t.local?t.account.url:"/i/web/profile/_/"+t.account.id},timestampFormat:function(t){var e=new Date(t);return e.toDateString()+" "+e.toLocaleTimeString()},shortTimestamp:function(t){return window.App.util.format.timeAgo(t)},statusCardUsernameFormat:function(t){if(1==t.account.local)return t.account.username;var e=window.App.config.username.remote.format,n=window.App.config.username.remote.custom,i=t.account.username,a=document.createElement("a");switch(a.href=t.account.url,a=a.hostname,e){case"@":return i+'@'+a+"";case"from":return i+' from '+a+"";case"custom":return i+' '+n+" "+a+"";default:return i+'@'+a+""}},lightbox:function(t){window.location.href=t.media_attachments[0].url},labelRedirect:function(t){var e="/i/redirect?url="+encodeURI(this.config.features.label.covid.url);window.location.href=e},likeStatus:function(t,e){if(0!=$("body").hasClass("loggedIn")){var n=t.favourites_count;t.favourited=!t.favourited,axios.post("/i/like",{item:t.id}).then((function(e){t.favourites_count=e.data.count,t.favourited=!!t.favourited})).catch((function(e){t.favourited=!!t.favourited,t.favourites_count=n,swal("Error","Something went wrong, please try again later.","error")})),window.navigator.vibrate(200),t.favourited&&setTimeout((function(){e.target.classList.add("animate__animated","animate__bounce")}),100)}},commentFocus:function(t,e){this.$emit("comment-focus",t)},commentSubmit:function(t,e){var n=this;this.replySending=!0;var i=t.id,a=this.replyText,r=this.config.uploader.max_caption_length;if(a.length>r)return this.replySending=!1,void swal("Comment Too Long","Please make sure your comment is "+r+" characters or less.","error");axios.post("/i/comment",{item:i,comment:a,sensitive:this.replyNsfw}).then((function(t){n.replyText="",n.replies.push(t.data.entity),n.$refs.replyModal.hide()})),this.replySending=!1},owner:function(t){return this.profile.id===t.account.id},admin:function(){return 1==this.profile.is_admin},ownerOrAdmin:function(t){return this.owner(t)||this.admin()},ctxMenu:function(){this.$refs.contextMenu.open()},timeAgo:function(t){return App.util.format.timeAgo(t)},statusDeleted:function(t){this.$emit("status-delete",t)},canFollow:function(t){return!!t.hasOwnProperty("relationship")&&(!(!t.hasOwnProperty("account")||!t.account.hasOwnProperty("id"))&&(t.account.id!=this.profile.id&&!t.relationship.following))},follow:function(t){var e=this;event.currentTarget.blur(),axios.post("/i/follow",{item:t}).then((function(n){e.status.relationship.following=!0,e.$emit("followed",t)})).catch((function(t){t.response.data.message&&swal("Error",t.response.data.message,"error")}))},unfollow:function(t){var e=this;event.currentTarget.blur(),axios.post("/i/follow",{item:t}).then((function(n){e.status.relationship.following=!1,e.$emit("unfollowed",t)})).catch((function(t){t.response.data.message&&swal("Error",t.response.data.message,"error")}))}}},o=(n("RePV"),n("KHd+")),s=Object(o.a)(r,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"status-card-component",class:{"status-card-sm":"small"===t.size}},["text"===t.status.pf_type?n("div",{staticClass:"card shadow-none border rounded-0",class:{"border-top-0":!t.hasTopBorder}},[n("div",{staticClass:"card-body"},[n("div",{staticClass:"media"},[n("img",{staticClass:"rounded-circle box-shadow mr-2",attrs:{src:t.status.account.avatar,width:"32px",height:"32px",onerror:"this.onerror=null;this.src='/storage/avatars/default.png?v=2'",alt:"avatar"}}),t._v(" "),n("div",{staticClass:"media-body"},[n("div",{staticClass:"pl-2 d-flex align-items-top"},[n("a",{staticClass:"username font-weight-bold text-dark text-decoration-none text-break",attrs:{href:t.profileUrl(t.status)},domProps:{innerHTML:t._s(t.statusCardUsernameFormat(t.status))}},[t._v("\n\t\t\t\t\t\t\tLoading...\n\t\t\t\t\t\t")]),t._v(" "),n("span",{staticClass:"px-1 text-lighter"},[t._v("\n\t\t\t\t\t\t\t·\n\t\t\t\t\t\t")]),t._v(" "),n("a",{staticClass:"font-weight-bold text-lighter",attrs:{href:t.statusUrl(t.status)}},[t._v("\n\t\t\t\t\t\t\t"+t._s(t.shortTimestamp(t.status.created_at))+"\n\t\t\t\t\t\t")]),t._v(" "),n("span",{staticClass:"text-right",staticStyle:{"flex-grow":"1"}},[n("button",{staticClass:"btn btn-link text-dark py-0",attrs:{type:"button"},on:{click:function(e){return t.ctxMenu()}}},[n("span",{staticClass:"fas fa-ellipsis-h text-lighter"}),t._v(" "),n("span",{staticClass:"sr-only"},[t._v("Post Menu")])])])]),t._v(" "),n("div",{staticClass:"pl-2"},[t.status.sensitive?n("details",[n("summary",{staticClass:"mb-2 font-weight-bold text-muted"},[t._v("Content Warning")]),t._v(" "),n("p",{staticClass:"pt-2 text-break status-content",domProps:{innerHTML:t._s(t.status.content)}})]):n("p",{staticClass:"pt-2 text-break status-content",domProps:{innerHTML:t._s(t.status.content)}}),t._v(" "),n("p",{staticClass:"mb-0"},[n("i",{staticClass:"fa-heart fa-lg cursor-pointer mr-3",class:{"far text-muted":!t.status.favourited,"fas text-danger":t.status.favourited},on:{click:function(e){return t.likeStatus(t.status,e)}}}),t._v(" "),n("i",{staticClass:"far fa-comment cursor-pointer text-muted fa-lg mr-3",on:{click:function(e){return t.commentFocus(t.status,e)}}})])])])])])]):"poll"===t.status.pf_type?n("div",[n("poll-card",{attrs:{status:t.status,profile:t.profile},on:{"status-delete":t.statusDeleted}})],1):n("div",{staticClass:"card rounded-0 border-top-0 status-card card-md-rounded-0 shadow-none border"},[t.status?n("div",{staticClass:"card-header d-inline-flex align-items-center bg-white"},[n("div",[n("img",{staticClass:"rounded-circle box-shadow",attrs:{src:t.status.account.avatar,width:"32px",height:"32px",onerror:"this.onerror=null;this.src='/storage/avatars/default.png?v=2'",alt:"avatar"}})]),t._v(" "),n("div",{staticClass:"pl-2"},[n("a",{staticClass:"username font-weight-bold text-dark text-decoration-none text-break",attrs:{href:t.profileUrl(t.status)},domProps:{innerHTML:t._s(t.statusCardUsernameFormat(t.status))}},[t._v("\n\t\t\t\t\tLoading...\n\t\t\t\t")]),t._v(" "),t.status.account.is_admin?n("span",{staticClass:"fa-stack",staticStyle:{height:"1em","line-height":"1em","max-width":"19px"},attrs:{title:"Admin Account","data-toggle":"tooltip"}},[n("i",{staticClass:"fas fa-certificate text-danger fa-stack-1x"}),t._v(" "),n("i",{staticClass:"fas fa-crown text-white fa-sm fa-stack-1x",staticStyle:{"font-size":"7px"}})]):t._e(),t._v(" "),n("div",{staticClass:"d-flex align-items-center"},[t.status.place?n("a",{staticClass:"small text-decoration-none text-muted",attrs:{href:"/discover/places/"+t.status.place.id+"/"+t.status.place.slug,title:"Location","data-toggle":"tooltip"}},[n("i",{staticClass:"fas fa-map-marked-alt"}),t._v(" "+t._s(t.status.place.name)+", "+t._s(t.status.place.country))]):t._e()])]),t._v(" "),t.canFollow(t.status)?n("div",[n("span",{staticClass:"px-2"}),t._v(" "),n("button",{staticClass:"btn btn-primary btn-sm font-weight-bold py-1 px-3 rounded-lg",on:{click:function(e){return t.follow(t.status.account.id)}}},[n("i",{staticClass:"far fa-user-plus mr-1"}),t._v(" Follow")])]):t._e(),t._v(" "),t.status.hasOwnProperty("relationship")&&t.status.relationship.hasOwnProperty("following")&&t.status.relationship.following?n("div",[n("span",{staticClass:"px-2"}),t._v(" "),n("button",{staticClass:"btn btn-outline-primary btn-sm font-weight-bold py-1 px-3 rounded-lg",on:{click:function(e){return t.unfollow(t.status.account.id)}}},[n("i",{staticClass:"far fa-user-check mr-1"}),t._v(" Following")])]):t._e(),t._v(" "),n("div",{staticClass:"text-right",staticStyle:{"flex-grow":"1"}},[n("button",{staticClass:"btn btn-link text-dark py-0",attrs:{type:"button"},on:{click:function(e){return t.ctxMenu()}}},[n("span",{staticClass:"fas fa-ellipsis-h text-lighter"}),t._v(" "),n("span",{staticClass:"sr-only"},[t._v("Post Menu")])])])]):t._e(),t._v(" "),n("div",{staticClass:"postPresenterContainer",staticStyle:{background:"#000"}},["photo"===t.status.pf_type?n("div",{staticClass:"w-100"},[n("photo-presenter",{attrs:{status:t.status},on:{lightbox:t.lightbox,togglecw:function(e){t.status.sensitive=!1}}})],1):"video"===t.status.pf_type?n("div",{staticClass:"w-100"},[n("video-presenter",{attrs:{status:t.status},on:{togglecw:function(e){t.status.sensitive=!1}}})],1):"photo:album"===t.status.pf_type?n("div",{staticClass:"w-100"},[n("photo-album-presenter",{attrs:{status:t.status},on:{lightbox:t.lightbox,togglecw:function(e){t.status.sensitive=!1}}})],1):"video:album"===t.status.pf_type?n("div",{staticClass:"w-100"},[n("video-album-presenter",{attrs:{status:t.status},on:{togglecw:function(e){t.status.sensitive=!1}}})],1):"photo:video:album"===t.status.pf_type?n("div",{staticClass:"w-100"},[n("mixed-album-presenter",{attrs:{status:t.status},on:{lightbox:t.lightbox,togglecw:function(e){t.status.sensitive=!1}}})],1):n("div",{staticClass:"w-100"},[n("p",{staticClass:"text-center p-0 font-weight-bold text-white"},[t._v("Error: Problem rendering preview.")])])]),t._v(" "),t.config.features.label.covid.enabled&&t.status.label&&1==t.status.label.covid?n("div",{staticClass:"card-body border-top border-bottom py-2 cursor-pointer pr-2",on:{click:function(e){return t.labelRedirect()}}},[n("p",{staticClass:"font-weight-bold d-flex justify-content-between align-items-center mb-0"},[n("span",[n("i",{staticClass:"fas fa-info-circle mr-2"}),t._v("\n\t\t\t\t\tFor information about COVID-19, "+t._s(t.config.features.label.covid.org)+"\n\t\t\t\t")]),t._v(" "),t._m(0)])]):t._e(),t._v(" "),n("div",{staticClass:"card-body"},[t.reactionBar?n("div",{staticClass:"reactions my-1 pb-2"},[t.status.favourited?n("h3",{staticClass:"fas fa-heart text-danger pr-3 m-0 cursor-pointer",attrs:{title:"Like"},on:{click:function(e){return t.likeStatus(t.status,e)}}}):n("h3",{staticClass:"fal fa-heart pr-3 m-0 like-btn text-dark cursor-pointer",attrs:{title:"Like"},on:{click:function(e){return t.likeStatus(t.status,e)}}}),t._v(" "),t.status.comments_disabled?t._e():n("h3",{staticClass:"fal fa-comment text-dark pr-3 m-0 cursor-pointer",attrs:{title:"Comment"},on:{click:function(e){return t.commentFocus(t.status,e)}}}),t._v(" "),t.status.taggedPeople.length?n("span",{staticClass:"float-right"},[n("span",{staticClass:"font-weight-light small",staticStyle:{color:"#718096"}},[n("i",{staticClass:"far fa-user",attrs:{"data-toggle":"tooltip",title:"Tagged People"}}),t._v(" "),t._l(t.status.taggedPeople,(function(t,e){return n("span",{staticClass:"mr-n2"},[n("a",{attrs:{href:"/"+t.username}},[n("img",{staticClass:"border rounded-circle",attrs:{src:t.avatar,width:"20px",height:"20px","data-toggle":"tooltip",title:"@"+t.username,alt:"Avatar"}})])])}))],2)]):t._e()]):t._e(),t._v(" "),t.status.liked_by.username&&t.status.liked_by.username!==t.profile.username?n("div",{staticClass:"likes mb-1"},[n("span",{staticClass:"like-count"},[t._v("Liked by\n\t\t\t\t\t"),n("a",{staticClass:"font-weight-bold text-dark",attrs:{href:t.status.liked_by.url}},[t._v(t._s(t.status.liked_by.username))]),t._v(" "),1==t.status.liked_by.others?n("span",[t._v("\n\t\t\t\t\t\tand "),t.status.liked_by.total_count_pretty?n("span",{staticClass:"font-weight-bold"},[t._v(t._s(t.status.liked_by.total_count_pretty))]):t._e(),t._v(" "),n("span",{staticClass:"font-weight-bold"},[t._v("others")])]):t._e()])]):t._e(),t._v(" "),"text"!=t.status.pf_type?n("div",{staticClass:"caption"},[t.status.sensitive?t._e():n("p",{staticClass:"mb-2 read-more",staticStyle:{overflow:"hidden"}},[n("span",{staticClass:"username font-weight-bold"},[n("bdi",[n("a",{staticClass:"text-dark",attrs:{href:t.profileUrl(t.status)}},[t._v(t._s(t.status.account.username))])])]),t._v(" "),n("span",{staticClass:"status-content",domProps:{innerHTML:t._s(t.status.content)}})])]):t._e(),t._v(" "),n("div",{staticClass:"timestamp mt-2"},[n("p",{staticClass:"small mb-0"},["archived"!=t.status.visibility?n("a",{staticClass:"text-muted text-uppercase",attrs:{href:t.statusUrl(t.status)}},[n("timeago",{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.bottom",modifiers:{hover:!0,bottom:!0}}],attrs:{datetime:t.status.created_at,"auto-update":60,"converter-options":{includeSeconds:!0},title:t.timestampFormat(t.status.created_at)}})],1):n("span",{staticClass:"text-muted text-uppercase"},[t._v("\n\t\t\t\t\t\tPosted "),n("timeago",{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.bottom",modifiers:{hover:!0,bottom:!0}}],attrs:{datetime:t.status.created_at,"auto-update":60,"converter-options":{includeSeconds:!0},title:t.timestampFormat(t.status.created_at)}})],1),t._v(" "),t.recommended?n("span",[n("span",{staticClass:"px-1"},[t._v("·")]),t._v(" "),n("span",{staticClass:"text-muted"},[t._v("Based on popular and trending content")])]):t._e()])])])]),t._v(" "),n("context-menu",{ref:"contextMenu",attrs:{status:t.status,profile:t.profile},on:{"status-delete":t.statusDeleted}})],1)}),[function(){var t=this.$createElement,e=this._self._c||t;return e("span",[e("i",{staticClass:"fas fa-chevron-right text-lighter"})])}],!1,null,null,null);e.a=s.exports},"0N3b":function(t,e,n){var i=n("fE/s");"string"==typeof i&&(i=[[t.i,i,""]]);var a={hmr:!0,transform:void 0,insertInto:void 0};n("aET+")(i,a);i.locals&&(t.exports=i.locals)},"0SFe":function(t,e,n){"use strict";n("SZ2H")},"0Z5r":function(t,e,n){var i=n("UudS");"string"==typeof i&&(i=[[t.i,i,""]]);var a={hmr:!0,transform:void 0,insertInto:void 0};n("aET+")(i,a);i.locals&&(t.exports=i.locals)},"0dhX":function(t,e,n){(t.exports=n("I1BE")(!1)).push([t.i,".account-bookmarks-component .form-check[data-v-25a4c79a] {\n margin-left: 1rem;\n}\n.account-bookmarks-component .form-check .media-body[data-v-25a4c79a] {\n margin-left: 1rem;\n}\n.account-bookmarks-component .media-image-placeholder[data-v-25a4c79a] {\n display: flex;\n justify-content: center;\n align-items: center;\n width: 50px;\n height: 50px;\n background-color: #f8f9fa !important;\n border-radius: 5px;\n margin-right: 1rem;\n}",""])},"0ox+":function(t,e,n){(t.exports=n("I1BE")(!1)).push([t.i,'.autocomplete-input{border:1px solid #eee;border-radius:8px;width:100%;padding:12px 12px 12px 48px;box-sizing:border-box;position:relative;font-size:16px;line-height:1.5;flex:1;background-color:#eee;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNjY2IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PGNpcmNsZSBjeD0iMTEiIGN5PSIxMSIgcj0iOCIvPjxwYXRoIGQ9Ik0yMSAyMWwtNC00Ii8+PC9zdmc+");background-repeat:no-repeat;background-position:12px}.autocomplete-input:focus,.autocomplete-input[aria-expanded=true]{border-color:rgba(0,0,0,.12);background-color:#fff;outline:none;box-shadow:0 2px 2px rgba(0,0,0,.16)}[data-position=below] .autocomplete-input[aria-expanded=true]{border-bottom-color:transparent;border-radius:8px 8px 0 0}[data-position=above] .autocomplete-input[aria-expanded=true]{border-top-color:transparent;border-radius:0 0 8px 8px;z-index:2}.autocomplete[data-loading=true]:after{content:"";border:3px solid rgba(0,0,0,.12);border-right-color:rgba(0,0,0,.48);border-radius:100%;width:20px;height:20px;position:absolute;right:12px;top:50%;transform:translateY(-50%);-webkit-animation:rotate 1s linear infinite;animation:rotate 1s linear infinite}.autocomplete-result-list{margin:0;border:1px solid rgba(0,0,0,.12);padding:0;box-sizing:border-box;max-height:296px;overflow-y:auto;background:#fff;list-style:none;box-shadow:0 2px 2px rgba(0,0,0,.16)}[data-position=below] .autocomplete-result-list{margin-top:-1px;border-top-color:transparent;border-radius:0 0 8px 8px;padding-bottom:8px}[data-position=above] .autocomplete-result-list{margin-bottom:-1px;border-bottom-color:transparent;border-radius:8px 8px 0 0;padding-top:8px}.autocomplete-result{cursor:default;padding:12px 12px 12px 48px;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjY2NjIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PGNpcmNsZSBjeD0iMTEiIGN5PSIxMSIgcj0iOCIvPjxwYXRoIGQ9Ik0yMSAyMWwtNC00Ii8+PC9zdmc+");background-repeat:no-repeat;background-position:12px}.autocomplete-result:hover,.autocomplete-result[aria-selected=true]{background-color:rgba(0,0,0,.06)}@-webkit-keyframes rotate{0%{transform:translateY(-50%) rotate(0deg)}to{transform:translateY(-50%) rotate(359deg)}}@keyframes rotate{0%{transform:translateY(-50%) rotate(0deg)}to{transform:translateY(-50%) rotate(359deg)}}',""])},"1PLf":function(t,e,n){t.exports=function(t){var e={};function n(i){if(e[i])return e[i].exports;var a=e[i]={i:i,l:!1,exports:{}};return t[i].call(a.exports,a,a.exports,n),a.l=!0,a.exports}return n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var a in t)n.d(i,a,function(e){return t[e]}.bind(null,a));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s="fb15")}({"00ee":function(t,e,n){var i={};i[n("b622")("toStringTag")]="z",t.exports="[object z]"===String(i)},"0366":function(t,e,n){var i=n("1c0b");t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,a){return t.call(e,n,i,a)}}return function(){return t.apply(e,arguments)}}},"0538":function(t,e,n){"use strict";var i=n("1c0b"),a=n("861d"),r=[].slice,o={},s=function(t,e,n){if(!(e in o)){for(var i=[],a=0;a0;(r>>>=1)&&(e+=e))1&r&&(n+=e);return n}},"19aa":function(t,e){t.exports=function(t,e,n){if(!(t instanceof e))throw TypeError("Incorrect "+(n?n+" ":"")+"invocation");return t}},"1be4":function(t,e,n){var i=n("d066");t.exports=i("document","documentElement")},"1c0b":function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},"1c7e":function(t,e,n){var i=n("b622")("iterator"),a=!1;try{var r=0,o={next:function(){return{done:!!r++}},return:function(){a=!0}};o[i]=function(){return this},Array.from(o,(function(){throw 2}))}catch(t){}t.exports=function(t,e){if(!e&&!a)return!1;var n=!1;try{var r={};r[i]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(t){}return n}},"1cdc":function(t,e,n){var i=n("342f");t.exports=/(iphone|ipod|ipad).*applewebkit/i.test(i)},"1d80":function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},2266:function(t,e,n){var i=n("825a"),a=n("e95a"),r=n("50c4"),o=n("0366"),s=n("35a1"),l=n("9bdd"),c=function(t,e){this.stopped=t,this.result=e};(t.exports=function(t,e,n,u,d){var p,h,f,m,v,g,b,y=o(e,n,u?2:1);if(d)p=t;else{if("function"!=typeof(h=s(t)))throw TypeError("Target is not iterable");if(a(h)){for(f=0,m=r(t.length);m>f;f++)if((v=u?y(i(b=t[f])[0],b[1]):y(t[f]))&&v instanceof c)return v;return new c(!1)}p=h.call(t)}for(g=p.next;!(b=g.call(p)).done;)if("object"==typeof(v=l(p,y,b.value,u))&&v&&v instanceof c)return v;return new c(!1)}).stop=function(t){return new c(!0,t)}},"23cb":function(t,e,n){var i=n("a691"),a=Math.max,r=Math.min;t.exports=function(t,e){var n=i(t);return n<0?a(n+e,0):r(n,e)}},"23e7":function(t,e,n){var i=n("da84"),a=n("06cf").f,r=n("9112"),o=n("6eeb"),s=n("ce4e"),l=n("e893"),c=n("94ca");t.exports=function(t,e){var n,u,d,p,h,f=t.target,m=t.global,v=t.stat;if(n=m?i:v?i[f]||s(f,{}):(i[f]||{}).prototype)for(u in e){if(p=e[u],d=t.noTargetGet?(h=a(n,u))&&h.value:n[u],!c(m?u:f+(v?".":"#")+u,t.forced)&&void 0!==d){if(typeof p==typeof d)continue;l(p,d)}(t.sham||d&&d.sham)&&r(p,"sham",!0),o(n,u,p,t)}}},"241c":function(t,e,n){var i=n("ca84"),a=n("7839").concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return i(t,a)}},"25f0":function(t,e,n){"use strict";var i=n("6eeb"),a=n("825a"),r=n("d039"),o=n("ad6d"),s=RegExp.prototype,l=s.toString,c=r((function(){return"/a/b"!=l.call({source:"a",flags:"b"})})),u="toString"!=l.name;(c||u)&&i(RegExp.prototype,"toString",(function(){var t=a(this),e=String(t.source),n=t.flags;return"/"+e+"/"+String(void 0===n&&t instanceof RegExp&&!("flags"in s)?o.call(t):n)}),{unsafe:!0})},2626:function(t,e,n){"use strict";var i=n("d066"),a=n("9bf2"),r=n("b622"),o=n("83ab"),s=r("species");t.exports=function(t){var e=i(t),n=a.f;o&&e&&!e[s]&&n(e,s,{configurable:!0,get:function(){return this}})}},2994:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n("49d8"),a=n("3054"),r=n("aacc");e.default=function(t,e,n,o,s){if(o<1||o>9||s<1||s>9)throw new r.ValidationError("BlurHash must have between 1 and 9 components");if(e*n*4!==t.length)throw new r.ValidationError("Width and height must match the pixels array");for(var l=[],c=function(i){for(var r=function(r){var o=0==r&&0==i?1:2,s=function(t,e,n,i){for(var r=0,o=0,s=0,l=4*e,c=0;c0){var g=Math.max.apply(Math,f.map((function(t){return Math.max.apply(Math,t)}))),b=Math.floor(Math.max(0,Math.min(82,Math.floor(166*g-.5))));d=(b+1)/166,m+=i.encode83(b,1)}else d=1,m+=i.encode83(0,1);return m+=i.encode83((p=h,(a.linearTosRGB(p[0])<<16)+(a.linearTosRGB(p[1])<<8)+a.linearTosRGB(p[2])),4),f.forEach((function(t){m+=i.encode83(function(t,e){return 19*Math.floor(Math.max(0,Math.min(18,Math.floor(9*a.signPow(t[0]/e,.5)+9.5))))*19+19*Math.floor(Math.max(0,Math.min(18,Math.floor(9*a.signPow(t[1]/e,.5)+9.5))))+Math.floor(Math.max(0,Math.min(18,Math.floor(9*a.signPow(t[2]/e,.5)+9.5))))}(t,d),2)})),m}},"2cf4":function(t,e,n){var i,a,r,o=n("da84"),s=n("d039"),l=n("c6b6"),c=n("0366"),u=n("1be4"),d=n("cc12"),p=n("1cdc"),h=o.location,f=o.setImmediate,m=o.clearImmediate,v=o.process,g=o.MessageChannel,b=o.Dispatch,y=0,w={},_=function(t){if(w.hasOwnProperty(t)){var e=w[t];delete w[t],e()}},x=function(t){return function(){_(t)}},C=function(t){_(t.data)},k=function(t){o.postMessage(t+"",h.protocol+"//"+h.host)};f&&m||(f=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return w[++y]=function(){("function"==typeof t?t:Function(t)).apply(void 0,e)},i(y),y},m=function(t){delete w[t]},"process"==l(v)?i=function(t){v.nextTick(x(t))}:b&&b.now?i=function(t){b.now(x(t))}:g&&!p?(r=(a=new g).port2,a.port1.onmessage=C,i=c(r.postMessage,r,1)):!o.addEventListener||"function"!=typeof postMessage||o.importScripts||s(k)||"file:"===h.protocol?i="onreadystatechange"in d("script")?function(t){u.appendChild(d("script")).onreadystatechange=function(){u.removeChild(this),_(t)}}:function(t){setTimeout(x(t),0)}:(i=k,o.addEventListener("message",C,!1))),t.exports={set:f,clear:m}},"2d00":function(t,e,n){var i,a,r=n("da84"),o=n("342f"),s=r.process,l=s&&s.versions,c=l&&l.v8;c?a=(i=c.split("."))[0]+i[1]:o&&(!(i=o.match(/Edge\/(\d+)/))||i[1]>=74)&&(i=o.match(/Chrome\/(\d+)/))&&(a=i[1]),t.exports=a&&+a},3054:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.sRGBToLinear=function(t){var e=t/255;return e<=.04045?e/12.92:Math.pow((e+.055)/1.055,2.4)},e.linearTosRGB=function(t){var e=Math.max(0,Math.min(1,t));return e<=.0031308?Math.round(12.92*e*255+.5):Math.round(255*(1.055*Math.pow(e,1/2.4)-.055)+.5)},e.sign=function(t){return t<0?-1:1},e.signPow=function(t,n){return e.sign(t)*Math.pow(Math.abs(t),n)}},3410:function(t,e,n){var i=n("23e7"),a=n("d039"),r=n("7b0b"),o=n("e163"),s=n("e177");i({target:"Object",stat:!0,forced:a((function(){o(1)})),sham:!s},{getPrototypeOf:function(t){return o(r(t))}})},"342f":function(t,e,n){var i=n("d066");t.exports=i("navigator","userAgent")||""},"35a1":function(t,e,n){var i=n("f5df"),a=n("3f8c"),r=n("b622")("iterator");t.exports=function(t){if(null!=t)return t[r]||t["@@iterator"]||a[i(t)]}},"37e8":function(t,e,n){var i=n("83ab"),a=n("9bf2"),r=n("825a"),o=n("df75");t.exports=i?Object.defineProperties:function(t,e){r(t);for(var n,i=o(e),s=i.length,l=0;s>l;)a.f(t,n=i[l++],e[n]);return t}},"3bbe":function(t,e,n){var i=n("861d");t.exports=function(t){if(!i(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},"3ca3":function(t,e,n){"use strict";var i=n("6547").charAt,a=n("69f3"),r=n("7dd0"),o=a.set,s=a.getterFor("String Iterator");r(String,"String",(function(t){o(this,{type:"String Iterator",string:String(t),index:0})}),(function(){var t,e=s(this),n=e.string,a=e.index;return a>=n.length?{value:void 0,done:!0}:(t=i(n,a),e.index+=t.length,{value:t,done:!1})}))},"3f8c":function(t,e){t.exports={}},"408a":function(t,e,n){var i=n("c6b6");t.exports=function(t){if("number"!=typeof t&&"Number"!=i(t))throw TypeError("Incorrect invocation");return+t}},"428f":function(t,e,n){var i=n("da84");t.exports=i},"44ad":function(t,e,n){var i=n("d039"),a=n("c6b6"),r="".split;t.exports=i((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==a(t)?r.call(t,""):Object(t)}:Object},"44d2":function(t,e,n){var i=n("b622"),a=n("7c73"),r=n("9bf2"),o=i("unscopables"),s=Array.prototype;null==s[o]&&r.f(s,o,{configurable:!0,value:a(null)}),t.exports=function(t){s[o][t]=!0}},"44de":function(t,e,n){var i=n("da84");t.exports=function(t,e){var n=i.console;n&&n.error&&(1===arguments.length?n.error(t):n.error(t,e))}},4840:function(t,e,n){var i=n("825a"),a=n("1c0b"),r=n("b622")("species");t.exports=function(t,e){var n,o=i(t).constructor;return void 0===o||null==(n=i(o)[r])?e:a(n)}},4930:function(t,e,n){var i=n("d039");t.exports=!!Object.getOwnPropertySymbols&&!i((function(){return!String(Symbol())}))},"49d8":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","#","$","%","*","+",",","-",".",":",";","=","?","@","[","]","^","_","{","|","}","~"];e.decode83=function(t){for(var e=0,n=0;nu;)if((s=l[u++])!=s)return!0}else for(;c>u;u++)if((t||u in l)&&l[u]===n)return t||u||0;return!t&&-1}};t.exports={includes:o(!0),indexOf:o(!1)}},"50c4":function(t,e,n){var i=n("a691"),a=Math.min;t.exports=function(t){return t>0?a(i(t),9007199254740991):0}},5135:function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},5692:function(t,e,n){var i=n("c430"),a=n("c6cd");(t.exports=function(t,e){return a[t]||(a[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.6.5",mode:i?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},"56ef":function(t,e,n){var i=n("d066"),a=n("241c"),r=n("7418"),o=n("825a");t.exports=i("Reflect","ownKeys")||function(t){var e=a.f(o(t)),n=r.f;return n?e.concat(n(t)):e}},5899:function(t,e){t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},"58a8":function(t,e,n){var i=n("1d80"),a="["+n("5899")+"]",r=RegExp("^"+a+a+"*"),o=RegExp(a+a+"*$"),s=function(t){return function(e){var n=String(i(e));return 1&t&&(n=n.replace(r,"")),2&t&&(n=n.replace(o,"")),n}};t.exports={start:s(1),end:s(2),trim:s(3)}},"5c6c":function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},"63a9":function(t,e,n){},6547:function(t,e,n){var i=n("a691"),a=n("1d80"),r=function(t){return function(e,n){var r,o,s=String(a(e)),l=i(n),c=s.length;return l<0||l>=c?t?"":void 0:(r=s.charCodeAt(l))<55296||r>56319||l+1===c||(o=s.charCodeAt(l+1))<56320||o>57343?t?s.charAt(l):r:t?s.slice(l,l+2):o-56320+(r-55296<<10)+65536}};t.exports={codeAt:r(!1),charAt:r(!0)}},"65f0":function(t,e,n){var i=n("861d"),a=n("e8b5"),r=n("b622")("species");t.exports=function(t,e){var n;return a(t)&&("function"!=typeof(n=t.constructor)||n!==Array&&!a(n.prototype)?i(n)&&null===(n=n[r])&&(n=void 0):n=void 0),new(void 0===n?Array:n)(0===e?0:e)}},"69f3":function(t,e,n){var i,a,r,o=n("7f9a"),s=n("da84"),l=n("861d"),c=n("9112"),u=n("5135"),d=n("f772"),p=n("d012"),h=s.WeakMap;if(o){var f=new h,m=f.get,v=f.has,g=f.set;i=function(t,e){return g.call(f,t,e),e},a=function(t){return m.call(f,t)||{}},r=function(t){return v.call(f,t)}}else{var b=d("state");p[b]=!0,i=function(t,e){return c(t,b,e),e},a=function(t){return u(t,b)?t[b]:{}},r=function(t){return u(t,b)}}t.exports={set:i,get:a,has:r,enforce:function(t){return r(t)?a(t):i(t,{})},getterFor:function(t){return function(e){var n;if(!l(e)||(n=a(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},"6eeb":function(t,e,n){var i=n("da84"),a=n("9112"),r=n("5135"),o=n("ce4e"),s=n("8925"),l=n("69f3"),c=l.get,u=l.enforce,d=String(String).split("String");(t.exports=function(t,e,n,s){var l=!!s&&!!s.unsafe,c=!!s&&!!s.enumerable,p=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||r(n,"name")||a(n,"name",e),u(n).source=d.join("string"==typeof e?e:"")),t!==i?(l?!p&&t[e]&&(c=!0):delete t[e],c?t[e]=n:a(t,e,n)):c?t[e]=n:o(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&c(this).source||s(this)}))},7156:function(t,e,n){var i=n("861d"),a=n("d2bb");t.exports=function(t,e,n){var r,o;return a&&"function"==typeof(r=e.constructor)&&r!==n&&i(o=r.prototype)&&o!==n.prototype&&a(t,o),t}},7418:function(t,e){e.f=Object.getOwnPropertySymbols},"746f":function(t,e,n){var i=n("428f"),a=n("5135"),r=n("e538"),o=n("9bf2").f;t.exports=function(t){var e=i.Symbol||(i.Symbol={});a(e,t)||o(e,t,{value:r.f(t)})}},7839:function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},"7b0b":function(t,e,n){var i=n("1d80");t.exports=function(t){return Object(i(t))}},"7c73":function(t,e,n){var i,a=n("825a"),r=n("37e8"),o=n("7839"),s=n("d012"),l=n("1be4"),c=n("cc12"),u=n("f772"),d=u("IE_PROTO"),p=function(){},h=function(t){return"