Merge pull request #3126 from pixelfed/staging

Staging
This commit is contained in:
daniel 2022-01-05 19:18:05 -07:00 committed by GitHub
commit e23d24d3cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
46 changed files with 1775 additions and 84 deletions

View file

@ -107,9 +107,13 @@ class StatusEntityLexer implements ShouldQueue
} }
DB::transaction(function () use ($status, $tag) { DB::transaction(function () use ($status, $tag) {
$slug = str_slug($tag, '-', false); $slug = str_slug($tag, '-', false);
$hashtag = Hashtag::firstOrCreate( $hashtag = Hashtag::where('slug', $slug)->first();
['name' => $tag, 'slug' => $slug] if (!$hashtag) {
); $hashtag = Hashtag::create(
['name' => $tag, 'slug' => $slug]
);
}
StatusHashtag::firstOrCreate( StatusHashtag::firstOrCreate(
[ [
'status_id' => $status->id, 'status_id' => $status->id,

View file

@ -72,6 +72,8 @@ class Image
return [ return [
'dimensions' => $this->orientations()[$orientation], 'dimensions' => $this->orientations()[$orientation],
'orientation' => $orientation, 'orientation' => $orientation,
'width_original' => $width,
'height_original' => $height,
]; ];
} }
@ -157,9 +159,14 @@ class Image
$media->metadata = json_encode($meta); $media->metadata = json_encode($meta);
} }
$img->resize($aspect['width'], $aspect['height'], function ($constraint) { if (
$constraint->aspectRatio(); ($ratio['width_original'] > $aspect['width'])
}); || ($ratio['height_original'] > $aspect['height'])
) {
$img->resize($aspect['width'], $aspect['height'], function ($constraint) {
$constraint->aspectRatio();
});
}
} }
$converted = $this->setBaseName($path, $thumbnail, $img->extension); $converted = $this->setBaseName($path, $thumbnail, $img->extension);
$newPath = storage_path('app/'.$converted['path']); $newPath = storage_path('app/'.$converted['path']);

Binary file not shown.

BIN
public/_lang/bs.json Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/_lang/hi.json Normal file

Binary file not shown.

BIN
public/_lang/hr.json Normal file

Binary file not shown.

Binary file not shown.

BIN
public/_lang/me.json Normal file

Binary file not shown.

BIN
public/_lang/mk.json Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/js/spa.js vendored

Binary file not shown.

Binary file not shown.

View file

@ -42,7 +42,7 @@
"drive": "\u0648\u0650\u062d\u062f\u064e\u0629\u064f \u0627\u0644\u062a\u0651\u064e\u062e\u0632\u064a\u0646", "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", "settings": "\u0627\u0644\u0625\u0639\u062f\u064e\u0627\u062f\u064e\u0627\u062a",
"compose": "\u0625\u0646\u0634\u0627\u0621\u064f \u062c\u064e\u062f\u064a\u062f", "compose": "\u0625\u0646\u0634\u0627\u0621\u064f \u062c\u064e\u062f\u064a\u062f",
"logout": "Logout", "logout": "\u062a\u064e\u0633\u062c\u064a\u0644\u064f \u0627\u0644\u062e\u064f\u0631\u064f\u0648\u062c",
"about": "\u062d\u064e\u0648\u0644", "about": "\u062d\u064e\u0648\u0644",
"help": "\u0627\u0644\u0645\u064f\u0633\u0627\u0639\u064e\u062f\u064e\u0629", "help": "\u0627\u0644\u0645\u064f\u0633\u0627\u0639\u064e\u062f\u064e\u0629",
"language": "\u0627\u0644\u0644\u0651\u064f\u063a\u064e\u0629", "language": "\u0627\u0644\u0644\u0651\u064f\u063a\u064e\u0629",

View file

@ -0,0 +1,150 @@
{
"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",
"logout": "Logout",
"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",
"emptyCollections": "We can't seem to find any collections",
"emptyPosts": "We can't seem to find any posts"
},
"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"
},
"hashtags": {
"emptyFeed": "We can't seem to find any posts for this hashtag"
}
}

View file

