[ 'meta_title' => 'My Activity', 'meta_description' => 'Review this browser\'s reading history, recent visits, and document activity in the bilingual library.', 'hero_kicker' => 'Reader profile', 'hero_title' => 'Reading history and visit activity', 'hero_copy' => 'This is a lightweight visitor profile for the current browser. It tracks your catalog visits and document reading flow without requiring a login.', 'browser_only' => 'Browser-only profile', 'browser_only_copy' => 'The data below belongs to this browser token only. Opening the site from another browser or device will create a separate profile.', 'visits' => 'Visits', 'activities' => 'Activities', 'documents_opened' => 'Documents opened', 'last_read' => 'Last read', 'first_seen' => 'First seen', 'last_seen' => 'Last seen', 'preferred_language' => 'Preferred interface language', 'last_page' => 'Last page', 'reading_kicker' => 'Reading history', 'reading_title' => 'Recently opened documents', 'reading_empty_title' => 'No reading history yet', 'reading_empty_copy' => 'Open a public document from the catalog and it will appear here.', 'open_count' => 'Opens', 'open_document' => 'Open document', 'open_catalog' => 'Browse catalog', 'open_reader' => 'Reader used', 'never' => 'Not yet', 'unknown_author' => 'Unknown author', 'untitled' => 'Untitled document', 'visits_kicker' => 'Visit sessions', 'visits_title' => 'Recent visits', 'visits_empty' => 'Your visit list will appear after you browse a few pages.', 'entry_page' => 'Entry page', 'page_views' => 'Page views', 'document_actions' => 'Document actions', 'activity_kicker' => 'Activity timeline', 'activity_title' => 'Latest actions', 'activity_empty' => 'Your recent activity will show up here as you browse.', 'activity_path' => 'Path', 'activity_document' => 'Document', 'activity_catalog_viewed' => 'Opened the catalog', 'activity_document_viewed' => 'Opened a document page', 'activity_reader_opened' => 'Opened the fullscreen reader', 'activity_profile_viewed' => 'Viewed the activity page', 'activity_default' => 'Visited a page', 'time_unknown' => 'Unknown', 'language_en' => 'English', 'language_ar' => 'Arabic', 'language_bilingual' => 'Bilingual', ], 'ar' => [ 'meta_title' => 'سجل نشاطي', 'meta_description' => 'راجع سجل القراءة والزيارات الأخيرة ونشاط المستندات لهذا المتصفح داخل المكتبة الثنائية اللغة.', 'hero_kicker' => 'ملف القارئ', 'hero_title' => 'سجل القراءة ونشاط الزيارات', 'hero_copy' => 'هذه صفحة زائر خفيفة خاصة بالمتصفح الحالي. وهي تتتبع زيارات الفهرس ومسار قراءة المستندات بدون الحاجة إلى تسجيل دخول.', 'browser_only' => 'ملف خاص بالمتصفح', 'browser_only_copy' => 'البيانات أدناه مرتبطة برمز هذا المتصفح فقط. فتح الموقع من متصفح أو جهاز آخر سيُنشئ ملفاً منفصلاً.', 'visits' => 'الزيارات', 'activities' => 'الأنشطة', 'documents_opened' => 'المستندات المفتوحة', 'last_read' => 'آخر قراءة', 'first_seen' => 'أول ظهور', 'last_seen' => 'آخر ظهور', 'preferred_language' => 'لغة الواجهة المفضلة', 'last_page' => 'آخر صفحة', 'reading_kicker' => 'سجل القراءة', 'reading_title' => 'المستندات المفتوحة مؤخراً', 'reading_empty_title' => 'لا يوجد سجل قراءة بعد', 'reading_empty_copy' => 'افتح مستنداً عاماً من الفهرس وسيظهر هنا.', 'open_count' => 'مرات الفتح', 'open_document' => 'فتح المستند', 'open_catalog' => 'تصفح الفهرس', 'open_reader' => 'استخدام القارئ', 'never' => 'ليس بعد', 'unknown_author' => 'مؤلف غير معروف', 'untitled' => 'مستند بدون عنوان', 'visits_kicker' => 'جلسات الزيارة', 'visits_title' => 'الزيارات الأخيرة', 'visits_empty' => 'ستظهر قائمة زياراتك بعد تصفح عدة صفحات.', 'entry_page' => 'صفحة البداية', 'page_views' => 'مشاهدات الصفحة', 'document_actions' => 'أنشطة المستندات', 'activity_kicker' => 'الخط الزمني للنشاط', 'activity_title' => 'أحدث الإجراءات', 'activity_empty' => 'سيظهر نشاطك الأخير هنا أثناء التصفح.', 'activity_path' => 'المسار', 'activity_document' => 'المستند', 'activity_catalog_viewed' => 'فتح الفهرس', 'activity_document_viewed' => 'فتح صفحة مستند', 'activity_reader_opened' => 'فتح القارئ بملء الشاشة', 'activity_profile_viewed' => 'عرض صفحة النشاط', 'activity_default' => 'زيارة صفحة', 'time_unknown' => 'غير معروف', 'language_en' => 'الإنجليزية', 'language_ar' => 'العربية', 'language_bilingual' => 'ثنائي اللغة', ], ]; return $copy[$lang] ?? $copy['en']; } function user_profile_event_label(string $eventType, array $copy): string { return $copy['activity_' . $eventType] ?? $copy['activity_default']; } function user_profile_datetime(?string $value, array $copy): string { if (!$value) { return $copy['time_unknown']; } $timestamp = strtotime($value); if ($timestamp === false) { return $copy['time_unknown']; } return date('Y-m-d H:i', $timestamp); } $lang = library_get_language(); $pageCopy = user_profile_copy($lang); library_track_request('profile_viewed'); $summary = library_get_current_reader_summary(); $readingHistory = library_get_current_reader_history(8); $recentActivities = library_get_current_reader_activities(18); $recentVisits = library_get_current_reader_visits(8); $preferredLanguageLabel = library_language_label((string) ($summary['preferred_language'] ?? 'en')); library_render_header($pageCopy['meta_title'], $pageCopy['meta_description'], 'profile'); ?>

#
:
: : :

: :