Spotlight Creator Info

This commit is contained in:
William Boser
2026-02-09 12:10:18 +04:00
parent c50327bfe9
commit 36aa0c52a2
5 changed files with 551 additions and 0 deletions

View File

@@ -957,6 +957,10 @@
"name": "أيقونة اسم مستخدم تعليقات منصة الأضواء",
"description": "اختر الأيقونة التي يتم عرضها بجانب أسماء المستخدمين في تعليقات منصة الأضواء"
},
"spotlight_creator_info": {
"name": "معلومات منشئ منصة الأضواء",
"description": "عرض زر معلومات على سنابات منصة الأضواء/اكتشف لرؤية اسم العرض واسم المستخدم ومعرف المستخدم للمنشئ"
},
"bypass_video_length_restriction": {
"name": "تجاوز قيود طول الفيديو",
"description": "مفرد: يرسل فيديو واحد\nمقسم: يقسم الفيديو بعد التحرير"
@@ -3128,6 +3132,25 @@
"select_date_first": "يرجى تحديد تاريخ أولاً",
"invalid_time": "يرجى تحديد وقت مستقبلي"
},
"spotlight_creator_info": {
"title": "معلومات المنشئ",
"close": "إغلاق",
"creator_info": "معلومات المنشئ",
"display_name": "اسم العرض",
"username": "اسم المستخدم",
"user_id": "معرف المستخدم",
"posted_on": "نُشر في",
"loading_username": "جاري التحميل…",
"username_copied": "تم نسخ اسم المستخدم",
"user_id_copied": "تم نسخ معرف المستخدم",
"friend_status": "حالة الصداقة",
"mutual_friend": "صديق مشترك",
"following": "متابَع",
"friend_request_sent": "تم إرسال الطلب",
"friend_request_received": "تم استلام الطلب",
"blocked": "محظور",
"friend_removed": "تمت إزالته"
},
"auto_reply_messages": {
"dialog": {
"add_message": "إضافة رسالة",

View File

@@ -1796,6 +1796,10 @@
"name": "Spotlight Comments Username Icon",
"description": "Choose which icon is displayed next to usernames in Spotlight comments"
},
"spotlight_creator_info": {
"name": "Spotlight Creator Info",
"description": "Show an info button on Spotlight/Discover snaps to view creator display name, username, and user ID"
},
"bypass_video_length_restriction": {
"name": "Bypass Video Length Restrictions",
"description": "Single: sends a single video\nSplit: split videos after editing"
@@ -3223,6 +3227,25 @@
"select_date_first": "Please select a date",
"invalid_time": "Please select a future time"
},
"spotlight_creator_info": {
"title": "Creator Info",
"close": "Close",
"creator_info": "Creator Info",
"display_name": "Display name",
"username": "Username",
"user_id": "User ID",
"posted_on": "Posted",
"loading_username": "Loading…",
"username_copied": "Username copied",
"user_id_copied": "User ID copied",
"friend_status": "Friend status",
"mutual_friend": "Mutual friend",
"following": "Following",
"friend_request_sent": "Request sent",
"friend_request_received": "Request received",
"blocked": "Blocked",
"friend_removed": "Removed"
},
"auto_reply_messages": {
"dialog": {
"add_message": "Add Message",

View File

@@ -50,6 +50,7 @@ class Global : ConfigContainer() {
val disableMemoriesSnapFeed = boolean("disable_memories_snap_feed")
val spotlightCommentsUsername = boolean("spotlight_comments_username") { requireRestart() }
val spotlightCommentsUsernameIcon = string("spotlight_comments_username_icon", "[👤]") { requireRestart() }
val spotlightCreatorInfo = boolean("spotlight_creator_info") { requireRestart() }
val bypassVideoLengthRestriction = unique("bypass_video_length_restriction", "split", "single") { addNotices(
FeatureNotice.BAN_RISK); requireRestart() }
val defaultVideoPlaybackRate = float("default_video_playback_rate", 1.0F) { requireRestart(); inputCheck = { (it.toFloatOrNull() ?: 1.0F) in 0.1F..4.0F} }