@ -42,7 +42,7 @@
"drive": "\u00dalo\u017ei\u0161t\u011b", "drive": "\u00dalo\u017ei\u0161t\u011b",
"settings": "Nastaven\u00ed", "settings": "Nastaven\u00ed",
"compose": "Vytvo\u0159it nov\u00fd", "compose": "Vytvo\u0159it nov\u00fd",
"logout": "Logout", "logout": "Odhl\u00e1sit se",
"about": "O aplikaci", "about": "O aplikaci",
"help": "N\u00e1pov\u011bda", "help": "N\u00e1pov\u011bda",
"language": "Jazyk", "language": "Jazyk",
@ -91,9 +91,9 @@
"unfollow": "P\u0159estat sledovat", "unfollow": "P\u0159estat sledovat",
"editProfile": "Upravit profil", "editProfile": "Upravit profil",
"followRequested": "Sledov\u00e1n\u00ed vy\u017e\u00e1d\u00e1no", "followRequested": "Sledov\u00e1n\u00ed vy\u017e\u00e1d\u00e1no",
"joined": "Joined", "joined": "P\u0159ipojen/a",
"emptyCollections": "We can't seem to find any collections", "emptyCollections": "Zd\u00e1 se, \u017ee nelze naj\u00edt \u017e\u00e1dn\u00e9 kolekce",
"emptyPosts": "We can't seem to find any posts" "emptyPosts": "Zd\u00e1 se, \u017ee nelze naj\u00edt \u017e\u00e1dn\u00e9 p\u0159\u00edsp\u011bvky"
}, },
"menu": { "menu": {
"viewPost": "Zobrazit p\u0159\u00edsp\u011bvek", "viewPost": "Zobrazit p\u0159\u00edsp\u011bvek",
@ -114,7 +114,7 @@
"abusive": "Ur\u00e1\u017eliv\u00e9 nebo \u0161kodliv\u00e9", "abusive": "Ur\u00e1\u017eliv\u00e9 nebo \u0161kodliv\u00e9",
"underageAccount": "\u00da\u010det nezletil\u00fdch", "underageAccount": "\u00da\u010det nezletil\u00fdch",
"copyrightInfringement": "Poru\u0161en\u00ed autorsk\u00fdch pr\u00e1v", "copyrightInfringement": "Poru\u0161en\u00ed autorsk\u00fdch pr\u00e1v",
"impersonation": "Impersonation", "impersonation": "P\u0159edst\u00edr\u00e1n\u00ed identity",
"scamOrFraud": "Podvod", "scamOrFraud": "Podvod",
"confirmReport": "Potvrdit hl\u00e1\u0161en\u00ed", "confirmReport": "Potvrdit hl\u00e1\u0161en\u00ed",
"confirmReportText": "Jste si jisti, \u017ee chcete nahl\u00e1sit tento p\u0159\u00edsp\u011bvek?", "confirmReportText": "Jste si jisti, \u017ee chcete nahl\u00e1sit tento p\u0159\u00edsp\u011bvek?",
@ -129,7 +129,7 @@
"modUnlistSuccess": "P\u0159\u00edsp\u011bvek byl odebr\u00e1n z \u010dasov\u00e9 osy", "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.", "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", "modMarkAsSpammerSuccess": "\u00da\u010det byl ozna\u010den jako spammer",
"toFollowers": "to Followers", "toFollowers": "sleduj\u00edc\u00edm",
"showCaption": "Uk\u00e1zat popisek", "showCaption": "Uk\u00e1zat popisek",
"showLikes": "Zobrazit To se mi l\u00edb\u00ed", "showLikes": "Zobrazit To se mi l\u00edb\u00ed",
"compactMode": "Kompaktn\u00ed re\u017eim", "compactMode": "Kompaktn\u00ed re\u017eim",

View file

@ -42,7 +42,7 @@
"drive": "Festplatte", "drive": "Festplatte",
"settings": "Einstellungen", "settings": "Einstellungen",
"compose": "Neu erstellen", "compose": "Neu erstellen",
"logout": "Logout", "logout": "Ausloggen",
"about": "\u00dcber uns", "about": "\u00dcber uns",
"help": "Hilfe", "help": "Hilfe",
"language": "Sprache", "language": "Sprache",

View file

@ -42,7 +42,7 @@
"drive": "Unitatea", "drive": "Unitatea",
"settings": "Ezarpenak", "settings": "Ezarpenak",
"compose": "Sortu berria", "compose": "Sortu berria",
"logout": "Logout", "logout": "Saioa itxi",
"about": "Honi buruz", "about": "Honi buruz",
"help": "Laguntza", "help": "Laguntza",
"language": "Hizkuntza", "language": "Hizkuntza",
@ -104,11 +104,11 @@
"unarchive": "Desartxibatu", "unarchive": "Desartxibatu",
"embed": "Kapsulatu", "embed": "Kapsulatu",
"selectOneOption": "Hautatu aukera hauetako bat", "selectOneOption": "Hautatu aukera hauetako bat",
"unlistFromTimelines": "Unlist from Timelines", "unlistFromTimelines": "Denbora-lerroetatik ezkutatu",
"addCW": "Gehitu edukiaren abisua", "addCW": "Gehitu edukiaren abisua",
"removeCW": "Kendu edukiaren abisua", "removeCW": "Kendu edukiaren abisua",
"markAsSpammer": "Markatu zabor-bidaltzaile gisa", "markAsSpammer": "Markatu zabor-bidaltzaile gisa",
"markAsSpammerText": "Unlist + CW existing and future posts", "markAsSpammerText": "Ezkutatu + edukiaren abisua jarri etorkizuneko bidalketei",
"spam": "Zaborra", "spam": "Zaborra",
"sensitive": "Eduki hunkigarria", "sensitive": "Eduki hunkigarria",
"abusive": "Bortxazko edo Mingarria", "abusive": "Bortxazko edo Mingarria",
@ -125,15 +125,15 @@
"modCWSuccess": "Edukiaren abisua ondo gehitu da", "modCWSuccess": "Edukiaren abisua ondo gehitu da",
"modRemoveCWConfirm": "Ziur al zaude edukiaren abisua kendu nahi duzula bidalketa honetarako?", "modRemoveCWConfirm": "Ziur al zaude edukiaren abisua kendu nahi duzula bidalketa honetarako?",
"modRemoveCWSuccess": "Edukiaren abisua ondo kendu da", "modRemoveCWSuccess": "Edukiaren abisua ondo kendu da",
"modUnlistConfirm": "Are you sure you want to unlist this post?", "modUnlistConfirm": "Ziur al zaude bidalketa hau ezkutatu nahi duzula?",
"modUnlistSuccess": "Successfully unlisted post", "modUnlistSuccess": "Bidalketa ondo ezkutatu da",
"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": "Ziur al zaude erabiltzaile hau zabor-bidaltzaile bezala markatu nahi duzula? Dagoeneko bidali dituen eta etorkizunean bidaliko dituen bidalketak denbora-lerroetatik ezkutatuko dira eta edukiaren abisua ezarriko zaie.",
"modMarkAsSpammerSuccess": "Kontua zabor-bidaltzaile gisa ondo markatu da", "modMarkAsSpammerSuccess": "Kontua zabor-bidaltzaile gisa ondo markatu da",
"toFollowers": "jarraitzaileei", "toFollowers": "jarraitzaileei",
"showCaption": "Irudiaren azalpena erakutsi", "showCaption": "Irudiaren azalpena erakutsi",
"showLikes": "Erakutsi atsegiteak", "showLikes": "Erakutsi atsegiteak",
"compactMode": "Modu trinkoa", "compactMode": "Modu trinkoa",
"embedConfirmText": "By using this embed, you agree to our", "embedConfirmText": "Kapsulatze hau erabiliz, onartzen dituzu gure",
"deletePostConfirm": "Ziur al zaude bidalketa hau ezabatu nahi duzula?", "deletePostConfirm": "Ziur al zaude bidalketa hau ezabatu nahi duzula?",
"archivePostConfirm": "Ziur al zaude bidalketa hau artxibatu nahi duzula?", "archivePostConfirm": "Ziur al zaude bidalketa hau artxibatu nahi duzula?",
"unarchivePostConfirm": "Ziur bidalketa hau desartxibatu nahi duzula?" "unarchivePostConfirm": "Ziur bidalketa hau desartxibatu nahi duzula?"

View file

@ -92,8 +92,8 @@
"editProfile": "\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0647", "editProfile": "\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0647",
"followRequested": "\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062f\u0646\u0628\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0641\u0631\u0633\u062a\u0627\u062f\u0647 \u0634\u062f", "followRequested": "\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062f\u0646\u0628\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0641\u0631\u0633\u062a\u0627\u062f\u0647 \u0634\u062f",
"joined": "\u067e\u06cc\u0648\u0633\u062a", "joined": "\u067e\u06cc\u0648\u0633\u062a",
"emptyCollections": "We can't seem to find any collections", "emptyCollections": "\u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc\u200c\u0631\u0633\u062f \u06a9\u0647 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u0645 \u0647\u06cc\u0686 \u0645\u062c\u0645\u0648\u0639\u0647\u200c\u0627\u06cc \u067e\u06cc\u062f\u0627 \u06a9\u0646\u06cc\u0645",
"emptyPosts": "We can't seem to find any posts" "emptyPosts": "\u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc\u200c\u0631\u0633\u062f \u06a9\u0647 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u0645 \u0647\u06cc\u0686 \u0641\u0631\u0633\u062a\u0647\u200c\u0627\u06cc \u067e\u06cc\u062f\u0627 \u06a9\u0646\u06cc\u0645"
}, },
"menu": { "menu": {
"viewPost": "\u0646\u0645\u0627\u06cc\u0634 \u0641\u0631\u0633\u062a\u0647", "viewPost": "\u0646\u0645\u0627\u06cc\u0634 \u0641\u0631\u0633\u062a\u0647",
@ -112,7 +112,7 @@
"spam": "\u0647\u0631\u0632\u0646\u0627\u0645\u0647", "spam": "\u0647\u0631\u0632\u0646\u0627\u0645\u0647",
"sensitive": "\u0645\u062d\u062a\u0648\u0627\u06cc \u062d\u0633\u0627\u0633", "sensitive": "\u0645\u062d\u062a\u0648\u0627\u06cc \u062d\u0633\u0627\u0633",
"abusive": "\u062a\u0648\u0647\u06cc\u0646\u200c\u0622\u0645\u06cc\u0632 \u0648 \u0645\u0636\u0631", "abusive": "\u062a\u0648\u0647\u06cc\u0646\u200c\u0622\u0645\u06cc\u0632 \u0648 \u0645\u0636\u0631",
"underageAccount": "Underage Account", "underageAccount": "\u062d\u0633\u0627\u0628 \u0632\u06cc\u0631 \u0633\u0646 \u0642\u0627\u0646\u0648\u0646\u06cc",
"copyrightInfringement": "\u0646\u0642\u0636 \u0642\u0648\u0627\u0646\u06cc\u0646 \u062d\u0642 \u062a\u06a9\u062b\u06cc\u0631", "copyrightInfringement": "\u0646\u0642\u0636 \u0642\u0648\u0627\u0646\u06cc\u0646 \u062d\u0642 \u062a\u06a9\u062b\u06cc\u0631",
"impersonation": "\u062c\u0639\u0644 \u0647\u0648\u06cc\u062a", "impersonation": "\u062c\u0639\u0644 \u0647\u0648\u06cc\u062a",
"scamOrFraud": "Scam or Fraud", "scamOrFraud": "Scam or Fraud",
@ -145,6 +145,6 @@
"peopleYouMayKnow": "\u0627\u0641\u0631\u0627\u062f\u06cc \u06a9\u0647 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0628\u0634\u0646\u0627\u0633\u06cc\u062f" "peopleYouMayKnow": "\u0627\u0641\u0631\u0627\u062f\u06cc \u06a9\u0647 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0628\u0634\u0646\u0627\u0633\u06cc\u062f"
}, },
"hashtags": { "hashtags": {
"emptyFeed": "We can't seem to find any posts for this hashtag" "emptyFeed": "\u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc\u200c\u0631\u0633\u062f \u06a9\u0647 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u0645 \u0686\u06cc\u0632\u06cc \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0647\u0634\u062a\u06af \u067e\u06cc\u062f\u0627 \u06a9\u0646\u06cc\u0645"
} }
} }

