diff --git a/app/Jobs/StatusPipeline/StatusEntityLexer.php b/app/Jobs/StatusPipeline/StatusEntityLexer.php index a64ca7602..1c5b172b6 100644 --- a/app/Jobs/StatusPipeline/StatusEntityLexer.php +++ b/app/Jobs/StatusPipeline/StatusEntityLexer.php @@ -107,9 +107,13 @@ class StatusEntityLexer implements ShouldQueue } DB::transaction(function () use ($status, $tag) { $slug = str_slug($tag, '-', false); - $hashtag = Hashtag::firstOrCreate( - ['name' => $tag, 'slug' => $slug] - ); + $hashtag = Hashtag::where('slug', $slug)->first(); + if (!$hashtag) { + $hashtag = Hashtag::create( + ['name' => $tag, 'slug' => $slug] + ); + } + StatusHashtag::firstOrCreate( [ 'status_id' => $status->id, diff --git a/app/Util/Media/Image.php b/app/Util/Media/Image.php index cbc1efe67..9048fbc31 100644 --- a/app/Util/Media/Image.php +++ b/app/Util/Media/Image.php @@ -72,6 +72,8 @@ class Image return [ 'dimensions' => $this->orientations()[$orientation], 'orientation' => $orientation, + 'width_original' => $width, + 'height_original' => $height, ]; } @@ -157,9 +159,14 @@ class Image $media->metadata = json_encode($meta); } - $img->resize($aspect['width'], $aspect['height'], function ($constraint) { - $constraint->aspectRatio(); - }); + if ( + ($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); $newPath = storage_path('app/'.$converted['path']); diff --git a/public/_lang/ar.json b/public/_lang/ar.json index dee919301..d88d5693b 100644 Binary files a/public/_lang/ar.json and b/public/_lang/ar.json differ diff --git a/public/_lang/bs.json b/public/_lang/bs.json new file mode 100644 index 000000000..1acb08636 Binary files /dev/null and b/public/_lang/bs.json differ diff --git a/public/_lang/cs.json b/public/_lang/cs.json index f82925752..fcf926ddf 100644 Binary files a/public/_lang/cs.json and b/public/_lang/cs.json differ diff --git a/public/_lang/de.json b/public/_lang/de.json index 41874694d..653f352dc 100644 Binary files a/public/_lang/de.json and b/public/_lang/de.json differ diff --git a/public/_lang/eu.json b/public/_lang/eu.json index 8bbc9b955..4561c0e7f 100644 Binary files a/public/_lang/eu.json and b/public/_lang/eu.json differ diff --git a/public/_lang/fa.json b/public/_lang/fa.json index ad2a6dbbb..8033bad73 100644 Binary files a/public/_lang/fa.json and b/public/_lang/fa.json differ diff --git a/public/_lang/hi.json b/public/_lang/hi.json new file mode 100644 index 000000000..1acb08636 Binary files /dev/null and b/public/_lang/hi.json differ diff --git a/public/_lang/hr.json b/public/_lang/hr.json new file mode 100644 index 000000000..1acb08636 Binary files /dev/null and b/public/_lang/hr.json differ diff --git a/public/_lang/it.json b/public/_lang/it.json index afdbb811b..5e30d2e69 100644 Binary files a/public/_lang/it.json and b/public/_lang/it.json differ diff --git a/public/_lang/me.json b/public/_lang/me.json new file mode 100644 index 000000000..1acb08636 Binary files /dev/null and b/public/_lang/me.json differ diff --git a/public/_lang/mk.json b/public/_lang/mk.json new file mode 100644 index 000000000..1acb08636 Binary files /dev/null and b/public/_lang/mk.json differ diff --git a/public/_lang/pt.json b/public/_lang/pt.json index 6f014a495..b98b0a5d1 100644 Binary files a/public/_lang/pt.json and b/public/_lang/pt.json differ diff --git a/public/_lang/sk.json b/public/_lang/sk.json index 5da2463c2..31f53469d 100644 Binary files a/public/_lang/sk.json and b/public/_lang/sk.json differ diff --git a/public/_lang/vi.json b/public/_lang/vi.json index 021e9c513..3f76b862f 100644 Binary files a/public/_lang/vi.json and b/public/_lang/vi.json differ diff --git a/public/js/spa.js b/public/js/spa.js index 690610439..ce96e4bd6 100644 Binary files a/public/js/spa.js and b/public/js/spa.js differ diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 9649acbde..854959f23 100644 Binary files a/public/mix-manifest.json and b/public/mix-manifest.json differ diff --git a/resources/assets/js/i18n/ar.json b/resources/assets/js/i18n/ar.json index dee919301..d88d5693b 100644 --- a/resources/assets/js/i18n/ar.json +++ b/resources/assets/js/i18n/ar.json @@ -42,7 +42,7 @@ "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", - "logout": "Logout", + "logout": "\u062a\u064e\u0633\u062c\u064a\u0644\u064f \u0627\u0644\u062e\u064f\u0631\u064f\u0648\u062c", "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", diff --git a/resources/assets/js/i18n/bs.json b/resources/assets/js/i18n/bs.json new file mode 100644 index 000000000..1acb08636 --- /dev/null +++ b/resources/assets/js/i18n/bs.json @@ -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" + } +} \ No newline at end of file diff --git a/resources/assets/js/i18n/cs.json b/resources/assets/js/i18n/cs.json index f82925752..fcf926ddf 100644 --- a/resources/assets/js/i18n/cs.json +++ b/resources/assets/js/i18n/cs.json @@ -42,7 +42,7 @@ "drive": "\u00dalo\u017ei\u0161t\u011b", "settings": "Nastaven\u00ed", "compose": "Vytvo\u0159it nov\u00fd", - "logout": "Logout", + "logout": "Odhl\u00e1sit se", "about": "O aplikaci", "help": "N\u00e1pov\u011bda", "language": "Jazyk", @@ -91,9 +91,9 @@ "unfollow": "P\u0159estat sledovat", "editProfile": "Upravit profil", "followRequested": "Sledov\u00e1n\u00ed vy\u017e\u00e1d\u00e1no", - "joined": "Joined", - "emptyCollections": "We can't seem to find any collections", - "emptyPosts": "We can't seem to find any posts" + "joined": "P\u0159ipojen/a", + "emptyCollections": "Zd\u00e1 se, \u017ee nelze naj\u00edt \u017e\u00e1dn\u00e9 kolekce", + "emptyPosts": "Zd\u00e1 se, \u017ee nelze naj\u00edt \u017e\u00e1dn\u00e9 p\u0159\u00edsp\u011bvky" }, "menu": { "viewPost": "Zobrazit p\u0159\u00edsp\u011bvek", @@ -114,7 +114,7 @@ "abusive": "Ur\u00e1\u017eliv\u00e9 nebo \u0161kodliv\u00e9", "underageAccount": "\u00da\u010det nezletil\u00fdch", "copyrightInfringement": "Poru\u0161en\u00ed autorsk\u00fdch pr\u00e1v", - "impersonation": "Impersonation", + "impersonation": "P\u0159edst\u00edr\u00e1n\u00ed identity", "scamOrFraud": "Podvod", "confirmReport": "Potvrdit hl\u00e1\u0161en\u00ed", "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", "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", + "toFollowers": "sleduj\u00edc\u00edm", "showCaption": "Uk\u00e1zat popisek", "showLikes": "Zobrazit To se mi l\u00edb\u00ed", "compactMode": "Kompaktn\u00ed re\u017eim", diff --git a/resources/assets/js/i18n/de.json b/resources/assets/js/i18n/de.json index 41874694d..653f352dc 100644 --- a/resources/assets/js/i18n/de.json +++ b/resources/assets/js/i18n/de.json @@ -42,7 +42,7 @@ "drive": "Festplatte", "settings": "Einstellungen", "compose": "Neu erstellen", - "logout": "Logout", + "logout": "Ausloggen", "about": "\u00dcber uns", "help": "Hilfe", "language": "Sprache", diff --git a/resources/assets/js/i18n/eu.json b/resources/assets/js/i18n/eu.json index 8bbc9b955..4561c0e7f 100644 --- a/resources/assets/js/i18n/eu.json +++ b/resources/assets/js/i18n/eu.json @@ -42,7 +42,7 @@ "drive": "Unitatea", "settings": "Ezarpenak", "compose": "Sortu berria", - "logout": "Logout", + "logout": "Saioa itxi", "about": "Honi buruz", "help": "Laguntza", "language": "Hizkuntza", @@ -104,11 +104,11 @@ "unarchive": "Desartxibatu", "embed": "Kapsulatu", "selectOneOption": "Hautatu aukera hauetako bat", - "unlistFromTimelines": "Unlist from Timelines", + "unlistFromTimelines": "Denbora-lerroetatik ezkutatu", "addCW": "Gehitu edukiaren abisua", "removeCW": "Kendu edukiaren abisua", "markAsSpammer": "Markatu zabor-bidaltzaile gisa", - "markAsSpammerText": "Unlist + CW existing and future posts", + "markAsSpammerText": "Ezkutatu + edukiaren abisua jarri etorkizuneko bidalketei", "spam": "Zaborra", "sensitive": "Eduki hunkigarria", "abusive": "Bortxazko edo Mingarria", @@ -125,15 +125,15 @@ "modCWSuccess": "Edukiaren abisua ondo gehitu da", "modRemoveCWConfirm": "Ziur al zaude edukiaren abisua kendu nahi duzula bidalketa honetarako?", "modRemoveCWSuccess": "Edukiaren abisua ondo kendu da", - "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.", + "modUnlistConfirm": "Ziur al zaude bidalketa hau ezkutatu nahi duzula?", + "modUnlistSuccess": "Bidalketa ondo ezkutatu da", + "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", "toFollowers": "jarraitzaileei", "showCaption": "Irudiaren azalpena erakutsi", "showLikes": "Erakutsi atsegiteak", "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?", "archivePostConfirm": "Ziur al zaude bidalketa hau artxibatu nahi duzula?", "unarchivePostConfirm": "Ziur bidalketa hau desartxibatu nahi duzula?" diff --git a/resources/assets/js/i18n/fa.json b/resources/assets/js/i18n/fa.json index ad2a6dbbb..8033bad73 100644 --- a/resources/assets/js/i18n/fa.json +++ b/resources/assets/js/i18n/fa.json @@ -92,8 +92,8 @@ "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", "joined": "\u067e\u06cc\u0648\u0633\u062a", - "emptyCollections": "We can't seem to find any collections", - "emptyPosts": "We can't seem to find any posts" + "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": "\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": { "viewPost": "\u0646\u0645\u0627\u06cc\u0634 \u0641\u0631\u0633\u062a\u0647", @@ -112,7 +112,7 @@ "spam": "\u0647\u0631\u0632\u0646\u0627\u0645\u0647", "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", - "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", "impersonation": "\u062c\u0639\u0644 \u0647\u0648\u06cc\u062a", "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" }, "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" } } \ No newline at end of file diff --git a/resources/assets/js/i18n/hi.json b/resources/assets/js/i18n/hi.json new file mode 100644 index 000000000..1acb08636 --- /dev/null +++ b/resources/assets/js/i18n/hi.json @@ -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" + } +} \ No newline at end of file diff --git a/resources/assets/js/i18n/hr.json b/resources/assets/js/i18n/hr.json new file mode 100644 index 000000000..1acb08636 --- /dev/null +++ b/resources/assets/js/i18n/hr.json @@ -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" + } +} \ No newline at end of file diff --git a/resources/assets/js/i18n/it.json b/resources/assets/js/i18n/it.json index afdbb811b..5e30d2e69 100644 --- a/resources/assets/js/i18n/it.json +++ b/resources/assets/js/i18n/it.json @@ -3,7 +3,7 @@ "comment": "Commenta", "commented": "Commentato", "comments": "Commenti", - "like": "Mi piace", + "like": "Like", "liked": "Like aggiunto", "likes": "Tutti i Like", "share": "Condividi", @@ -25,7 +25,7 @@ }, "site": { "terms": "Termini di Utilizzo", - "privacy": "Informativa sulla Privacy" + "privacy": "Informativa Privacy" }, "navmenu": { "search": "Cerca", @@ -42,9 +42,9 @@ "drive": "Drive", "settings": "Impostazioni", "compose": "Crea Nuovo", - "logout": "Logout", + "logout": "Esci", "about": "Info", - "help": "Aiuto", + "help": "Supporto", "language": "Lingua", "privacy": "Privacy", "terms": "Condizioni", @@ -92,8 +92,8 @@ "editProfile": "Modifica profilo", "followRequested": "Richiesta in attesa", "joined": "Iscritto", - "emptyCollections": "We can't seem to find any collections", - "emptyPosts": "We can't seem to find any posts" + "emptyCollections": "Non riusciamo a trovare alcuna collezione", + "emptyPosts": "Non riusciamo a trovare alcun post" }, "menu": { "viewPost": "Mostra Post", @@ -145,6 +145,6 @@ "peopleYouMayKnow": "Persone che potresti conoscere" }, "hashtags": { - "emptyFeed": "We can't seem to find any posts for this hashtag" + "emptyFeed": "Non riusciamo a trovare alcun post con questo hashtag" } } \ No newline at end of file diff --git a/resources/assets/js/i18n/me.json b/resources/assets/js/i18n/me.json new file mode 100644 index 000000000..1acb08636 --- /dev/null +++ b/resources/assets/js/i18n/me.json @@ -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" + } +} \ No newline at end of file diff --git a/resources/assets/js/i18n/mk.json b/resources/assets/js/i18n/mk.json new file mode 100644 index 000000000..1acb08636 --- /dev/null +++ b/resources/assets/js/i18n/mk.json @@ -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" + } +} \ No newline at end of file diff --git a/resources/assets/js/i18n/pt.json b/resources/assets/js/i18n/pt.json index 6f014a495..b98b0a5d1 100644 --- a/resources/assets/js/i18n/pt.json +++ b/resources/assets/js/i18n/pt.json @@ -37,12 +37,12 @@ "directMessages": "Mensagens privadas", "notifications": "Notifica\u00e7\u00f5es", "groups": "Grupos", - "stories": "Stories", + "stories": "Hist\u00f3rias", "profile": "Perfil", - "drive": "Drive", + "drive": "M\u00eddias", "settings": "Configura\u00e7\u00f5es", "compose": "Criar novo", - "logout": "Logout", + "logout": "Sair", "about": "Sobre", "help": "Ajuda", "language": "Idioma", diff --git a/resources/assets/js/i18n/sk.json b/resources/assets/js/i18n/sk.json index 5da2463c2..31f53469d 100644 --- a/resources/assets/js/i18n/sk.json +++ b/resources/assets/js/i18n/sk.json @@ -1,7 +1,7 @@ { "common": { "comment": "Komentova\u0165", - "commented": "Commented", + "commented": "Komentoval", "comments": "Koment\u00e1re", "like": "P\u00e1\u010di sa mi", "liked": "P\u00e1\u010di sa mi", @@ -42,7 +42,7 @@ "drive": "\u00dalo\u017eisko", "settings": "Nastavenia", "compose": "Vytvori\u0165 nov\u00fd", - "logout": "Logout", + "logout": "Odhl\u00e1si\u0165 sa", "about": "O aplik\u00e1cii", "help": "Pomocn\u00edk", "language": "Jazyk", @@ -91,7 +91,7 @@ "unfollow": "Presta\u0165 sledova\u0165", "editProfile": "Upravi\u0165 Profil", "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", "emptyPosts": "Zd\u00e1 sa, \u017ee nem\u00f4\u017eeme n\u00e1js\u0165 \u017eiadne pr\u00edspevky" }, @@ -104,11 +104,11 @@ "unarchive": "Odarchivova\u0165", "embed": "Vlo\u017ei\u0165", "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", "removeCW": "Odstr\u00e1ni\u0165 upozornenie o obsahu", "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", "sensitive": "Citliv\u00fd obsah", "abusive": "Zneu\u017e\u00edvaj\u00faci alebo \u0160kodliv\u00fd", @@ -125,10 +125,10 @@ "modCWSuccess": "Upozornenie o obsahu bolo \u00faspe\u0161ne pridan\u00e9", "modRemoveCWConfirm": "Naozaj chcete odstr\u00e1ni\u0165 upozornenie o obsahu z tohto pr\u00edspevku?", "modRemoveCWSuccess": "Upozornenie o obsahu bolo \u00faspe\u0161ne odstr\u00e1nen\u00e9", - "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": "\u00da\u010det bol \u00faspe\u0161ne ozna\u010den\u00fd ako spammer", + "modUnlistConfirm": "Naozaj chcete odstr\u00e1ni\u0165 zo zoznamu tento pr\u00edspevok?", + "modUnlistSuccess": "Pr\u00edspevok bol \u00faspe\u0161ne odstr\u00e1nen\u00fd zo zoznamu", + "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 odosielate\u013ea spamu", "toFollowers": "pre Sleduj\u00facich", "showCaption": "Zobrazi\u0165 Titulok", "showLikes": "Zobrazi\u0165 P\u00e1\u010di sa mi", diff --git a/resources/assets/js/i18n/vi.json b/resources/assets/js/i18n/vi.json index 021e9c513..3f76b862f 100644 --- a/resources/assets/js/i18n/vi.json +++ b/resources/assets/js/i18n/vi.json @@ -42,7 +42,7 @@ "drive": "L\u01b0u tr\u1eef", "settings": "Thi\u1ebft l\u1eadp", "compose": "\u1ea2nh m\u1edbi", - "logout": "Logout", + "logout": "\u0110\u0103ng xu\u1ea5t", "about": "Gi\u1edbi thi\u1ec7u", "help": "Tr\u1ee3 gi\u00fap", "language": "Ng\u00f4n ng\u1eef", diff --git a/resources/lang/ar/web.php b/resources/lang/ar/web.php index 159c818d9..416d56e53 100644 --- a/resources/lang/ar/web.php +++ b/resources/lang/ar/web.php @@ -55,7 +55,7 @@ return [ 'drive' => 'وِحدَةُ التَّخزين', 'settings' => 'الإعدَادَات', 'compose' => 'إنشاءُ جَديد', - 'logout' => 'Logout', + 'logout' => 'تَسجيلُ الخُرُوج', // Nav footer 'about' => 'حَول', diff --git a/resources/lang/bs/web.php b/resources/lang/bs/web.php new file mode 100644 index 000000000..3844f847a --- /dev/null +++ b/resources/lang/bs/web.php @@ -0,0 +1,186 @@ + [ + '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' + ], + +]; diff --git a/resources/lang/cs/web.php b/resources/lang/cs/web.php index e9462780b..bf08f7ee4 100644 --- a/resources/lang/cs/web.php +++ b/resources/lang/cs/web.php @@ -55,7 +55,7 @@ return [ 'drive' => 'Úložiště', 'settings' => 'Nastavení', 'compose' => 'Vytvořit nový', - 'logout' => 'Logout', + 'logout' => 'Odhlásit se', // Nav footer 'about' => 'O aplikaci', @@ -116,10 +116,10 @@ return [ 'unfollow' => 'Přestat sledovat', 'editProfile' => 'Upravit profil', 'followRequested' => 'Sledování vyžádáno', - 'joined' => 'Joined', + 'joined' => 'Připojen/a', - 'emptyCollections' => 'We can\'t seem to find any collections', - 'emptyPosts' => 'We can\'t seem to find any posts', + 'emptyCollections' => 'Zdá se, že nelze najít žádné kolekce', + 'emptyPosts' => 'Zdá se, že nelze najít žádné příspěvky', ], 'menu' => [ @@ -142,7 +142,7 @@ return [ 'abusive' => 'Urážlivé nebo škodlivé', 'underageAccount' => 'Účet nezletilých', 'copyrightInfringement' => 'Porušení autorských práv', - 'impersonation' => 'Impersonation', + 'impersonation' => 'Předstírání identity', 'scamOrFraud' => 'Podvod', 'confirmReport' => 'Potvrdit hlášení', '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.', 'modMarkAsSpammerSuccess' => 'Účet byl označen jako spammer', - 'toFollowers' => 'to Followers', + 'toFollowers' => 'sledujícím', 'showCaption' => 'Ukázat popisek', 'showLikes' => 'Zobrazit To se mi líbí', diff --git a/resources/lang/de/web.php b/resources/lang/de/web.php index 95daf4a26..7c557d03d 100644 --- a/resources/lang/de/web.php +++ b/resources/lang/de/web.php @@ -55,7 +55,7 @@ return [ 'drive' => 'Festplatte', 'settings' => 'Einstellungen', 'compose' => 'Neu erstellen', - 'logout' => 'Logout', + 'logout' => 'Ausloggen', // Nav footer 'about' => 'Über uns', diff --git a/resources/lang/eu/web.php b/resources/lang/eu/web.php index 521156694..2d64ab425 100644 --- a/resources/lang/eu/web.php +++ b/resources/lang/eu/web.php @@ -55,7 +55,7 @@ return [ 'drive' => 'Unitatea', 'settings' => 'Ezarpenak', 'compose' => 'Sortu berria', - 'logout' => 'Logout', + 'logout' => 'Saioa itxi', // Nav footer 'about' => 'Honi buruz', @@ -132,11 +132,11 @@ return [ 'embed' => 'Kapsulatu', 'selectOneOption' => 'Hautatu aukera hauetako bat', - 'unlistFromTimelines' => 'Unlist from Timelines', + 'unlistFromTimelines' => 'Denbora-lerroetatik ezkutatu', 'addCW' => 'Gehitu edukiaren abisua', 'removeCW' => 'Kendu edukiaren abisua', 'markAsSpammer' => 'Markatu zabor-bidaltzaile gisa', - 'markAsSpammerText' => 'Unlist + CW existing and future posts', + 'markAsSpammerText' => 'Ezkutatu + edukiaren abisua jarri etorkizuneko bidalketei', 'spam' => 'Zaborra', 'sensitive' => 'Eduki hunkigarria', 'abusive' => 'Bortxazko edo Mingarria', @@ -154,9 +154,9 @@ return [ 'modCWSuccess' => 'Edukiaren abisua ondo gehitu da', 'modRemoveCWConfirm' => 'Ziur al zaude edukiaren abisua kendu nahi duzula bidalketa honetarako?', 'modRemoveCWSuccess' => 'Edukiaren abisua ondo kendu da', - '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.', + 'modUnlistConfirm' => 'Ziur al zaude bidalketa hau ezkutatu nahi duzula?', + 'modUnlistSuccess' => 'Bidalketa ondo ezkutatu da', + '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', 'toFollowers' => 'jarraitzaileei', @@ -164,7 +164,7 @@ return [ 'showCaption' => 'Irudiaren azalpena erakutsi', 'showLikes' => 'Erakutsi atsegiteak', '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?', 'archivePostConfirm' => 'Ziur al zaude bidalketa hau artxibatu nahi duzula?', diff --git a/resources/lang/fa/web.php b/resources/lang/fa/web.php index 49c2d5bea..c552c04b4 100644 --- a/resources/lang/fa/web.php +++ b/resources/lang/fa/web.php @@ -118,8 +118,8 @@ return [ 'followRequested' => 'درخواست دنبال کردن فرستاده شد', 'joined' => 'پیوست', - 'emptyCollections' => 'We can\'t seem to find any collections', - 'emptyPosts' => 'We can\'t seem to find any posts', + 'emptyCollections' => 'به نظر می‌رسد که نمی‌توانیم هیچ مجموعه‌ای پیدا کنیم', + 'emptyPosts' => 'به نظر می‌رسد که نمی‌توانیم هیچ فرسته‌ای پیدا کنیم', ], 'menu' => [ @@ -140,7 +140,7 @@ return [ 'spam' => 'هرزنامه', 'sensitive' => 'محتوای حساس', 'abusive' => 'توهین‌آمیز و مضر', - 'underageAccount' => 'Underage Account', + 'underageAccount' => 'حساب زیر سن قانونی', 'copyrightInfringement' => 'نقض قوانین حق تکثیر', 'impersonation' => 'جعل هویت', 'scamOrFraud' => 'Scam or Fraud', @@ -180,7 +180,7 @@ return [ ], 'hashtags' => [ - 'emptyFeed' => 'We can\'t seem to find any posts for this hashtag' + 'emptyFeed' => 'به نظر می‌رسد که نمی‌توانیم چیزی برای این هشتگ پیدا کنیم' ], ]; diff --git a/resources/lang/hi/web.php b/resources/lang/hi/web.php new file mode 100644 index 000000000..3844f847a --- /dev/null +++ b/resources/lang/hi/web.php @@ -0,0 +1,186 @@ + [ + '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' + ], + +]; diff --git a/resources/lang/hr/web.php b/resources/lang/hr/web.php new file mode 100644 index 000000000..3844f847a --- /dev/null +++ b/resources/lang/hr/web.php @@ -0,0 +1,186 @@ + [ + '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' + ], + +]; diff --git a/resources/lang/it/web.php b/resources/lang/it/web.php index fc5f693ef..bb023c3ca 100644 --- a/resources/lang/it/web.php +++ b/resources/lang/it/web.php @@ -6,7 +6,7 @@ return [ 'comment' => 'Commenta', 'commented' => 'Commentato', 'comments' => 'Commenti', - 'like' => 'Mi piace', + 'like' => 'Like', 'liked' => 'Like aggiunto', 'likes' => 'Tutti i Like', 'share' => 'Condividi', @@ -31,7 +31,7 @@ return [ 'site' => [ 'terms' => 'Termini di Utilizzo', - 'privacy' => 'Informativa sulla Privacy', + 'privacy' => 'Informativa Privacy', ], 'navmenu' => [ @@ -55,11 +55,11 @@ return [ 'drive' => 'Drive', 'settings' => 'Impostazioni', 'compose' => 'Crea Nuovo', - 'logout' => 'Logout', + 'logout' => 'Esci', // Nav footer 'about' => 'Info', - 'help' => 'Aiuto', + 'help' => 'Supporto', 'language' => 'Lingua', 'privacy' => 'Privacy', 'terms' => 'Condizioni', @@ -118,8 +118,8 @@ return [ 'followRequested' => 'Richiesta in attesa', 'joined' => 'Iscritto', - 'emptyCollections' => 'We can\'t seem to find any collections', - 'emptyPosts' => 'We can\'t seem to find any posts', + 'emptyCollections' => 'Non riusciamo a trovare alcuna collezione', + 'emptyPosts' => 'Non riusciamo a trovare alcun post', ], 'menu' => [ @@ -180,7 +180,7 @@ return [ ], 'hashtags' => [ - 'emptyFeed' => 'We can\'t seem to find any posts for this hashtag' + 'emptyFeed' => 'Non riusciamo a trovare alcun post con questo hashtag' ], ]; diff --git a/resources/lang/me/web.php b/resources/lang/me/web.php new file mode 100644 index 000000000..3844f847a --- /dev/null +++ b/resources/lang/me/web.php @@ -0,0 +1,186 @@ + [ + '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' + ], + +]; diff --git a/resources/lang/mk/web.php b/resources/lang/mk/web.php new file mode 100644 index 000000000..3844f847a --- /dev/null +++ b/resources/lang/mk/web.php @@ -0,0 +1,186 @@ + [ + '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' + ], + +]; diff --git a/resources/lang/pt/web.php b/resources/lang/pt/web.php index 315274076..67e7bd45f 100644 --- a/resources/lang/pt/web.php +++ b/resources/lang/pt/web.php @@ -48,14 +48,14 @@ return [ 'directMessages' => 'Mensagens privadas', 'notifications' => 'Notificações', 'groups' => 'Grupos', - 'stories' => 'Stories', + 'stories' => 'Histórias', // Self links 'profile' => 'Perfil', - 'drive' => 'Drive', + 'drive' => 'Mídias', 'settings' => 'Configurações', 'compose' => 'Criar novo', - 'logout' => 'Logout', + 'logout' => 'Sair', // Nav footer 'about' => 'Sobre', diff --git a/resources/lang/sk/web.php b/resources/lang/sk/web.php index 96d7addc5..dc37b94b0 100644 --- a/resources/lang/sk/web.php +++ b/resources/lang/sk/web.php @@ -4,7 +4,7 @@ return [ 'common' => [ 'comment' => 'Komentovať', - 'commented' => 'Commented', + 'commented' => 'Komentoval', 'comments' => 'Komentáre', 'like' => 'Páči sa mi', 'liked' => 'Páči sa mi', @@ -55,7 +55,7 @@ return [ 'drive' => 'Úložisko', 'settings' => 'Nastavenia', 'compose' => 'Vytvoriť nový', - 'logout' => 'Logout', + 'logout' => 'Odhlásiť sa', // Nav footer 'about' => 'O aplikácii', @@ -116,7 +116,7 @@ return [ 'unfollow' => 'Prestať sledovať', 'editProfile' => 'Upraviť Profil', 'followRequested' => 'Žiadosť o sledovanie bola odoslaná', - 'joined' => 'Joined', + 'joined' => 'Pripojené', 'emptyCollections' => 'Zdá sa, že nemôžeme nájsť žiadne kolekcie', 'emptyPosts' => 'Zdá sa, že nemôžeme nájsť žiadne príspevky', @@ -132,11 +132,11 @@ return [ 'embed' => 'Vložiť', 'selectOneOption' => 'Prosím, vyberte jednu z nasledujúcich možností', - 'unlistFromTimelines' => 'Unlist from Timelines', + 'unlistFromTimelines' => 'Odstrániť z Timelines', 'addCW' => 'Pridať upozornenie o obsahu', 'removeCW' => 'Odstrániť upozornenie o obsahu', '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', 'sensitive' => 'Citlivý obsah', 'abusive' => 'Zneužívajúci alebo Škodlivý', @@ -154,10 +154,10 @@ return [ 'modCWSuccess' => 'Upozornenie o obsahu bolo úspešne pridané', 'modRemoveCWConfirm' => 'Naozaj chcete odstrániť upozornenie o obsahu z tohto príspevku?', 'modRemoveCWSuccess' => 'Upozornenie o obsahu bolo úspešne odstránené', - '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' => 'Účet bol úspešne označený ako spammer', + 'modUnlistConfirm' => 'Naozaj chcete odstrániť zo zoznamu tento príspevok?', + 'modUnlistSuccess' => 'Príspevok bol úspešne odstránený zo zoznamu', + '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 odosielateľa spamu', 'toFollowers' => 'pre Sledujúcich', diff --git a/resources/lang/vi/web.php b/resources/lang/vi/web.php index bc72cb1ec..5e116d800 100644 --- a/resources/lang/vi/web.php +++ b/resources/lang/vi/web.php @@ -55,7 +55,7 @@ return [ 'drive' => 'Lưu trữ', 'settings' => 'Thiết lập', 'compose' => 'Ảnh mới', - 'logout' => 'Logout', + 'logout' => 'Đăng xuất', // Nav footer 'about' => 'Giới thiệu',