View file

@ -0,0 +1,150 @@
{
"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",
"logout": "Logout",
"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",
"emptyCollections": "We can't seem to find any collections",
"emptyPosts": "We can't seem to find any posts"
},
"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"
},
"hashtags": {
"emptyFeed": "We can't seem to find any posts for this hashtag"
}
}

View file

@ -0,0 +1,150 @@
{
"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",
"logout": "Logout",
"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",
"emptyCollections": "We can't seem to find any collections",
"emptyPosts": "We can't seem to find any posts"
},
"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"
},
"hashtags": {
"emptyFeed": "We can't seem to find any posts for this hashtag"
}
}

View file

@ -3,7 +3,7 @@
"comment": "Commenta", "comment": "Commenta",
"commented": "Commentato", "commented": "Commentato",
"comments": "Commenti", "comments": "Commenti",
"like": "Mi piace", "like": "Like",
"liked": "Like aggiunto", "liked": "Like aggiunto",
"likes": "Tutti i Like", "likes": "Tutti i Like",
"share": "Condividi", "share": "Condividi",
@ -25,7 +25,7 @@
}, },
"site": { "site": {
"terms": "Termini di Utilizzo", "terms": "Termini di Utilizzo",
"privacy": "Informativa sulla Privacy" "privacy": "Informativa Privacy"
}, },
"navmenu": { "navmenu": {
"search": "Cerca", "search": "Cerca",
@ -42,9 +42,9 @@
"drive": "Drive", "drive": "Drive",
"settings": "Impostazioni", "settings": "Impostazioni",
"compose": "Crea Nuovo", "compose": "Crea Nuovo",
"logout": "Logout", "logout": "Esci",
"about": "Info", "about": "Info",
"help": "Aiuto", "help": "Supporto",
"language": "Lingua", "language": "Lingua",
"privacy": "Privacy", "privacy": "Privacy",
"terms": "Condizioni", "terms": "Condizioni",
@ -92,8 +92,8 @@
"editProfile": "Modifica profilo", "editProfile": "Modifica profilo",
"followRequested": "Richiesta in attesa", "followRequested": "Richiesta in attesa",
"joined": "Iscritto", "joined": "Iscritto",
"emptyCollections": "We can't seem to find any collections", "emptyCollections": "Non riusciamo a trovare alcuna collezione",
"emptyPosts": "We can't seem to find any posts" "emptyPosts": "Non riusciamo a trovare alcun post"
}, },
"menu": { "menu": {
"viewPost": "Mostra Post", "viewPost": "Mostra Post",
@ -145,6 +145,6 @@
"peopleYouMayKnow": "Persone che potresti conoscere" "peopleYouMayKnow": "Persone che potresti conoscere"
}, },
"hashtags": { "hashtags": {
"emptyFeed": "We can't seem to find any posts for this hashtag" "emptyFeed": "Non riusciamo a trovare alcun post con questo hashtag"
} }
} }

View file

@ -0,0 +1,150 @@
{
"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",
"logout": "Logout",
"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",
"emptyCollections": "We can't seem to find any collections",
"emptyPosts": "We can't seem to find any posts"
},
"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"
},
"hashtags": {
"emptyFeed": "We can't seem to find any posts for this hashtag"
}
}

View file

@ -0,0 +1,150 @@
{
"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",
"logout": "Logout",
"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",
"emptyCollections": "We can't seem to find any collections",
"emptyPosts": "We can't seem to find any posts"
},
"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"
},
"hashtags": {
"emptyFeed": "We can't seem to find any posts for this hashtag"
}
}

View file

@ -37,12 +37,12 @@
"directMessages": "Mensagens privadas", "directMessages": "Mensagens privadas",
"notifications": "Notifica\u00e7\u00f5es", "notifications": "Notifica\u00e7\u00f5es",
"groups": "Grupos", "groups": "Grupos",
"stories": "Stories", "stories": "Hist\u00f3rias",
"profile": "Perfil", "profile": "Perfil",
"drive": "Drive", "drive": "M\u00eddias",
"settings": "Configura\u00e7\u00f5es", "settings": "Configura\u00e7\u00f5es",
"compose": "Criar novo", "compose": "Criar novo",
"logout": "Logout", "logout": "Sair",
"about": "Sobre", "about": "Sobre",
"help": "Ajuda", "help": "Ajuda",
"language": "Idioma", "language": "Idioma",

View file

@ -1,7 +1,7 @@
{ {
"common": { "common": {
"comment": "Komentova\u0165", "comment": "Komentova\u0165",
"commented": "Commented", "commented": "Komentoval",
"comments": "Koment\u00e1re", "comments": "Koment\u00e1re",
"like": "P\u00e1\u010di sa mi", "like": "P\u00e1\u010di sa mi",
"liked": "P\u00e1\u010di sa mi", "liked": "P\u00e1\u010di sa mi",
@ -42,7 +42,7 @@
"drive": "\u00dalo\u017eisko", "drive": "\u00dalo\u017eisko",
"settings": "Nastavenia", "settings": "Nastavenia",
"compose": "Vytvori\u0165 nov\u00fd", "compose": "Vytvori\u0165 nov\u00fd",
"logout": "Logout", "logout": "Odhl\u00e1si\u0165 sa",
"about": "O aplik\u00e1cii", "about": "O aplik\u00e1cii",
"help": "Pomocn\u00edk", "help": "Pomocn\u00edk",
"language": "Jazyk", "language": "Jazyk",
@ -91,7 +91,7 @@
"unfollow": "Presta\u0165 sledova\u0165", "unfollow": "Presta\u0165 sledova\u0165",
"editProfile": "Upravi\u0165 Profil", "editProfile": "Upravi\u0165 Profil",
"followRequested": "\u017diados\u0165 o sledovanie bola odoslan\u00e1", "followRequested": "\u017diados\u0165 o sledovanie bola odoslan\u00e1",
"joined": "Joined", "joined": "Pripojen\u00e9",
"emptyCollections": "Zd\u00e1 sa, \u017ee nem\u00f4\u017eeme n\u00e1js\u0165 \u017eiadne kolekcie", "emptyCollections": "Zd\u00e1 sa, \u017ee nem\u00f4\u017eeme n\u00e1js\u0165 \u017eiadne kolekcie",
"emptyPosts": "Zd\u00e1 sa, \u017ee nem\u00f4\u017eeme n\u00e1js\u0165 \u017eiadne pr\u00edspevky" "emptyPosts": "Zd\u00e1 sa, \u017ee nem\u00f4\u017eeme n\u00e1js\u0165 \u017eiadne pr\u00edspevky"
}, },
@ -104,11 +104,11 @@
"unarchive": "Odarchivova\u0165", "unarchive": "Odarchivova\u0165",
"embed": "Vlo\u017ei\u0165", "embed": "Vlo\u017ei\u0165",
"selectOneOption": "Pros\u00edm, vyberte jednu z nasleduj\u00facich mo\u017enost\u00ed", "selectOneOption": "Pros\u00edm, vyberte jednu z nasleduj\u00facich mo\u017enost\u00ed",
"unlistFromTimelines": "Unlist from Timelines", "unlistFromTimelines": "Odstr\u00e1ni\u0165 z Timelines",
"addCW": "Prida\u0165 upozornenie o obsahu", "addCW": "Prida\u0165 upozornenie o obsahu",
"removeCW": "Odstr\u00e1ni\u0165 upozornenie o obsahu", "removeCW": "Odstr\u00e1ni\u0165 upozornenie o obsahu",
"markAsSpammer": "Ozna\u010di\u0165 ako Spammer", "markAsSpammer": "Ozna\u010di\u0165 ako Spammer",
"markAsSpammerText": "Unlist + CW existing and future posts", "markAsSpammerText": "Odstr\u00e1ni\u0165 zo zoznamu + upozornenie o obsahu existuj\u00face a bud\u00face pr\u00edspevky",
"spam": "Spam", "spam": "Spam",
"sensitive": "Citliv\u00fd obsah", "sensitive": "Citliv\u00fd obsah",
"abusive": "Zneu\u017e\u00edvaj\u00faci alebo \u0160kodliv\u00fd", "abusive": "Zneu\u017e\u00edvaj\u00faci alebo \u0160kodliv\u00fd",
@ -125,10 +125,10 @@
"modCWSuccess": "Upozornenie o obsahu bolo \u00faspe\u0161ne pridan\u00e9", "modCWSuccess": "Upozornenie o obsahu bolo \u00faspe\u0161ne pridan\u00e9",
"modRemoveCWConfirm": "Naozaj chcete odstr\u00e1ni\u0165 upozornenie o obsahu z tohto pr\u00edspevku?", "modRemoveCWConfirm": "Naozaj chcete odstr\u00e1ni\u0165 upozornenie o obsahu z tohto pr\u00edspevku?",
"modRemoveCWSuccess": "Upozornenie o obsahu bolo \u00faspe\u0161ne odstr\u00e1nen\u00e9", "modRemoveCWSuccess": "Upozornenie o obsahu bolo \u00faspe\u0161ne odstr\u00e1nen\u00e9",
"modUnlistConfirm": "Are you sure you want to unlist this post?", "modUnlistConfirm": "Naozaj chcete odstr\u00e1ni\u0165 zo zoznamu tento pr\u00edspevok?",
"modUnlistSuccess": "Successfully unlisted post", "modUnlistSuccess": "Pr\u00edspevok bol \u00faspe\u0161ne odstr\u00e1nen\u00fd zo zoznamu",
"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": "Naozaj chcete ozna\u010di\u0165 tohto pou\u017e\u00edvate\u013ea ako odosielate\u013ea spamu? V\u0161etky existuj\u00face a bud\u00face pr\u00edspevky bud\u00fa odstr\u00e1nen\u00e9 z timelines a bude pridan\u00e9 upozornenie o obsahu.",
"modMarkAsSpammerSuccess": "\u00da\u010det bol \u00faspe\u0161ne ozna\u010den\u00fd ako spammer", "modMarkAsSpammerSuccess": "\u00da\u010det bol \u00faspe\u0161ne ozna\u010den\u00fd ako odosielate\u013ea spamu",
"toFollowers": "pre Sleduj\u00facich", "toFollowers": "pre Sleduj\u00facich",
"showCaption": "Zobrazi\u0165 Titulok", "showCaption": "Zobrazi\u0165 Titulok",
"showLikes": "Zobrazi\u0165 P\u00e1\u010di sa mi", "showLikes": "Zobrazi\u0165 P\u00e1\u010di sa mi",

View file

@ -42,7 +42,7 @@
"drive": "L\u01b0u tr\u1eef", "drive": "L\u01b0u tr\u1eef",
"settings": "Thi\u1ebft l\u1eadp", "settings": "Thi\u1ebft l\u1eadp",
"compose": "\u1ea2nh m\u1edbi", "compose": "\u1ea2nh m\u1edbi",
"logout": "Logout", "logout": "\u0110\u0103ng xu\u1ea5t",
"about": "Gi\u1edbi thi\u1ec7u", "about": "Gi\u1edbi thi\u1ec7u",
"help": "Tr\u1ee3 gi\u00fap", "help": "Tr\u1ee3 gi\u00fap",
"language": "Ng\u00f4n ng\u1eef", "language": "Ng\u00f4n ng\u1eef",

View file

@ -55,7 +55,7 @@ return [
'drive' => 'وِحدَةُ التَّخزين', 'drive' => 'وِحدَةُ التَّخزين',
'settings' => 'الإعدَادَات', 'settings' => 'الإعدَادَات',
'compose' => 'إنشاءُ جَديد', 'compose' => 'إنشاءُ جَديد',
'logout' => 'Logout', 'logout' => 'تَسجيلُ الخُرُوج',
// Nav footer // Nav footer
'about' => 'حَول', 'about' => 'حَول',

186
resources/lang/bs/web.php Normal file
View file

@ -0,0 +1,186 @@
<?php
return [
'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',
// Timelines
'homeFeed' => 'Home Feed',
'localFeed' => 'Local Feed',
'globalFeed' => 'Global Feed',
// Core features
'discover' => 'Discover',
'directMessages' => 'Direct Messages',
'notifications' => 'Notifications',
'groups' => 'Groups',
'stories' => 'Stories',
// Self links
'profile' => 'Profile',
'drive' => 'Drive',
'settings' => 'Settings',
'compose' => 'Create New',
'logout' => 'Logout',
// Nav footer
'about' => 'About',
'help' => 'Help',
'language' => 'Language',
'privacy' => 'Privacy',
'terms' => 'Terms',
// Temporary links
'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',
'emptyCollections' => 'We can\'t seem to find any collections',
'emptyPosts' => 'We can\'t seem to find any posts',
],
'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'
],
'hashtags' => [
'emptyFeed' => 'We can\'t seem to find any posts for this hashtag'
],
];

View file

@ -55,7 +55,7 @@ return [
'drive' => 'Úložiště', 'drive' => 'Úložiště',
'settings' => 'Nastavení', 'settings' => 'Nastavení',
'compose' => 'Vytvořit nový', 'compose' => 'Vytvořit nový',
'logout' => 'Logout', 'logout' => 'Odhlásit se',
// Nav footer // Nav footer
'about' => 'O aplikaci', 'about' => 'O aplikaci',
@ -116,10 +116,10 @@ return [
'unfollow' => 'Přestat sledovat', 'unfollow' => 'Přestat sledovat',
'editProfile' => 'Upravit profil', 'editProfile' => 'Upravit profil',
'followRequested' => 'Sledování vyžádáno', 'followRequested' => 'Sledování vyžádáno',
'joined' => 'Joined', 'joined' => 'Připojen/a',
'emptyCollections' => 'We can\'t seem to find any collections', 'emptyCollections' => 'Zdá se, že nelze najít žádné kolekce',
'emptyPosts' => 'We can\'t seem to find any posts', 'emptyPosts' => 'Zdá se, že nelze najít žádné příspěvky',
], ],
'menu' => [ 'menu' => [
@ -142,7 +142,7 @@ return [
'abusive' => 'Urážlivé nebo škodlivé', 'abusive' => 'Urážlivé nebo škodlivé',
'underageAccount' => 'Účet nezletilých', 'underageAccount' => 'Účet nezletilých',
'copyrightInfringement' => 'Porušení autorských práv', 'copyrightInfringement' => 'Porušení autorských práv',
'impersonation' => 'Impersonation', 'impersonation' => 'Předstírání identity',
'scamOrFraud' => 'Podvod', 'scamOrFraud' => 'Podvod',
'confirmReport' => 'Potvrdit hlášení', 'confirmReport' => 'Potvrdit hlášení',
'confirmReportText' => 'Jste si jisti, že chcete nahlásit tento příspěvek?', 'confirmReportText' => 'Jste si jisti, že chcete nahlásit tento příspěvek?',
@ -159,7 +159,7 @@ return [
'modMarkAsSpammerConfirm' => 'Jste si jisti, že chcete tohoto uživatele označit jako spammer? Všechny existující a budoucí příspěvky budou vyřazeny z časových os a bude na ně aplikováno varování o obsahu.', 'modMarkAsSpammerConfirm' => 'Jste si jisti, že chcete tohoto uživatele označit jako spammer? Všechny existující a budoucí příspěvky budou vyřazeny z časových os a bude na ně aplikováno varování o obsahu.',
'modMarkAsSpammerSuccess' => 'Účet byl označen jako spammer', 'modMarkAsSpammerSuccess' => 'Účet byl označen jako spammer',
'toFollowers' => 'to Followers', 'toFollowers' => 'sledujícím',
'showCaption' => 'Ukázat popisek', 'showCaption' => 'Ukázat popisek',
'showLikes' => 'Zobrazit To se mi líbí', 'showLikes' => 'Zobrazit To se mi líbí',

View file

@ -55,7 +55,7 @@ return [
'drive' => 'Festplatte', 'drive' => 'Festplatte',
'settings' => 'Einstellungen', 'settings' => 'Einstellungen',
'compose' => 'Neu erstellen', 'compose' => 'Neu erstellen',
'logout' => 'Logout', 'logout' => 'Ausloggen',
// Nav footer // Nav footer
'about' => 'Über uns', 'about' => 'Über uns',

View file

@ -55,7 +55,7 @@ return [
'drive' => 'Unitatea', 'drive' => 'Unitatea',
'settings' => 'Ezarpenak', 'settings' => 'Ezarpenak',
'compose' => 'Sortu berria', 'compose' => 'Sortu berria',
'logout' => 'Logout', 'logout' => 'Saioa itxi',
// Nav footer // Nav footer
'about' => 'Honi buruz', 'about' => 'Honi buruz',
@ -132,11 +132,11 @@ return [
'embed' => 'Kapsulatu', 'embed' => 'Kapsulatu',
'selectOneOption' => 'Hautatu aukera hauetako bat', 'selectOneOption' => 'Hautatu aukera hauetako bat',
'unlistFromTimelines' => 'Unlist from Timelines', 'unlistFromTimelines' => 'Denbora-lerroetatik ezkutatu',
'addCW' => 'Gehitu edukiaren abisua', 'addCW' => 'Gehitu edukiaren abisua',
'removeCW' => 'Kendu edukiaren abisua', 'removeCW' => 'Kendu edukiaren abisua',
'markAsSpammer' => 'Markatu zabor-bidaltzaile gisa', 'markAsSpammer' => 'Markatu zabor-bidaltzaile gisa',
'markAsSpammerText' => 'Unlist + CW existing and future posts', 'markAsSpammerText' => 'Ezkutatu + edukiaren abisua jarri etorkizuneko bidalketei',
'spam' => 'Zaborra', 'spam' => 'Zaborra',
'sensitive' => 'Eduki hunkigarria', 'sensitive' => 'Eduki hunkigarria',
'abusive' => 'Bortxazko edo Mingarria', 'abusive' => 'Bortxazko edo Mingarria',
@ -154,9 +154,9 @@ return [
'modCWSuccess' => 'Edukiaren abisua ondo gehitu da', 'modCWSuccess' => 'Edukiaren abisua ondo gehitu da',
'modRemoveCWConfirm' => 'Ziur al zaude edukiaren abisua kendu nahi duzula bidalketa honetarako?', 'modRemoveCWConfirm' => 'Ziur al zaude edukiaren abisua kendu nahi duzula bidalketa honetarako?',
'modRemoveCWSuccess' => 'Edukiaren abisua ondo kendu da', 'modRemoveCWSuccess' => 'Edukiaren abisua ondo kendu da',
'modUnlistConfirm' => 'Are you sure you want to unlist this post?', 'modUnlistConfirm' => 'Ziur al zaude bidalketa hau ezkutatu nahi duzula?',
'modUnlistSuccess' => 'Successfully unlisted post', 'modUnlistSuccess' => 'Bidalketa ondo ezkutatu da',
'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' => 'Ziur al zaude erabiltzaile hau zabor-bidaltzaile bezala markatu nahi duzula? Dagoeneko bidali dituen eta etorkizunean bidaliko dituen bidalketak denbora-lerroetatik ezkutatuko dira eta edukiaren abisua ezarriko zaie.',
'modMarkAsSpammerSuccess' => 'Kontua zabor-bidaltzaile gisa ondo markatu da', 'modMarkAsSpammerSuccess' => 'Kontua zabor-bidaltzaile gisa ondo markatu da',
'toFollowers' => 'jarraitzaileei', 'toFollowers' => 'jarraitzaileei',
@ -164,7 +164,7 @@ return [
'showCaption' => 'Irudiaren azalpena erakutsi', 'showCaption' => 'Irudiaren azalpena erakutsi',
'showLikes' => 'Erakutsi atsegiteak', 'showLikes' => 'Erakutsi atsegiteak',
'compactMode' => 'Modu trinkoa', 'compactMode' => 'Modu trinkoa',
'embedConfirmText' => 'By using this embed, you agree to our', 'embedConfirmText' => 'Kapsulatze hau erabiliz, onartzen dituzu gure',
'deletePostConfirm' => 'Ziur al zaude bidalketa hau ezabatu nahi duzula?', 'deletePostConfirm' => 'Ziur al zaude bidalketa hau ezabatu nahi duzula?',
'archivePostConfirm' => 'Ziur al zaude bidalketa hau artxibatu nahi duzula?', 'archivePostConfirm' => 'Ziur al zaude bidalketa hau artxibatu nahi duzula?',

View file

@ -118,8 +118,8 @@ return [
'followRequested' => 'درخواست دنبال کردن فرستاده شد', 'followRequested' => 'درخواست دنبال کردن فرستاده شد',
'joined' => 'پیوست', 'joined' => 'پیوست',
'emptyCollections' => 'We can\'t seem to find any collections', 'emptyCollections' => 'به نظر می‌رسد که نمی‌توانیم هیچ مجموعه‌ای پیدا کنیم',
'emptyPosts' => 'We can\'t seem to find any posts', 'emptyPosts' => 'به نظر می‌رسد که نمی‌توانیم هیچ فرسته‌ای پیدا کنیم',
], ],
'menu' => [ 'menu' => [
@ -140,7 +140,7 @@ return [
'spam' => 'هرزنامه', 'spam' => 'هرزنامه',
'sensitive' => 'محتوای حساس', 'sensitive' => 'محتوای حساس',
'abusive' => 'توهین‌آمیز و مضر', 'abusive' => 'توهین‌آمیز و مضر',
'underageAccount' => 'Underage Account', 'underageAccount' => 'حساب زیر سن قانونی',
'copyrightInfringement' => 'نقض قوانین حق تکثیر', 'copyrightInfringement' => 'نقض قوانین حق تکثیر',
'impersonation' => 'جعل هویت', 'impersonation' => 'جعل هویت',
'scamOrFraud' => 'Scam or Fraud', 'scamOrFraud' => 'Scam or Fraud',
@ -180,7 +180,7 @@ return [
], ],
'hashtags' => [ 'hashtags' => [
'emptyFeed' => 'We can\'t seem to find any posts for this hashtag' 'emptyFeed' => 'به نظر می‌رسد که نمی‌توانیم چیزی برای این هشتگ پیدا کنیم'
], ],
]; ];

186
resources/lang/hi/web.php Normal file
View file

@ -0,0 +1,186 @@
<?php
return [
'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',
// Timelines
'homeFeed' => 'Home Feed',
'localFeed' => 'Local Feed',
'globalFeed' => 'Global Feed',
// Core features
'discover' => 'Discover',
'directMessages' => 'Direct Messages',
'notifications' => 'Notifications',
'groups' => 'Groups',
'stories' => 'Stories',
// Self links
'profile' => 'Profile',
'drive' => 'Drive',
'settings' => 'Settings',
'compose' => 'Create New',
'logout' => 'Logout',
// Nav footer
'about' => 'About',
'help' => 'Help',
'language' => 'Language',
'privacy' => 'Privacy',
'terms' => 'Terms',
// Temporary links
'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',
'emptyCollections' => 'We can\'t seem to find any collections',
'emptyPosts' => 'We can\'t seem to find any posts',
],
'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'
],
'hashtags' => [
'emptyFeed' => 'We can\'t seem to find any posts for this hashtag'
],
];

186
resources/lang/hr/web.php Normal file
View file

@ -0,0 +1,186 @@
<?php
return [
'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',
// Timelines
'homeFeed' => 'Home Feed',
'localFeed' => 'Local Feed',
'globalFeed' => 'Global Feed',
// Core features
'discover' => 'Discover',
'directMessages' => 'Direct Messages',
'notifications' => 'Notifications',
'groups' => 'Groups',
'stories' => 'Stories',
// Self links
'profile' => 'Profile',
'drive' => 'Drive',
'settings' => 'Settings',
'compose' => 'Create New',
'logout' => 'Logout',
// Nav footer
'about' => 'About',
'help' => 'Help',
'language' => 'Language',
'privacy' => 'Privacy',
'terms' => 'Terms',
// Temporary links
'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',
'emptyCollections' => 'We can\'t seem to find any collections',
'emptyPosts' => 'We can\'t seem to find any posts',
],
'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'
],
'hashtags' => [
'emptyFeed' => 'We can\'t seem to find any posts for this hashtag'
],
];

View file

@ -6,7 +6,7 @@ return [
'comment' => 'Commenta', 'comment' => 'Commenta',
'commented' => 'Commentato', 'commented' => 'Commentato',
'comments' => 'Commenti', 'comments' => 'Commenti',
'like' => 'Mi piace', 'like' => 'Like',
'liked' => 'Like aggiunto', 'liked' => 'Like aggiunto',
'likes' => 'Tutti i Like', 'likes' => 'Tutti i Like',
'share' => 'Condividi', 'share' => 'Condividi',
@ -31,7 +31,7 @@ return [
'site' => [ 'site' => [
'terms' => 'Termini di Utilizzo', 'terms' => 'Termini di Utilizzo',
'privacy' => 'Informativa sulla Privacy', 'privacy' => 'Informativa Privacy',
], ],
'navmenu' => [ 'navmenu' => [
@ -55,11 +55,11 @@ return [
'drive' => 'Drive', 'drive' => 'Drive',
'settings' => 'Impostazioni', 'settings' => 'Impostazioni',
'compose' => 'Crea Nuovo', 'compose' => 'Crea Nuovo',
'logout' => 'Logout', 'logout' => 'Esci',
// Nav footer // Nav footer
'about' => 'Info', 'about' => 'Info',
'help' => 'Aiuto', 'help' => 'Supporto',
'language' => 'Lingua', 'language' => 'Lingua',
'privacy' => 'Privacy', 'privacy' => 'Privacy',
'terms' => 'Condizioni', 'terms' => 'Condizioni',
@ -118,8 +118,8 @@ return [
'followRequested' => 'Richiesta in attesa', 'followRequested' => 'Richiesta in attesa',
'joined' => 'Iscritto', 'joined' => 'Iscritto',
'emptyCollections' => 'We can\'t seem to find any collections', 'emptyCollections' => 'Non riusciamo a trovare alcuna collezione',
'emptyPosts' => 'We can\'t seem to find any posts', 'emptyPosts' => 'Non riusciamo a trovare alcun post',
], ],
'menu' => [ 'menu' => [
@ -180,7 +180,7 @@ return [
], ],
'hashtags' => [ 'hashtags' => [
'emptyFeed' => 'We can\'t seem to find any posts for this hashtag' 'emptyFeed' => 'Non riusciamo a trovare alcun post con questo hashtag'
], ],
]; ];

186
resources/lang/me/web.php Normal file
View file

@ -0,0 +1,186 @@
<?php
return [
'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',
// Timelines
'homeFeed' => 'Home Feed',
'localFeed' => 'Local Feed',
'globalFeed' => 'Global Feed',
// Core features
'discover' => 'Discover',
'directMessages' => 'Direct Messages',
'notifications' => 'Notifications',
'groups' => 'Groups',
'stories' => 'Stories',
// Self links
'profile' => 'Profile',
'drive' => 'Drive',
'settings' => 'Settings',
'compose' => 'Create New',
'logout' => 'Logout',
// Nav footer
'about' => 'About',
'help' => 'Help',
'language' => 'Language',
'privacy' => 'Privacy',
'terms' => 'Terms',
// Temporary links
'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',
'emptyCollections' => 'We can\'t seem to find any collections',
'emptyPosts' => 'We can\'t seem to find any posts',
],
'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'
],
'hashtags' => [
'emptyFeed' => 'We can\'t seem to find any posts for this hashtag'
],
];

186
resources/lang/mk/web.php Normal file
View file

@ -0,0 +1,186 @@
<?php
return [
'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',
// Timelines
'homeFeed' => 'Home Feed',
'localFeed' => 'Local Feed',
'globalFeed' => 'Global Feed',
// Core features
'discover' => 'Discover',
'directMessages' => 'Direct Messages',
'notifications' => 'Notifications',
'groups' => 'Groups',
'stories' => 'Stories',
// Self links
'profile' => 'Profile',
'drive' => 'Drive',
'settings' => 'Settings',
'compose' => 'Create New',
'logout' => 'Logout',
// Nav footer
'about' => 'About',
'help' => 'Help',
'language' => 'Language',
'privacy' => 'Privacy',
'terms' => 'Terms',
// Temporary links
'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',
'emptyCollections' => 'We can\'t seem to find any collections',
'emptyPosts' => 'We can\'t seem to find any posts',
],
'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'
],
'hashtags' => [
'emptyFeed' => 'We can\'t seem to find any posts for this hashtag'
],
];

View file

@ -48,14 +48,14 @@ return [
'directMessages' => 'Mensagens privadas', 'directMessages' => 'Mensagens privadas',
'notifications' => 'Notificações', 'notifications' => 'Notificações',
'groups' => 'Grupos', 'groups' => 'Grupos',
'stories' => 'Stories', 'stories' => 'Histórias',
// Self links // Self links
'profile' => 'Perfil', 'profile' => 'Perfil',
'drive' => 'Drive', 'drive' => 'Mídias',
'settings' => 'Configurações', 'settings' => 'Configurações',
'compose' => 'Criar novo', 'compose' => 'Criar novo',
'logout' => 'Logout', 'logout' => 'Sair',
// Nav footer // Nav footer
'about' => 'Sobre', 'about' => 'Sobre',

View file

@ -4,7 +4,7 @@ return [
'common' => [ 'common' => [
'comment' => 'Komentovať', 'comment' => 'Komentovať',
'commented' => 'Commented', 'commented' => 'Komentoval',
'comments' => 'Komentáre', 'comments' => 'Komentáre',
'like' => 'Páči sa mi', 'like' => 'Páči sa mi',
'liked' => 'Páči sa mi', 'liked' => 'Páči sa mi',
@ -55,7 +55,7 @@ return [
'drive' => 'Úložisko', 'drive' => 'Úložisko',
'settings' => 'Nastavenia', 'settings' => 'Nastavenia',
'compose' => 'Vytvoriť nový', 'compose' => 'Vytvoriť nový',
'logout' => 'Logout', 'logout' => 'Odhlásiť sa',
// Nav footer // Nav footer
'about' => 'O aplikácii', 'about' => 'O aplikácii',
@ -116,7 +116,7 @@ return [
'unfollow' => 'Prestať sledovať', 'unfollow' => 'Prestať sledovať',
'editProfile' => 'Upraviť Profil', 'editProfile' => 'Upraviť Profil',
'followRequested' => 'Žiadosť o sledovanie bola odoslaná', 'followRequested' => 'Žiadosť o sledovanie bola odoslaná',
'joined' => 'Joined', 'joined' => 'Pripojené',
'emptyCollections' => 'Zdá sa, že nemôžeme nájsť žiadne kolekcie', 'emptyCollections' => 'Zdá sa, že nemôžeme nájsť žiadne kolekcie',
'emptyPosts' => 'Zdá sa, že nemôžeme nájsť žiadne príspevky', 'emptyPosts' => 'Zdá sa, že nemôžeme nájsť žiadne príspevky',
@ -132,11 +132,11 @@ return [
'embed' => 'Vložiť', 'embed' => 'Vložiť',
'selectOneOption' => 'Prosím, vyberte jednu z nasledujúcich možností', 'selectOneOption' => 'Prosím, vyberte jednu z nasledujúcich možností',
'unlistFromTimelines' => 'Unlist from Timelines', 'unlistFromTimelines' => 'Odstrániť z Timelines',
'addCW' => 'Pridať upozornenie o obsahu', 'addCW' => 'Pridať upozornenie o obsahu',
'removeCW' => 'Odstrániť upozornenie o obsahu', 'removeCW' => 'Odstrániť upozornenie o obsahu',
'markAsSpammer' => 'Označiť ako Spammer', 'markAsSpammer' => 'Označiť ako Spammer',
'markAsSpammerText' => 'Unlist + CW existing and future posts', 'markAsSpammerText' => 'Odstrániť zo zoznamu + upozornenie o obsahu existujúce a budúce príspevky',
'spam' => 'Spam', 'spam' => 'Spam',
'sensitive' => 'Citlivý obsah', 'sensitive' => 'Citlivý obsah',
'abusive' => 'Zneužívajúci alebo Škodlivý', 'abusive' => 'Zneužívajúci alebo Škodlivý',
@ -154,10 +154,10 @@ return [
'modCWSuccess' => 'Upozornenie o obsahu bolo úspešne pridané', 'modCWSuccess' => 'Upozornenie o obsahu bolo úspešne pridané',
'modRemoveCWConfirm' => 'Naozaj chcete odstrániť upozornenie o obsahu z tohto príspevku?', 'modRemoveCWConfirm' => 'Naozaj chcete odstrániť upozornenie o obsahu z tohto príspevku?',
'modRemoveCWSuccess' => 'Upozornenie o obsahu bolo úspešne odstránené', 'modRemoveCWSuccess' => 'Upozornenie o obsahu bolo úspešne odstránené',
'modUnlistConfirm' => 'Are you sure you want to unlist this post?', 'modUnlistConfirm' => 'Naozaj chcete odstrániť zo zoznamu tento príspevok?',
'modUnlistSuccess' => 'Successfully unlisted post', 'modUnlistSuccess' => 'Príspevok bol úspešne odstránený zo zoznamu',
'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' => 'Naozaj chcete označiť tohto používateľa ako odosielateľa spamu? Všetky existujúce a budúce príspevky budú odstránené z timelines a bude pridané upozornenie o obsahu.',
'modMarkAsSpammerSuccess' => 'Účet bol úspešne označený ako spammer', 'modMarkAsSpammerSuccess' => 'Účet bol úspešne označený ako odosielateľa spamu',
'toFollowers' => 'pre Sledujúcich', 'toFollowers' => 'pre Sledujúcich',

View file

@ -55,7 +55,7 @@ return [
'drive' => 'Lưu trữ', 'drive' => 'Lưu trữ',
'settings' => 'Thiết lập', 'settings' => 'Thiết lập',
'compose' => 'Ảnh mới', 'compose' => 'Ảnh mới',
'logout' => 'Logout', 'logout' => 'Đăng xuất',
// Nav footer // Nav footer
'about' => 'Giới thiệu', 'about' => 'Giới thiệu',