💻 Week 02 - Webscrapping script

2023/24 Autumn Term

Author

Dr. Ghita Berrada, Garima Chaudhary

Published

11 October 2023

Below is the script that was showcased during the week 2 class. You can try it out by yourselves on Nuvolos or Google Colab.

Click on the button below to download the source file (.ipynb notebook) that was used to create this page, if you ever want to try the demo for yourselves:

Python libraries imports

In this step, you import all the Python libraries you need to execute the code that follows. Some libraries (e.g re, the library that deals with regular expressions i.e string pattern matching, or datetime, the library for date and time manipulation or requests, the library designed to send HTTP requests and used in webscrapping) are part of the Python Standard Library (see here for the list of packages included in the standard library in Python 3.10) but some (most notably pandas, the library for dataframe manipulation and one of the main libraries in use in data science, and BeautifulSoup, the library used for webscrapping) are not and need to be installed (using a pip install or a conda install command) before you import them, otherwise you would get an error at import time.

#Necessary python libraries import (before import step, the installation of library is required in python environment)

import requests   #library for webscrapping
from bs4 import BeautifulSoup   #library for webscrapping
import pandas as pd   #basic library
import re   #library for regex (word matching)
import datetime   #library to use DateTime method

Sending an HTTP GET request to Wikipedia

This step is about sending a request for data from the Wikipedia page you are interested in i.e the current events page. If your request is successful, you get a response code 200. If not, you get an error code, e.g 404 (Page not found).

# URL of the webpage with the ongoing events
url = "https://en.wikipedia.org/wiki/Portal:Current_events"

# Send an HTTP GET request to the URL
response = requests.get(url)
print("response:", response)
response: <Response [200]>

Scrapping the ongoing events column for content

# Check if the response code is 200
if response.status_code == 200:
    # Parse the HTML content with BeautifulSoup
    soup = BeautifulSoup(response.content, 'html.parser')

    # Find the div with role="region" and aria-labelledby="Ongoing_events"
    ongoing_events_div = soup.find('div', {'role': 'region', 'aria-labelledby': 'Ongoing_events'})

    if ongoing_events_div: #checking the ongoing events column is not empty
        headlines = []
        descriptions = []
        timestamps = []

        # Find all the h3 elements within the ongoing_events_div
        h3_elements = ongoing_events_div.find_all('h3')

        for h3 in h3_elements:
            # Get the headline text from the span with class "mw-headline"
            headline = h3.find('span', class_='mw-headline')
            if headline:
                headlines.append(headline.text.strip())
            else:
                headlines.append("No Headline")
            # Get the description text from the following sibling (next_element)
            description = h3.find_next_sibling()
            if description:
                descriptions.append(description.text.strip())
            else:
                descriptions.append("No Description")

            # Get the timestamp from the following sibling of the description
            if description:
               timestamp = h3.find_next_sibling().find_next_sibling()
               if timestamp:
                  timestamps.append(timestamp.text.strip())
               else:
                  timestamps.append("No Timestamp")
            else:
              timestamps.append("No Timestamp") 

        # Create a DataFrame with the columns
        df = pd.DataFrame({"Headline": headlines, "Description": descriptions, "Timestamp": timestamps})

        # Display the DataFrame
        print(df)
    else: #what to do in case the ongoing events column is empty/not found 
        print("Couldn't find the 'mw-collapsible current-events-sidebar' div on the page.")
else: #what to do in case the current events page is not reachable i.e the response code is not 200
    print(f"HTTP request failed with status code {response.status_code}.")
      Headline     Description     Timestamp
0  No Headline  No Description  No Timestamp
1  No Headline  No Description  No Timestamp
2  No Headline  No Description  No Timestamp
3  No Headline  No Description  No Timestamp

The code in the small chunk below simply displays the content of the Wikipedia page that you are scrapping i.e the content that you obtain from this line of code soup = BeautifulSoup(response.content, 'html.parser')

print(soup) # Displays the content of the scrapped Wikipedia page (HTML format)
<!DOCTYPE html>

<html class="client-nojs vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-sticky-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref--excluded vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-toc-not-available" dir="ltr" lang="en">
<head>
<meta charset="utf-8"/>
<title>Portal:Current events - Wikipedia</title>
<script>(function(){var className="client-js vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-sticky-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref--excluded vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-toc-not-available";var cookie=document.cookie.match(/(?:^|; )enwikimwclientpreferences=([^;]+)/);if(cookie){cookie[1].split('%2C').forEach(function(pref){className=className.replace(new RegExp('(^| )'+pref.replace(/-clientpref-\w+$|[^\w-]+/g,'')+'-clientpref-\\w+( |$)'),'$1'+pref+'$2');});}document.documentElement.className=className;}());RLCONF={"wgBreakFrames":false,"wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],
"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgRequestId":"df2c921a-0dec-4063-aa0c-aa074a4ba00a","wgCanonicalNamespace":"Portal","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":100,"wgPageName":"Portal:Current_events","wgTitle":"Current events","wgCurRevisionId":1234748158,"wgRevisionId":1234748158,"wgArticleId":5776237,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Wikipedia pages protected against vandalism","Portals with triaged subpages from October 2020","All portals with triaged subpages","Portals with no named maintainer","All portals","2024 by day","Current events portal","2024","Current events","WikiProject Current events","History portals"],"wgPageViewLanguage":"en","wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgRelevantPageName":"Portal:Current_events","wgRelevantArticleId"
:5776237,"wgIsProbablyEditable":false,"wgRelevantPageIsProbablyEditable":false,"wgRestrictionEdit":["sysop"],"wgRestrictionMove":["sysop"],"wgNoticeProject":"wikipedia","wgCiteReferencePreviewsActive":false,"wgFlaggedRevsParams":{"tags":{"status":{"levels":1}}},"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgPopupsFlags":0,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en"},"wgMFDisplayWikibaseDescriptions":{"search":true,"watchlist":true,"tagline":false,"nearby":true},"wgWMESchemaEditAttemptStepOversample":false,"wgWMEPageLength":1000,"wgRelatedArticlesCompat":[],"wgEditSubmitButtonLabelPublish":true,"wgULSPosition":"interlanguage","wgULSisCompactLinksEnabled":false,"wgVector2022LanguageInHeader":true,"wgULSisLanguageSelectorEmpty":false,"wgWikibaseItemId":"Q4597488","wgCheckUserClientHintsHeadersJsApi":["brands","architecture","bitness","fullVersionList","mobile","model","platform","platformVersion"],
"GEHomepageSuggestedEditsEnableTopics":true,"wgGETopicsMatchModeEnabled":false,"wgGEStructuredTaskRejectionReasonTextInputEnabled":false,"wgGELevelingUpEnabledForUser":false};RLSTATE={"ext.globalCssJs.user.styles":"ready","site.styles":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","user":"ready","user.options":"loading","skins.vector.search.codex.styles":"ready","skins.vector.styles":"ready","skins.vector.icons":"ready","jquery.makeCollapsible.styles":"ready","ext.wikimediamessages.styles":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","wikibase.client.init":"ready","ext.wikimediaBadges":"ready"};RLPAGEMODULES=["site","mediawiki.page.ready","jquery.makeCollapsible","skins.vector.js","ext.centralNotice.geoIP","ext.centralNotice.startUp","ext.gadget.ReferenceTooltips","ext.gadget.switcher","ext.urlShortener.toolbar","ext.centralauth.centralautologin","mmv.bootstrap","ext.popups","ext.visualEditor.desktopArticleTarget.init",
"ext.visualEditor.targetLoader","ext.echo.centralauth","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.uls.interface","ext.cx.eventlogging.campaigns","wikibase.client.vector-2022","ext.checkUser.clientHints"];</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.impl(function(){return["user.options@12s5i",function($,jQuery,require,module){mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
}];});});</script>
<link href="/w/load.php?lang=en&amp;modules=ext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&amp;only=styles&amp;skin=vector-2022" rel="stylesheet"/>
<script async="" src="/w/load.php?lang=en&amp;modules=startup&amp;only=scripts&amp;raw=1&amp;skin=vector-2022"></script>
<meta content="" name="ResourceLoaderDynamicStyles"/>
<link href="/w/load.php?lang=en&amp;modules=site.styles&amp;only=styles&amp;skin=vector-2022" rel="stylesheet"/>
<meta content="MediaWiki 1.44.0-wmf.8" name="generator"/>
<meta content="origin" name="referrer"/>
<meta content="origin-when-cross-origin" name="referrer"/>
<meta content="max-image-preview:standard" name="robots"/>
<meta content="telephone=no" name="format-detection"/>
<meta content="width=1120" name="viewport"/>
<meta content="Portal:Current events - Wikipedia" property="og:title"/>
<meta content="website" property="og:type"/>
<link href="//upload.wikimedia.org" rel="preconnect"/>
<link href="//en.m.wikipedia.org/wiki/Portal:Current_events" media="only screen and (max-width: 640px)" rel="alternate"/>
<link href="/static/apple-touch/wikipedia.png" rel="apple-touch-icon"/>
<link href="/static/favicon/wikipedia.ico" rel="icon"/>
<link href="/w/rest.php/v1/search" rel="search" title="Wikipedia (en)" type="application/opensearchdescription+xml"/>
<link href="//en.wikipedia.org/w/api.php?action=rsd" rel="EditURI" type="application/rsd+xml"/>
<link href="https://en.wikipedia.org/wiki/Portal:Current_events" rel="canonical"/>
<link href="https://creativecommons.org/licenses/by-sa/4.0/deed.en" rel="license"/>
<link href="/w/index.php?title=Special:RecentChanges&amp;feed=atom" rel="alternate" title="Wikipedia Atom feed" type="application/atom+xml"/>
<link href="//meta.wikimedia.org" rel="dns-prefetch">
<link href="login.wikimedia.org" rel="dns-prefetch"/>
</link></head>
<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-100 ns-subject page-Portal_Current_events rootpage-Portal_Current_events skin-vector-2022 action-view"><a class="mw-jump-link" href="#bodyContent">Jump to content</a>
<div class="vector-header-container">
<header class="vector-header mw-header">
<div class="vector-header-start">
<nav aria-label="Site" class="vector-main-menu-landmark">
<div class="vector-dropdown vector-main-menu-dropdown vector-button-flush-left vector-button-flush-right" id="vector-main-menu-dropdown">
<input aria-haspopup="true" aria-label="Main menu" class="vector-dropdown-checkbox" data-event-name="ui.dropdown-vector-main-menu-dropdown" id="vector-main-menu-dropdown-checkbox" role="button" type="checkbox"/>
<label aria-hidden="true" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" for="vector-main-menu-dropdown-checkbox" id="vector-main-menu-dropdown-label"><span class="vector-icon mw-ui-icon-menu mw-ui-icon-wikimedia-menu"></span>
<span class="vector-dropdown-label-text">Main menu</span>
</label>
<div class="vector-dropdown-content">
<div class="vector-unpinned-container" id="vector-main-menu-unpinned-container">
<div class="vector-main-menu vector-pinnable-element" id="vector-main-menu">
<div class="vector-pinnable-header vector-main-menu-pinnable-header vector-pinnable-header-unpinned" data-feature-name="main-menu-pinned" data-pinnable-element-id="vector-main-menu" data-pinned-container-id="vector-main-menu-pinned-container" data-unpinned-container-id="vector-main-menu-unpinned-container">
<div class="vector-pinnable-header-label">Main menu</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-main-menu.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-main-menu.unpin">hide</button>
</div>
<div class="vector-menu mw-portlet mw-portlet-navigation" id="p-navigation">
<div class="vector-menu-heading">
        Navigation
    </div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="mw-list-item" id="n-mainpage-description"><a accesskey="z" href="/wiki/Main_Page" title="Visit the main page [z]"><span>Main page</span></a></li><li class="mw-list-item" id="n-contents"><a href="/wiki/Wikipedia:Contents" title="Guides to browsing Wikipedia"><span>Contents</span></a></li><li class="mw-list-item" id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Articles related to current events"><span>Current events</span></a></li><li class="mw-list-item" id="n-randompage"><a accesskey="x" href="/wiki/Special:Random" title="Visit a randomly selected article [x]"><span>Random article</span></a></li><li class="mw-list-item" id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Learn about Wikipedia and how it works"><span>About Wikipedia</span></a></li><li class="mw-list-item" id="n-contactpage"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia"><span>Contact us</span></a></li>
</ul>
</div>
</div>
<div class="vector-menu mw-portlet mw-portlet-interaction" id="p-interaction">
<div class="vector-menu-heading">
        Contribute
    </div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="mw-list-item" id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia"><span>Help</span></a></li><li class="mw-list-item" id="n-introduction"><a href="/wiki/Help:Introduction" title="Learn how to edit Wikipedia"><span>Learn to edit</span></a></li><li class="mw-list-item" id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="The hub for editors"><span>Community portal</span></a></li><li class="mw-list-item" id="n-recentchanges"><a accesskey="r" href="/wiki/Special:RecentChanges" title="A list of recent changes to Wikipedia [r]"><span>Recent changes</span></a></li><li class="mw-list-item" id="n-upload"><a href="/wiki/Wikipedia:File_upload_wizard" title="Add images or other media for use on Wikipedia"><span>Upload file</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<a class="mw-logo" href="/wiki/Main_Page">
<img alt="" aria-hidden="true" class="mw-logo-icon" height="50" src="/static/images/icons/wikipedia.png" width="50"/>
<span class="mw-logo-container skin-invert">
<img alt="Wikipedia" class="mw-logo-wordmark" src="/static/images/mobile/copyright/wikipedia-wordmark-en.svg" style="width: 7.5em; height: 1.125em;"/>
<img alt="The Free Encyclopedia" class="mw-logo-tagline" height="13" src="/static/images/mobile/copyright/wikipedia-tagline-en.svg" style="width: 7.3125em; height: 0.8125em;" width="117"/>
</span>
</a>
</div>
<div class="vector-header-end">
<div class="vector-search-box-vue vector-search-box-collapses vector-search-box-show-thumbnail vector-search-box-auto-expand-width vector-search-box" id="p-search" role="search">
<a accesskey="f" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only search-toggle" href="/wiki/Special:Search" title="Search Wikipedia [f]"><span class="vector-icon mw-ui-icon-search mw-ui-icon-wikimedia-search"></span>
<span>Search</span>
</a>
<div class="vector-typeahead-search-container">
<div class="cdx-typeahead-search cdx-typeahead-search--show-thumbnail cdx-typeahead-search--auto-expand-width">
<form action="/w/index.php" class="cdx-search-input cdx-search-input--has-end-button" id="searchform">
<div class="cdx-search-input__input-wrapper" data-search-loc="header-moved" id="simpleSearch">
<div class="cdx-text-input cdx-text-input--has-start-icon">
<input accesskey="f" aria-label="Search Wikipedia" autocapitalize="sentences" class="cdx-text-input__input" id="searchInput" name="search" placeholder="Search Wikipedia" title="Search Wikipedia [f]" type="search"/>
<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>
</div>
<input name="title" type="hidden" value="Special:Search"/>
</div>
<button class="cdx-button cdx-search-input__end-button">Search</button>
</form>
</div>
</div>
</div>
<nav aria-label="Personal tools" class="vector-user-links vector-user-links-wide">
<div class="vector-user-links-main">
<div class="vector-menu mw-portlet emptyPortlet" id="p-vector-user-menu-preferences">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
</ul>
</div>
</div>
<div class="vector-menu mw-portlet emptyPortlet" id="p-vector-user-menu-userpage">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
</ul>
</div>
</div>
<nav aria-label="Appearance" class="vector-appearance-landmark">
<div class="vector-dropdown" id="vector-appearance-dropdown" title="Change the appearance of the page's font size, width, and color">
<input aria-haspopup="true" aria-label="Appearance" class="vector-dropdown-checkbox" data-event-name="ui.dropdown-vector-appearance-dropdown" id="vector-appearance-dropdown-checkbox" role="button" type="checkbox"/>
<label aria-hidden="true" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" for="vector-appearance-dropdown-checkbox" id="vector-appearance-dropdown-label"><span class="vector-icon mw-ui-icon-appearance mw-ui-icon-wikimedia-appearance"></span>
<span class="vector-dropdown-label-text">Appearance</span>
</label>
<div class="vector-dropdown-content">
<div class="vector-unpinned-container" id="vector-appearance-unpinned-container">
</div>
</div>
</div>
</nav>
<div class="vector-menu mw-portlet emptyPortlet" id="p-vector-user-menu-notifications">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
</ul>
</div>
</div>
<div class="vector-menu mw-portlet" id="p-vector-user-menu-overflow">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="user-links-collapsible-item mw-list-item user-links-collapsible-item" id="pt-sitesupport-2"><a class="" data-mw="interface" href="https://donate.wikimedia.org/?wmf_source=donate&amp;wmf_medium=sidebar&amp;wmf_campaign=en.wikipedia.org&amp;uselang=en"><span>Donate</span></a>
</li>
<li class="user-links-collapsible-item mw-list-item user-links-collapsible-item" id="pt-createaccount-2"><a class="" data-mw="interface" href="/w/index.php?title=Special:CreateAccount&amp;returnto=Portal%3ACurrent+events" title="You are encouraged to create an account and log in; however, it is not mandatory"><span>Create account</span></a>
</li>
<li class="user-links-collapsible-item mw-list-item user-links-collapsible-item" id="pt-login-2"><a accesskey="o" class="" data-mw="interface" href="/w/index.php?title=Special:UserLogin&amp;returnto=Portal%3ACurrent+events" title="You're encouraged to log in; however, it's not mandatory. [o]"><span>Log in</span></a>
</li>
</ul>
</div>
</div>
</div>
<div class="vector-dropdown vector-user-menu vector-button-flush-right vector-user-menu-logged-out" id="vector-user-links-dropdown" title="Log in and more options">
<input aria-haspopup="true" aria-label="Personal tools" class="vector-dropdown-checkbox" data-event-name="ui.dropdown-vector-user-links-dropdown" id="vector-user-links-dropdown-checkbox" role="button" type="checkbox"/>
<label aria-hidden="true" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" for="vector-user-links-dropdown-checkbox" id="vector-user-links-dropdown-label"><span class="vector-icon mw-ui-icon-ellipsis mw-ui-icon-wikimedia-ellipsis"></span>
<span class="vector-dropdown-label-text">Personal tools</span>
</label>
<div class="vector-dropdown-content">
<div class="vector-menu mw-portlet mw-portlet-personal user-links-collapsible-item" id="p-personal" title="User menu">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="user-links-collapsible-item mw-list-item" id="pt-sitesupport"><a href="https://donate.wikimedia.org/?wmf_source=donate&amp;wmf_medium=sidebar&amp;wmf_campaign=en.wikipedia.org&amp;uselang=en"><span>Donate</span></a></li><li class="user-links-collapsible-item mw-list-item" id="pt-createaccount"><a href="/w/index.php?title=Special:CreateAccount&amp;returnto=Portal%3ACurrent+events" title="You are encouraged to create an account and log in; however, it is not mandatory"><span class="vector-icon mw-ui-icon-userAdd mw-ui-icon-wikimedia-userAdd"></span> <span>Create account</span></a></li><li class="user-links-collapsible-item mw-list-item" id="pt-login"><a accesskey="o" href="/w/index.php?title=Special:UserLogin&amp;returnto=Portal%3ACurrent+events" title="You're encouraged to log in; however, it's not mandatory. [o]"><span class="vector-icon mw-ui-icon-logIn mw-ui-icon-wikimedia-logIn"></span> <span>Log in</span></a></li>
</ul>
</div>
</div>
<div class="vector-menu mw-portlet mw-portlet-user-menu-anon-editor" id="p-user-menu-anon-editor">
<div class="vector-menu-heading">
        Pages for logged out editors <a aria-label="Learn more about editing" href="/wiki/Help:Introduction"><span>learn more</span></a>
</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="mw-list-item" id="pt-anoncontribs"><a accesskey="y" href="/wiki/Special:MyContributions" title="A list of edits made from this IP address [y]"><span>Contributions</span></a></li><li class="mw-list-item" id="pt-anontalk"><a accesskey="n" href="/wiki/Special:MyTalk" title="Discussion about edits from this IP address [n]"><span>Talk</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
</div>
<div class="mw-page-container">
<div class="mw-page-container-inner">
<div class="vector-sitenotice-container">
<div id="siteNotice"><!-- CentralNotice --></div>
</div>
<div class="vector-column-start">
<div class="vector-main-menu-container">
<div id="mw-navigation">
<nav aria-label="Site" class="vector-main-menu-landmark" id="mw-panel">
<div class="vector-pinned-container" id="vector-main-menu-pinned-container">
</div>
</nav>
</div>
</div>
</div>
<div class="mw-content-container">
<main class="mw-body" id="content">
<header class="mw-body-header vector-page-titlebar">
<h1 class="firstHeading mw-first-heading" id="firstHeading"><span class="mw-page-title-namespace">Portal</span><span class="mw-page-title-separator">:</span><span class="mw-page-title-main">Current events</span></h1>
<div class="vector-dropdown mw-portlet mw-portlet-lang" id="p-lang-btn">
<input aria-haspopup="true" aria-label="Go to an article in another language. Available in 120 languages" class="vector-dropdown-checkbox mw-interlanguage-selector" data-event-name="ui.dropdown-p-lang-btn" id="p-lang-btn-checkbox" role="button" type="checkbox"/>
<label aria-hidden="true" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--action-progressive mw-portlet-lang-heading-120" for="p-lang-btn-checkbox" id="p-lang-btn-label"><span class="vector-icon mw-ui-icon-language-progressive mw-ui-icon-wikimedia-language-progressive"></span>
<span class="vector-dropdown-label-text">120 languages</span>
</label>
<div class="vector-dropdown-content">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="interlanguage-link interwiki-ang mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Ænglisc" data-language-local-name="Old English" data-title="Wikipǣdia:Geong gelimp" href="https://ang.wikipedia.org/wiki/Wikip%C7%A3dia:Geong_gelimp" hreflang="ang" lang="ang" title="Wikipǣdia:Geong gelimp – Old English"><span>Ænglisc</span></a></li><li class="interlanguage-link interwiki-ar mw-list-item"><a class="interlanguage-link-target" data-language-autonym="العربية" data-language-local-name="Arabic" data-title="بوابة:أحداث جارية" href="https://ar.wikipedia.org/wiki/%D8%A8%D9%88%D8%A7%D8%A8%D8%A9:%D8%A3%D8%AD%D8%AF%D8%A7%D8%AB_%D8%AC%D8%A7%D8%B1%D9%8A%D8%A9" hreflang="ar" lang="ar" title="بوابة:أحداث جارية – Arabic"><span>العربية</span></a></li><li class="interlanguage-link interwiki-as mw-list-item"><a class="interlanguage-link-target" data-language-autonym="অসমীয়া" data-language-local-name="Assamese" data-title="ৱিকিচ'ৰা:শেহতীয়া ঘটনাৱলী" href="https://as.wikipedia.org/wiki/%E0%A7%B1%E0%A6%BF%E0%A6%95%E0%A6%BF%E0%A6%9A%27%E0%A7%B0%E0%A6%BE:%E0%A6%B6%E0%A7%87%E0%A6%B9%E0%A6%A4%E0%A7%80%E0%A6%AF%E0%A6%BC%E0%A6%BE_%E0%A6%98%E0%A6%9F%E0%A6%A8%E0%A6%BE%E0%A7%B1%E0%A6%B2%E0%A7%80" hreflang="as" lang="as" title="ৱিকিচ'ৰা:শেহতীয়া ঘটনাৱলী – Assamese"><span>অসমীয়া</span></a></li><li class="interlanguage-link interwiki-awa mw-list-item"><a class="interlanguage-link-target" data-language-autonym="अवधी" data-language-local-name="Awadhi" data-title="मोहार:हाल कय घटना" href="https://awa.wikipedia.org/wiki/%E0%A4%AE%E0%A5%8B%E0%A4%B9%E0%A4%BE%E0%A4%B0:%E0%A4%B9%E0%A4%BE%E0%A4%B2_%E0%A4%95%E0%A4%AF_%E0%A4%98%E0%A4%9F%E0%A4%A8%E0%A4%BE" hreflang="awa" lang="awa" title="मोहार:हाल कय घटना – Awadhi"><span>अवधी</span></a></li><li class="interlanguage-link interwiki-av mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Авар" data-language-local-name="Avaric" data-title="Википедия:Гьанжесел лъугьа-бахъинал" href="https://av.wikipedia.org/wiki/%D0%92%D0%B8%D0%BA%D0%B8%D0%BF%D0%B5%D0%B4%D0%B8%D1%8F:%D0%93%D1%8C%D0%B0%D0%BD%D0%B6%D0%B5%D1%81%D0%B5%D0%BB_%D0%BB%D1%8A%D1%83%D0%B3%D1%8C%D0%B0-%D0%B1%D0%B0%D1%85%D1%8A%D0%B8%D0%BD%D0%B0%D0%BB" hreflang="av" lang="av" title="Википедия:Гьанжесел лъугьа-бахъинал – Avaric"><span>Авар</span></a></li><li class="interlanguage-link interwiki-azb mw-list-item"><a class="interlanguage-link-target" data-language-autonym="تۆرکجه" data-language-local-name="South Azerbaijani" data-title="پوْرتال:ایندیکی حادیثه‌لر" href="https://azb.wikipedia.org/wiki/%D9%BE%D9%88%D9%92%D8%B1%D8%AA%D8%A7%D9%84:%D8%A7%DB%8C%D9%86%D8%AF%DB%8C%DA%A9%DB%8C_%D8%AD%D8%A7%D8%AF%DB%8C%D8%AB%D9%87%E2%80%8C%D9%84%D8%B1" hreflang="azb" lang="azb" title="پوْرتال:ایندیکی حادیثه‌لر – South Azerbaijani"><span>تۆرکجه</span></a></li><li class="interlanguage-link interwiki-bjn mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Banjar" data-language-local-name="Banjar" data-title="Lawang:Garamaan" href="https://bjn.wikipedia.org/wiki/Lawang:Garamaan" hreflang="bjn" lang="bjn" title="Lawang:Garamaan – Banjar"><span>Banjar</span></a></li><li class="interlanguage-link interwiki-zh-min-nan mw-list-item"><a class="interlanguage-link-target" data-language-autonym="閩南語 / Bân-lâm-gú" data-language-local-name="Minnan" data-title="Portal:Sin-bûn sū-kiāⁿ" href="https://zh-min-nan.wikipedia.org/wiki/Portal:Sin-b%C3%BBn_s%C5%AB-ki%C4%81%E2%81%BF" hreflang="nan" lang="nan" title="Portal:Sin-bûn sū-kiāⁿ – Minnan"><span>閩南語 / Bân-lâm-gú</span></a></li><li class="interlanguage-link interwiki-ba mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Башҡортса" data-language-local-name="Bashkir" data-title="Портал:Ағымдағы ваҡиғалар/Башвики наградалары" href="https://ba.wikipedia.org/wiki/%D0%9F%D0%BE%D1%80%D1%82%D0%B0%D0%BB:%D0%90%D2%93%D1%8B%D0%BC%D0%B4%D0%B0%D2%93%D1%8B_%D0%B2%D0%B0%D2%A1%D0%B8%D2%93%D0%B0%D0%BB%D0%B0%D1%80/%D0%91%D0%B0%D1%88%D0%B2%D0%B8%D0%BA%D0%B8_%D0%BD%D0%B0%D0%B3%D1%80%D0%B0%D0%B4%D0%B0%D0%BB%D0%B0%D1%80%D1%8B" hreflang="ba" lang="ba" title="Портал:Ағымдағы ваҡиғалар/Башвики наградалары – Bashkir"><span>Башҡортса</span></a></li><li class="interlanguage-link interwiki-be mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Беларуская" data-language-local-name="Belarusian" data-title="Партал:Актуальныя падзеі" href="https://be.wikipedia.org/wiki/%D0%9F%D0%B0%D1%80%D1%82%D0%B0%D0%BB:%D0%90%D0%BA%D1%82%D1%83%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D1%8F_%D0%BF%D0%B0%D0%B4%D0%B7%D0%B5%D1%96" hreflang="be" lang="be" title="Партал:Актуальныя падзеі – Belarusian"><span>Беларуская</span></a></li><li class="interlanguage-link interwiki-bh mw-list-item"><a class="interlanguage-link-target" data-language-autonym="भोजपुरी" data-language-local-name="Bhojpuri" data-title="विकिपीडिया:हाल के घटना" href="https://bh.wikipedia.org/wiki/%E0%A4%B5%E0%A4%BF%E0%A4%95%E0%A4%BF%E0%A4%AA%E0%A5%80%E0%A4%A1%E0%A4%BF%E0%A4%AF%E0%A4%BE:%E0%A4%B9%E0%A4%BE%E0%A4%B2_%E0%A4%95%E0%A5%87_%E0%A4%98%E0%A4%9F%E0%A4%A8%E0%A4%BE" hreflang="bh" lang="bh" title="विकिपीडिया:हाल के घटना – Bhojpuri"><span>भोजपुरी</span></a></li><li class="interlanguage-link interwiki-bcl mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Bikol Central" data-language-local-name="Central Bikol" data-title="Wikipedia:Mga panyayari sa ngonyan" href="https://bcl.wikipedia.org/wiki/Wikipedia:Mga_panyayari_sa_ngonyan" hreflang="bcl" lang="bcl" title="Wikipedia:Mga panyayari sa ngonyan – Central Bikol"><span>Bikol Central</span></a></li><li class="interlanguage-link interwiki-ca mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Català" data-language-local-name="Catalan" data-title="Viquipèdia:Actualitat" href="https://ca.wikipedia.org/wiki/Viquip%C3%A8dia:Actualitat" hreflang="ca" lang="ca" title="Viquipèdia:Actualitat – Catalan"><span>Català</span></a></li><li class="interlanguage-link interwiki-cv mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Чӑвашла" data-language-local-name="Chuvash" data-title="Википеди:Хыпарсем" href="https://cv.wikipedia.org/wiki/%D0%92%D0%B8%D0%BA%D0%B8%D0%BF%D0%B5%D0%B4%D0%B8:%D0%A5%D1%8B%D0%BF%D0%B0%D1%80%D1%81%D0%B5%D0%BC" hreflang="cv" lang="cv" title="Википеди:Хыпарсем – Chuvash"><span>Чӑвашла</span></a></li><li class="interlanguage-link interwiki-ceb mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Cebuano" data-language-local-name="Cebuano" data-title="Wikipedia:Mga panghitabo" href="https://ceb.wikipedia.org/wiki/Wikipedia:Mga_panghitabo" hreflang="ceb" lang="ceb" title="Wikipedia:Mga panghitabo – Cebuano"><span>Cebuano</span></a></li><li class="interlanguage-link interwiki-cs mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Čeština" data-language-local-name="Czech" data-title="Portál:Aktuality" href="https://cs.wikipedia.org/wiki/Port%C3%A1l:Aktuality" hreflang="cs" lang="cs" title="Portál:Aktuality – Czech"><span>Čeština</span></a></li><li class="interlanguage-link interwiki-tum mw-list-item"><a class="interlanguage-link-target" data-language-autonym="ChiTumbuka" data-language-local-name="Tumbuka" data-title="Portal:Current events" href="https://tum.wikipedia.org/wiki/Portal:Current_events" hreflang="tum" lang="tum" title="Portal:Current events – Tumbuka"><span>ChiTumbuka</span></a></li><li class="interlanguage-link interwiki-dag mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Dagbanli" data-language-local-name="Dagbani" data-title="Wikipedia:Pumpɔŋɔ na yɛla" href="https://dag.wikipedia.org/wiki/Wikipedia:Pump%C9%94%C5%8B%C9%94_na_y%C9%9Bla" hreflang="dag" lang="dag" title="Wikipedia:Pumpɔŋɔ na yɛla – Dagbani"><span>Dagbanli</span></a></li><li class="interlanguage-link interwiki-da mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Dansk" data-language-local-name="Danish" data-title="Wikipedia:Aktuelle begivenheder" href="https://da.wikipedia.org/wiki/Wikipedia:Aktuelle_begivenheder" hreflang="da" lang="da" title="Wikipedia:Aktuelle begivenheder – Danish"><span>Dansk</span></a></li><li class="interlanguage-link interwiki-de mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Deutsch" data-language-local-name="German" data-title="Wikipedia:Laufende Ereignisse" href="https://de.wikipedia.org/wiki/Wikipedia:Laufende_Ereignisse" hreflang="de" lang="de" title="Wikipedia:Laufende Ereignisse – German"><span>Deutsch</span></a></li><li class="interlanguage-link interwiki-dv mw-list-item"><a class="interlanguage-link-target" data-language-autonym="ދިވެހިބަސް" data-language-local-name="Divehi" data-title="ނެރު:މިހާރު ހިނގަމުންދާ" href="https://dv.wikipedia.org/wiki/%DE%82%DE%AC%DE%83%DE%AA:%DE%89%DE%A8%DE%80%DE%A7%DE%83%DE%AA_%DE%80%DE%A8%DE%82%DE%8E%DE%A6%DE%89%DE%AA%DE%82%DE%B0%DE%8B%DE%A7" hreflang="dv" lang="dv" title="ނެރު:މިހާރު ހިނގަމުންދާ – Divehi"><span>ދިވެހިބަސް</span></a></li><li class="interlanguage-link interwiki-dty mw-list-item"><a class="interlanguage-link-target" data-language-autonym="डोटेली" data-language-local-name="Doteli" data-title="विकिपिडिया:आजभोलका घटना" href="https://dty.wikipedia.org/wiki/%E0%A4%B5%E0%A4%BF%E0%A4%95%E0%A4%BF%E0%A4%AA%E0%A4%BF%E0%A4%A1%E0%A4%BF%E0%A4%AF%E0%A4%BE:%E0%A4%86%E0%A4%9C%E0%A4%AD%E0%A5%8B%E0%A4%B2%E0%A4%95%E0%A4%BE_%E0%A4%98%E0%A4%9F%E0%A4%A8%E0%A4%BE" hreflang="dty" lang="dty" title="विकिपिडिया:आजभोलका घटना – Doteli"><span>डोटेली</span></a></li><li class="interlanguage-link interwiki-el mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Ελληνικά" data-language-local-name="Greek" data-title="Πύλη:Τρέχοντα γεγονότα" href="https://el.wikipedia.org/wiki/%CE%A0%CF%8D%CE%BB%CE%B7:%CE%A4%CF%81%CE%AD%CF%87%CE%BF%CE%BD%CF%84%CE%B1_%CE%B3%CE%B5%CE%B3%CE%BF%CE%BD%CF%8C%CF%84%CE%B1" hreflang="el" lang="el" title="Πύλη:Τρέχοντα γεγονότα – Greek"><span>Ελληνικά</span></a></li><li class="interlanguage-link interwiki-myv mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Эрзянь" data-language-local-name="Erzya" data-title="Портал:Текущие события" href="https://myv.wikipedia.org/wiki/%D0%9F%D0%BE%D1%80%D1%82%D0%B0%D0%BB:%D0%A2%D0%B5%D0%BA%D1%83%D1%89%D0%B8%D0%B5_%D1%81%D0%BE%D0%B1%D1%8B%D1%82%D0%B8%D1%8F" hreflang="myv" lang="myv" title="Портал:Текущие события – Erzya"><span>Эрзянь</span></a></li><li class="interlanguage-link interwiki-es mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Español" data-language-local-name="Spanish" data-title="Portal:Actualidad" href="https://es.wikipedia.org/wiki/Portal:Actualidad" hreflang="es" lang="es" title="Portal:Actualidad – Spanish"><span>Español</span></a></li><li class="interlanguage-link interwiki-eo mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Esperanto" data-language-local-name="Esperanto" data-title="Vikipedio:Aktualaĵoj" href="https://eo.wikipedia.org/wiki/Vikipedio:Aktuala%C4%B5oj" hreflang="eo" lang="eo" title="Vikipedio:Aktualaĵoj – Esperanto"><span>Esperanto</span></a></li><li class="interlanguage-link interwiki-ext mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Estremeñu" data-language-local-name="Extremaduran" data-title="Proyeutu:La troji las notícias" href="https://ext.wikipedia.org/wiki/Proyeutu:La_troji_las_not%C3%ADcias" hreflang="ext" lang="ext" title="Proyeutu:La troji las notícias – Extremaduran"><span>Estremeñu</span></a></li><li class="interlanguage-link interwiki-eu mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Euskara" data-language-local-name="Basque" data-title="Wikipedia:Albisteak" href="https://eu.wikipedia.org/wiki/Wikipedia:Albisteak" hreflang="eu" lang="eu" title="Wikipedia:Albisteak – Basque"><span>Euskara</span></a></li><li class="interlanguage-link interwiki-ee mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Eʋegbe" data-language-local-name="Ewe" data-title="Portal:Nusiwo le dzɔdzɔm" href="https://ee.wikipedia.org/wiki/Portal:Nusiwo_le_dz%C9%94dz%C9%94m" hreflang="ee" lang="ee" title="Portal:Nusiwo le dzɔdzɔm – Ewe"><span>Eʋegbe</span></a></li><li class="interlanguage-link interwiki-fa mw-list-item"><a class="interlanguage-link-target" data-language-autonym="فارسی" data-language-local-name="Persian" data-title="درگاه:رویدادهای کنونی" href="https://fa.wikipedia.org/wiki/%D8%AF%D8%B1%DA%AF%D8%A7%D9%87:%D8%B1%D9%88%DB%8C%D8%AF%D8%A7%D8%AF%D9%87%D8%A7%DB%8C_%DA%A9%D9%86%D9%88%D9%86%DB%8C" hreflang="fa" lang="fa" title="درگاه:رویدادهای کنونی – Persian"><span>فارسی</span></a></li><li class="interlanguage-link interwiki-fo mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Føroyskt" data-language-local-name="Faroese" data-title="Wikipedia:Aktuellar hendingar" href="https://fo.wikipedia.org/wiki/Wikipedia:Aktuellar_hendingar" hreflang="fo" lang="fo" title="Wikipedia:Aktuellar hendingar – Faroese"><span>Føroyskt</span></a></li><li class="interlanguage-link interwiki-fr mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Français" data-language-local-name="French" data-title="Portail:Actualité" href="https://fr.wikipedia.org/wiki/Portail:Actualit%C3%A9" hreflang="fr" lang="fr" title="Portail:Actualité – French"><span>Français</span></a></li><li class="interlanguage-link interwiki-ga mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Gaeilge" data-language-local-name="Irish" data-title="Vicipéid:Cúrsaí reatha" href="https://ga.wikipedia.org/wiki/Vicip%C3%A9id:C%C3%BArsa%C3%AD_reatha" hreflang="ga" lang="ga" title="Vicipéid:Cúrsaí reatha – Irish"><span>Gaeilge</span></a></li><li class="interlanguage-link interwiki-gv mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Gaelg" data-language-local-name="Manx" data-title="Wikipedia:Cooishyn y laa" href="https://gv.wikipedia.org/wiki/Wikipedia:Cooishyn_y_laa" hreflang="gv" lang="gv" title="Wikipedia:Cooishyn y laa – Manx"><span>Gaelg</span></a></li><li class="interlanguage-link interwiki-gan mw-list-item"><a class="interlanguage-link-target" data-language-autonym="贛語" data-language-local-name="Gan" data-title="Wikipedia:新出嗰事" href="https://gan.wikipedia.org/wiki/Wikipedia:%E6%96%B0%E5%87%BA%E5%97%B0%E4%BA%8B" hreflang="gan" lang="gan" title="Wikipedia:新出嗰事 – Gan"><span>贛語</span></a></li><li class="interlanguage-link interwiki-glk mw-list-item"><a class="interlanguage-link-target" data-language-autonym="گیلکی" data-language-local-name="Gilaki" data-title="Wikipedia:هسأ تفاقؤن" href="https://glk.wikipedia.org/wiki/Wikipedia:%D9%87%D8%B3%D8%A3_%D8%AA%D9%81%D8%A7%D9%82%D8%A4%D9%86" hreflang="glk" lang="glk" title="Wikipedia:هسأ تفاقؤن – Gilaki"><span>گیلکی</span></a></li><li class="interlanguage-link interwiki-gu mw-list-item"><a class="interlanguage-link-target" data-language-autonym="ગુજરાતી" data-language-local-name="Gujarati" data-title="વિકિપીડિયા:વર્તમાન ઘટનાઓ" href="https://gu.wikipedia.org/wiki/%E0%AA%B5%E0%AA%BF%E0%AA%95%E0%AA%BF%E0%AA%AA%E0%AB%80%E0%AA%A1%E0%AA%BF%E0%AA%AF%E0%AA%BE:%E0%AA%B5%E0%AA%B0%E0%AB%8D%E0%AA%A4%E0%AA%AE%E0%AA%BE%E0%AA%A8_%E0%AA%98%E0%AA%9F%E0%AA%A8%E0%AA%BE%E0%AA%93" hreflang="gu" lang="gu" title="વિકિપીડિયા:વર્તમાન ઘટનાઓ – Gujarati"><span>ગુજરાતી</span></a></li><li class="interlanguage-link interwiki-hak mw-list-item"><a class="interlanguage-link-target" data-language-autonym="客家語 / Hak-kâ-ngî" data-language-local-name="Hakka Chinese" data-title="Wikipedia:新聞動態" href="https://hak.wikipedia.org/wiki/Wikipedia:%E6%96%B0%E8%81%9E%E5%8B%95%E6%85%8B" hreflang="hak" lang="hak" title="Wikipedia:新聞動態 – Hakka Chinese"><span>客家語 / Hak-kâ-ngî</span></a></li><li class="interlanguage-link interwiki-ko mw-list-item"><a class="interlanguage-link-target" data-language-autonym="한국어" data-language-local-name="Korean" data-title="포털:요즘 화제" href="https://ko.wikipedia.org/wiki/%ED%8F%AC%ED%84%B8:%EC%9A%94%EC%A6%98_%ED%99%94%EC%A0%9C" hreflang="ko" lang="ko" title="포털:요즘 화제 – Korean"><span>한국어</span></a></li><li class="interlanguage-link interwiki-hy mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Հայերեն" data-language-local-name="Armenian" data-title="Վիքիպեդիա:Նորություններ" href="https://hy.wikipedia.org/wiki/%D5%8E%D5%AB%D6%84%D5%AB%D5%BA%D5%A5%D5%A4%D5%AB%D5%A1:%D5%86%D5%B8%D6%80%D5%B8%D6%82%D5%A9%D5%B5%D5%B8%D6%82%D5%B6%D5%B6%D5%A5%D6%80" hreflang="hy" lang="hy" title="Վիքիպեդիա:Նորություններ – Armenian"><span>Հայերեն</span></a></li><li class="interlanguage-link interwiki-hi mw-list-item"><a class="interlanguage-link-target" data-language-autonym="हिन्दी" data-language-local-name="Hindi" data-title="प्रवेशद्वार:हाल की घटनाएँ" href="https://hi.wikipedia.org/wiki/%E0%A4%AA%E0%A5%8D%E0%A4%B0%E0%A4%B5%E0%A5%87%E0%A4%B6%E0%A4%A6%E0%A5%8D%E0%A4%B5%E0%A4%BE%E0%A4%B0:%E0%A4%B9%E0%A4%BE%E0%A4%B2_%E0%A4%95%E0%A5%80_%E0%A4%98%E0%A4%9F%E0%A4%A8%E0%A4%BE%E0%A4%8F%E0%A4%81" hreflang="hi" lang="hi" title="प्रवेशद्वार:हाल की घटनाएँ – Hindi"><span>हिन्दी</span></a></li><li class="interlanguage-link interwiki-hr mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Hrvatski" data-language-local-name="Croatian" data-title="Wikipedija:Novosti" href="https://hr.wikipedia.org/wiki/Wikipedija:Novosti" hreflang="hr" lang="hr" title="Wikipedija:Novosti – Croatian"><span>Hrvatski</span></a></li><li class="interlanguage-link interwiki-id mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Bahasa Indonesia" data-language-local-name="Indonesian" data-title="Portal:Peristiwa terkini" href="https://id.wikipedia.org/wiki/Portal:Peristiwa_terkini" hreflang="id" lang="id" title="Portal:Peristiwa terkini – Indonesian"><span>Bahasa Indonesia</span></a></li><li class="interlanguage-link interwiki-ia mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Interlingua" data-language-local-name="Interlingua" data-title="Wikipedia:Actualitates" href="https://ia.wikipedia.org/wiki/Wikipedia:Actualitates" hreflang="ia" lang="ia" title="Wikipedia:Actualitates – Interlingua"><span>Interlingua</span></a></li><li class="interlanguage-link interwiki-os mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Ирон" data-language-local-name="Ossetic" data-title="Википеди:Ног хабæрттæ" href="https://os.wikipedia.org/wiki/%D0%92%D0%B8%D0%BA%D0%B8%D0%BF%D0%B5%D0%B4%D0%B8:%D0%9D%D0%BE%D0%B3_%D1%85%D0%B0%D0%B1%C3%A6%D1%80%D1%82%D1%82%C3%A6" hreflang="os" lang="os" title="Википеди:Ног хабæрттæ – Ossetic"><span>Ирон</span></a></li><li class="interlanguage-link interwiki-zu mw-list-item"><a class="interlanguage-link-target" data-language-autonym="IsiZulu" data-language-local-name="Zulu" data-title="Wikipedia:Izehlakalo ezimanje" href="https://zu.wikipedia.org/wiki/Wikipedia:Izehlakalo_ezimanje" hreflang="zu" lang="zu" title="Wikipedia:Izehlakalo ezimanje – Zulu"><span>IsiZulu</span></a></li><li class="interlanguage-link interwiki-is mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Íslenska" data-language-local-name="Icelandic" data-title="Wikipedia:Í fréttum..." href="https://is.wikipedia.org/wiki/Wikipedia:%C3%8D_fr%C3%A9ttum..." hreflang="is" lang="is" title="Wikipedia:Í fréttum... – Icelandic"><span>Íslenska</span></a></li><li class="interlanguage-link interwiki-kn mw-list-item"><a class="interlanguage-link-target" data-language-autonym="ಕನ್ನಡ" data-language-local-name="Kannada" data-title="ವಿಕಿಪೀಡಿಯ ಪ್ರಚಲಿತ ವಿದ್ಯಮಾನಗಳು" href="https://kn.wikipedia.org/wiki/%E0%B2%B5%E0%B2%BF%E0%B2%95%E0%B2%BF%E0%B2%AA%E0%B3%80%E0%B2%A1%E0%B2%BF%E0%B2%AF_%E0%B2%AA%E0%B3%8D%E0%B2%B0%E0%B2%9A%E0%B2%B2%E0%B2%BF%E0%B2%A4_%E0%B2%B5%E0%B2%BF%E0%B2%A6%E0%B3%8D%E0%B2%AF%E0%B2%AE%E0%B2%BE%E0%B2%A8%E0%B2%97%E0%B2%B3%E0%B3%81" hreflang="kn" lang="kn" title="ವಿಕಿಪೀಡಿಯ ಪ್ರಚಲಿತ ವಿದ್ಯಮಾನಗಳು – Kannada"><span>ಕನ್ನಡ</span></a></li><li class="interlanguage-link interwiki-pam mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Kapampangan" data-language-local-name="Pampanga" data-title="Portal:Ngeni" href="https://pam.wikipedia.org/wiki/Portal:Ngeni" hreflang="pam" lang="pam" title="Portal:Ngeni – Pampanga"><span>Kapampangan</span></a></li><li class="interlanguage-link interwiki-ka mw-list-item"><a class="interlanguage-link-target" data-language-autonym="ქართული" data-language-local-name="Georgian" data-title="პორტალი:ახალი ამბები" href="https://ka.wikipedia.org/wiki/%E1%83%9E%E1%83%9D%E1%83%A0%E1%83%A2%E1%83%90%E1%83%9A%E1%83%98:%E1%83%90%E1%83%AE%E1%83%90%E1%83%9A%E1%83%98_%E1%83%90%E1%83%9B%E1%83%91%E1%83%94%E1%83%91%E1%83%98" hreflang="ka" lang="ka" title="პორტალი:ახალი ამბები – Georgian"><span>ქართული</span></a></li><li class="interlanguage-link interwiki-kk mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Қазақша" data-language-local-name="Kazakh" data-title="Портал:Ағымдағы оқиғалар" href="https://kk.wikipedia.org/wiki/%D0%9F%D0%BE%D1%80%D1%82%D0%B0%D0%BB:%D0%90%D2%93%D1%8B%D0%BC%D0%B4%D0%B0%D2%93%D1%8B_%D0%BE%D2%9B%D0%B8%D2%93%D0%B0%D0%BB%D0%B0%D1%80" hreflang="kk" lang="kk" title="Портал:Ағымдағы оқиғалар – Kazakh"><span>Қазақша</span></a></li><li class="interlanguage-link interwiki-ku mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Kurdî" data-language-local-name="Kurdish" data-title="Portal:Bûyerên rojane" href="https://ku.wikipedia.org/wiki/Portal:B%C3%BByer%C3%AAn_rojane" hreflang="ku" lang="ku" title="Portal:Bûyerên rojane – Kurdish"><span>Kurdî</span></a></li><li class="interlanguage-link interwiki-lad mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Ladino" data-language-local-name="Ladino" data-title="Vikipedya:Novedades" href="https://lad.wikipedia.org/wiki/Vikipedya:Novedades" hreflang="lad" lang="lad" title="Vikipedya:Novedades – Ladino"><span>Ladino</span></a></li><li class="interlanguage-link interwiki-la mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Latina" data-language-local-name="Latin" data-title="Vicipaedia:Nuntii" href="https://la.wikipedia.org/wiki/Vicipaedia:Nuntii" hreflang="la" lang="la" title="Vicipaedia:Nuntii – Latin"><span>Latina</span></a></li><li class="interlanguage-link interwiki-lb mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Lëtzebuergesch" data-language-local-name="Luxembourgish" data-title="Wikipedia:Aktualitéit" href="https://lb.wikipedia.org/wiki/Wikipedia:Aktualit%C3%A9it" hreflang="lb" lang="lb" title="Wikipedia:Aktualitéit – Luxembourgish"><span>Lëtzebuergesch</span></a></li><li class="interlanguage-link interwiki-lt mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Lietuvių" data-language-local-name="Lithuanian" data-title="Vikiprojektas:Naujienos" href="https://lt.wikipedia.org/wiki/Vikiprojektas:Naujienos" hreflang="lt" lang="lt" title="Vikiprojektas:Naujienos – Lithuanian"><span>Lietuvių</span></a></li><li class="interlanguage-link interwiki-nia mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Li Niha" data-language-local-name="Nias" data-title="Wikipedia:Sawena alua" href="https://nia.wikipedia.org/wiki/Wikipedia:Sawena_alua" hreflang="nia" lang="nia" title="Wikipedia:Sawena alua – Nias"><span>Li Niha</span></a></li><li class="interlanguage-link interwiki-li mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Limburgs" data-language-local-name="Limburgish" data-title="In 't nuujs" href="https://li.wikipedia.org/wiki/In_%27t_nuujs" hreflang="li" lang="li" title="In 't nuujs – Limburgish"><span>Limburgs</span></a></li><li class="interlanguage-link interwiki-hu mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Magyar" data-language-local-name="Hungarian" data-title="Wikipédia:Események" href="https://hu.wikipedia.org/wiki/Wikip%C3%A9dia:Esem%C3%A9nyek" hreflang="hu" lang="hu" title="Wikipédia:Események – Hungarian"><span>Magyar</span></a></li><li class="interlanguage-link interwiki-mai mw-list-item"><a class="interlanguage-link-target" data-language-autonym="मैथिली" data-language-local-name="Maithili" data-title="विकिपिडिया:आइ-काल्हिक घटनासभ" href="https://mai.wikipedia.org/wiki/%E0%A4%B5%E0%A4%BF%E0%A4%95%E0%A4%BF%E0%A4%AA%E0%A4%BF%E0%A4%A1%E0%A4%BF%E0%A4%AF%E0%A4%BE:%E0%A4%86%E0%A4%87-%E0%A4%95%E0%A4%BE%E0%A4%B2%E0%A5%8D%E0%A4%B9%E0%A4%BF%E0%A4%95_%E0%A4%98%E0%A4%9F%E0%A4%A8%E0%A4%BE%E0%A4%B8%E0%A4%AD" hreflang="mai" lang="mai" title="विकिपिडिया:आइ-काल्हिक घटनासभ – Maithili"><span>मैथिली</span></a></li><li class="interlanguage-link interwiki-ml mw-list-item"><a class="interlanguage-link-target" data-language-autonym="മലയാളം" data-language-local-name="Malayalam" data-title="കവാടം:സമകാലികം" href="https://ml.wikipedia.org/wiki/%E0%B4%95%E0%B4%B5%E0%B4%BE%E0%B4%9F%E0%B4%82:%E0%B4%B8%E0%B4%AE%E0%B4%95%E0%B4%BE%E0%B4%B2%E0%B4%BF%E0%B4%95%E0%B4%82" hreflang="ml" lang="ml" title="കവാടം:സമകാലികം – Malayalam"><span>മലയാളം</span></a></li><li class="interlanguage-link interwiki-mr mw-list-item"><a class="interlanguage-link-target" data-language-autonym="मराठी" data-language-local-name="Marathi" data-title="विकिपीडिया:सद्य घटना विवरण" href="https://mr.wikipedia.org/wiki/%E0%A4%B5%E0%A4%BF%E0%A4%95%E0%A4%BF%E0%A4%AA%E0%A5%80%E0%A4%A1%E0%A4%BF%E0%A4%AF%E0%A4%BE:%E0%A4%B8%E0%A4%A6%E0%A5%8D%E0%A4%AF_%E0%A4%98%E0%A4%9F%E0%A4%A8%E0%A4%BE_%E0%A4%B5%E0%A4%BF%E0%A4%B5%E0%A4%B0%E0%A4%A3" hreflang="mr" lang="mr" title="विकिपीडिया:सद्य घटना विवरण – Marathi"><span>मराठी</span></a></li><li class="interlanguage-link interwiki-arz mw-list-item"><a class="interlanguage-link-target" data-language-autonym="مصرى" data-language-local-name="Egyptian Arabic" data-title="ويكيبيديا:احداث دلوقتى" href="https://arz.wikipedia.org/wiki/%D9%88%D9%8A%D9%83%D9%8A%D8%A8%D9%8A%D8%AF%D9%8A%D8%A7:%D8%A7%D8%AD%D8%AF%D8%A7%D8%AB_%D8%AF%D9%84%D9%88%D9%82%D8%AA%D9%89" hreflang="arz" lang="arz" title="ويكيبيديا:احداث دلوقتى – Egyptian Arabic"><span>مصرى</span></a></li><li class="interlanguage-link interwiki-mzn mw-list-item"><a class="interlanguage-link-target" data-language-autonym="مازِرونی" data-language-local-name="Mazanderani" data-title="پورتال:اسایی دکته‌ئون" href="https://mzn.wikipedia.org/wiki/%D9%BE%D9%88%D8%B1%D8%AA%D8%A7%D9%84:%D8%A7%D8%B3%D8%A7%DB%8C%DB%8C_%D8%AF%DA%A9%D8%AA%D9%87%E2%80%8C%D8%A6%D9%88%D9%86" hreflang="mzn" lang="mzn" title="پورتال:اسایی دکته‌ئون – Mazanderani"><span>مازِرونی</span></a></li><li class="interlanguage-link interwiki-ms mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Bahasa Melayu" data-language-local-name="Malay" data-title="Portal:Hal semasa" href="https://ms.wikipedia.org/wiki/Portal:Hal_semasa" hreflang="ms" lang="ms" title="Portal:Hal semasa – Malay"><span>Bahasa Melayu</span></a></li><li class="interlanguage-link interwiki-min mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Minangkabau" data-language-local-name="Minangkabau" data-title="Portal:Kajadian kini ko" href="https://min.wikipedia.org/wiki/Portal:Kajadian_kini_ko" hreflang="min" lang="min" title="Portal:Kajadian kini ko – Minangkabau"><span>Minangkabau</span></a></li><li class="interlanguage-link interwiki-mn mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Монгол" data-language-local-name="Mongolian" data-title="Википедиа:Мэдээний сан" href="https://mn.wikipedia.org/wiki/%D0%92%D0%B8%D0%BA%D0%B8%D0%BF%D0%B5%D0%B4%D0%B8%D0%B0:%D0%9C%D1%8D%D0%B4%D1%8D%D1%8D%D0%BD%D0%B8%D0%B9_%D1%81%D0%B0%D0%BD" hreflang="mn" lang="mn" title="Википедиа:Мэдээний сан – Mongolian"><span>Монгол</span></a></li><li class="interlanguage-link interwiki-my mw-list-item"><a class="interlanguage-link-target" data-language-autonym="မြန်မာဘာသာ" data-language-local-name="Burmese" data-title="ဝီကီပီးဒီးယား:လက်ရှိလုပ်ငန်းများ" href="https://my.wikipedia.org/wiki/%E1%80%9D%E1%80%AE%E1%80%80%E1%80%AE%E1%80%95%E1%80%AE%E1%80%B8%E1%80%92%E1%80%AE%E1%80%B8%E1%80%9A%E1%80%AC%E1%80%B8:%E1%80%9C%E1%80%80%E1%80%BA%E1%80%9B%E1%80%BE%E1%80%AD%E1%80%9C%E1%80%AF%E1%80%95%E1%80%BA%E1%80%84%E1%80%94%E1%80%BA%E1%80%B8%E1%80%99%E1%80%BB%E1%80%AC%E1%80%B8" hreflang="my" lang="my" title="ဝီကီပီးဒီးယား:လက်ရှိလုပ်ငန်းများ – Burmese"><span>မြန်မာဘာသာ</span></a></li><li class="interlanguage-link interwiki-nah mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Nāhuatl" data-language-local-name="Nahuatl" data-title="Huiquipedia:Tlen panotikah" href="https://nah.wikipedia.org/wiki/Huiquipedia:Tlen_panotikah" hreflang="nah" lang="nah" title="Huiquipedia:Tlen panotikah – Nahuatl"><span>Nāhuatl</span></a></li><li class="interlanguage-link interwiki-nl mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Nederlands" data-language-local-name="Dutch" data-title="Portaal:In het nieuws" href="https://nl.wikipedia.org/wiki/Portaal:In_het_nieuws" hreflang="nl" lang="nl" title="Portaal:In het nieuws – Dutch"><span>Nederlands</span></a></li><li class="interlanguage-link interwiki-ne mw-list-item"><a class="interlanguage-link-target" data-language-autonym="नेपाली" data-language-local-name="Nepali" data-title="विकिपिडिया:हालैका घटनाहरू" href="https://ne.wikipedia.org/wiki/%E0%A4%B5%E0%A4%BF%E0%A4%95%E0%A4%BF%E0%A4%AA%E0%A4%BF%E0%A4%A1%E0%A4%BF%E0%A4%AF%E0%A4%BE:%E0%A4%B9%E0%A4%BE%E0%A4%B2%E0%A5%88%E0%A4%95%E0%A4%BE_%E0%A4%98%E0%A4%9F%E0%A4%A8%E0%A4%BE%E0%A4%B9%E0%A4%B0%E0%A5%82" hreflang="ne" lang="ne" title="विकिपिडिया:हालैका घटनाहरू – Nepali"><span>नेपाली</span></a></li><li class="interlanguage-link interwiki-new mw-list-item"><a class="interlanguage-link-target" data-language-autonym="नेपाल भाषा" data-language-local-name="Newari" data-title="विकिपिडिया:हलिम बुखँ (ग्रेगोरियन पात्रो)" href="https://new.wikipedia.org/wiki/%E0%A4%B5%E0%A4%BF%E0%A4%95%E0%A4%BF%E0%A4%AA%E0%A4%BF%E0%A4%A1%E0%A4%BF%E0%A4%AF%E0%A4%BE:%E0%A4%B9%E0%A4%B2%E0%A4%BF%E0%A4%AE_%E0%A4%AC%E0%A5%81%E0%A4%96%E0%A4%81_(%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%97%E0%A5%8B%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%A8_%E0%A4%AA%E0%A4%BE%E0%A4%A4%E0%A5%8D%E0%A4%B0%E0%A5%8B)" hreflang="new" lang="new" title="विकिपिडिया:हलिम बुखँ (ग्रेगोरियन पात्रो) – Newari"><span>नेपाल भाषा</span></a></li><li class="interlanguage-link interwiki-ja mw-list-item"><a class="interlanguage-link-target" data-language-autonym="日本語" data-language-local-name="Japanese" data-title="Portal:最近の出来事" href="https://ja.wikipedia.org/wiki/Portal:%E6%9C%80%E8%BF%91%E3%81%AE%E5%87%BA%E6%9D%A5%E4%BA%8B" hreflang="ja" lang="ja" title="Portal:最近の出来事 – Japanese"><span>日本語</span></a></li><li class="interlanguage-link interwiki-nap mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Napulitano" data-language-local-name="Neapolitan" data-title="Wikipedia:Nnove d''o Munno, d''a Campania e 'a ll'Italia" href="https://nap.wikipedia.org/wiki/Wikipedia:Nnove_d%27%27o_Munno,_d%27%27a_Campania_e_%27a_ll%27Italia" hreflang="nap" lang="nap" title="Wikipedia:Nnove d''o Munno, d''a Campania e 'a ll'Italia – Neapolitan"><span>Napulitano</span></a></li><li class="interlanguage-link interwiki-ce mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Нохчийн" data-language-local-name="Chechen" data-title="Ков:Карара хилларш" href="https://ce.wikipedia.org/wiki/%D0%9A%D0%BE%D0%B2:%D0%9A%D0%B0%D1%80%D0%B0%D1%80%D0%B0_%D1%85%D0%B8%D0%BB%D0%BB%D0%B0%D1%80%D1%88" hreflang="ce" lang="ce" title="Ков:Карара хилларш – Chechen"><span>Нохчийн</span></a></li><li class="interlanguage-link interwiki-oc mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Occitan" data-language-local-name="Occitan" data-title="Portal:Actualitats e eveniments" href="https://oc.wikipedia.org/wiki/Portal:Actualitats_e_eveniments" hreflang="oc" lang="oc" title="Portal:Actualitats e eveniments – Occitan"><span>Occitan</span></a></li><li class="interlanguage-link interwiki-uz mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Oʻzbekcha / ўзбекча" data-language-local-name="Uzbek" data-title="Portal:Joriy hodisalar" href="https://uz.wikipedia.org/wiki/Portal:Joriy_hodisalar" hreflang="uz" lang="uz" title="Portal:Joriy hodisalar – Uzbek"><span>Oʻzbekcha / ўзбекча</span></a></li><li class="interlanguage-link interwiki-pa mw-list-item"><a class="interlanguage-link-target" data-language-autonym="ਪੰਜਾਬੀ" data-language-local-name="Punjabi" data-title="ਵਿਕੀਪੀਡੀਆ:ਹਾਲ ਦੀਆਂ ਘਟਨਾਵਾਂ" href="https://pa.wikipedia.org/wiki/%E0%A8%B5%E0%A8%BF%E0%A8%95%E0%A9%80%E0%A8%AA%E0%A9%80%E0%A8%A1%E0%A9%80%E0%A8%86:%E0%A8%B9%E0%A8%BE%E0%A8%B2_%E0%A8%A6%E0%A9%80%E0%A8%86%E0%A8%82_%E0%A8%98%E0%A8%9F%E0%A8%A8%E0%A8%BE%E0%A8%B5%E0%A8%BE%E0%A8%82" hreflang="pa" lang="pa" title="ਵਿਕੀਪੀਡੀਆ:ਹਾਲ ਦੀਆਂ ਘਟਨਾਵਾਂ – Punjabi"><span>ਪੰਜਾਬੀ</span></a></li><li class="interlanguage-link interwiki-pnb mw-list-item"><a class="interlanguage-link-target" data-language-autonym="پنجابی" data-language-local-name="Western Punjabi" data-title="بوآ:اج کل دے واقعے" href="https://pnb.wikipedia.org/wiki/%D8%A8%D9%88%D8%A2:%D8%A7%D8%AC_%DA%A9%D9%84_%D8%AF%DB%92_%D9%88%D8%A7%D9%82%D8%B9%DB%92" hreflang="pnb" lang="pnb" title="بوآ:اج کل دے واقعے – Western Punjabi"><span>پنجابی</span></a></li><li class="interlanguage-link interwiki-ps mw-list-item"><a class="interlanguage-link-target" data-language-autonym="پښتو" data-language-local-name="Pashto" data-title="ويکيپېډيا:تازه پېښې" href="https://ps.wikipedia.org/wiki/%D9%88%D9%8A%DA%A9%D9%8A%D9%BE%DB%90%DA%89%D9%8A%D8%A7:%D8%AA%D8%A7%D8%B2%D9%87_%D9%BE%DB%90%DA%9A%DB%90" hreflang="ps" lang="ps" title="ويکيپېډيا:تازه پېښې – Pashto"><span>پښتو</span></a></li><li class="interlanguage-link interwiki-pms mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Piemontèis" data-language-local-name="Piedmontese" data-title="Wikipedia:Neuve" href="https://pms.wikipedia.org/wiki/Wikipedia:Neuve" hreflang="pms" lang="pms" title="Wikipedia:Neuve – Piedmontese"><span>Piemontèis</span></a></li><li class="interlanguage-link interwiki-pl mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Polski" data-language-local-name="Polish" data-title="Portal:Aktualności" href="https://pl.wikipedia.org/wiki/Portal:Aktualno%C5%9Bci" hreflang="pl" lang="pl" title="Portal:Aktualności – Polish"><span>Polski</span></a></li><li class="interlanguage-link interwiki-pt mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Português" data-language-local-name="Portuguese" data-title="Portal:Eventos atuais" href="https://pt.wikipedia.org/wiki/Portal:Eventos_atuais" hreflang="pt" lang="pt" title="Portal:Eventos atuais – Portuguese"><span>Português</span></a></li><li class="interlanguage-link interwiki-kaa mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Qaraqalpaqsha" data-language-local-name="Kara-Kalpak" data-title="Wikipedia:Házirgi hádiyseler" href="https://kaa.wikipedia.org/wiki/Wikipedia:H%C3%A1zirgi_h%C3%A1diyseler" hreflang="kaa" lang="kaa" title="Wikipedia:Házirgi hádiyseler – Kara-Kalpak"><span>Qaraqalpaqsha</span></a></li><li class="interlanguage-link interwiki-ro mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Română" data-language-local-name="Romanian" data-title="Portal:Actualități" href="https://ro.wikipedia.org/wiki/Portal:Actualit%C4%83%C8%9Bi" hreflang="ro" lang="ro" title="Portal:Actualități – Romanian"><span>Română</span></a></li><li class="interlanguage-link interwiki-rue mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Русиньскый" data-language-local-name="Rusyn" data-title="Вікіпедія:Актуалны подїї" href="https://rue.wikipedia.org/wiki/%D0%92%D1%96%D0%BA%D1%96%D0%BF%D0%B5%D0%B4%D1%96%D1%8F:%D0%90%D0%BA%D1%82%D1%83%D0%B0%D0%BB%D0%BD%D1%8B_%D0%BF%D0%BE%D0%B4%D1%97%D1%97" hreflang="rue" lang="rue" title="Вікіпедія:Актуалны подїї – Rusyn"><span>Русиньскый</span></a></li><li class="interlanguage-link interwiki-ru mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Русский" data-language-local-name="Russian" data-title="Портал:Текущие события" href="https://ru.wikipedia.org/wiki/%D0%9F%D0%BE%D1%80%D1%82%D0%B0%D0%BB:%D0%A2%D0%B5%D0%BA%D1%83%D1%89%D0%B8%D0%B5_%D1%81%D0%BE%D0%B1%D1%8B%D1%82%D0%B8%D1%8F" hreflang="ru" lang="ru" title="Портал:Текущие события – Russian"><span>Русский</span></a></li><li class="interlanguage-link interwiki-sco mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Scots" data-language-local-name="Scots" data-title="Portal:Current events" href="https://sco.wikipedia.org/wiki/Portal:Current_events" hreflang="sco" lang="sco" title="Portal:Current events – Scots"><span>Scots</span></a></li><li class="interlanguage-link interwiki-sq mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Shqip" data-language-local-name="Albanian" data-title="Portal:Ngjarjet e tanishme" href="https://sq.wikipedia.org/wiki/Portal:Ngjarjet_e_tanishme" hreflang="sq" lang="sq" title="Portal:Ngjarjet e tanishme – Albanian"><span>Shqip</span></a></li><li class="interlanguage-link interwiki-scn mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Sicilianu" data-language-local-name="Sicilian" data-title="Archiviu:Nutizzi" href="https://scn.wikipedia.org/wiki/Archiviu:Nutizzi" hreflang="scn" lang="scn" title="Archiviu:Nutizzi – Sicilian"><span>Sicilianu</span></a></li><li class="interlanguage-link interwiki-si mw-list-item"><a class="interlanguage-link-target" data-language-autonym="සිංහල" data-language-local-name="Sinhala" data-title="විකිපීඩියා:කාලීන සිදුවීම්" href="https://si.wikipedia.org/wiki/%E0%B7%80%E0%B7%92%E0%B6%9A%E0%B7%92%E0%B6%B4%E0%B7%93%E0%B6%A9%E0%B7%92%E0%B6%BA%E0%B7%8F:%E0%B6%9A%E0%B7%8F%E0%B6%BD%E0%B7%93%E0%B6%B1_%E0%B7%83%E0%B7%92%E0%B6%AF%E0%B7%94%E0%B7%80%E0%B7%93%E0%B6%B8%E0%B7%8A" hreflang="si" lang="si" title="විකිපීඩියා:කාලීන සිදුවීම් – Sinhala"><span>සිංහල</span></a></li><li class="interlanguage-link interwiki-sd mw-list-item"><a class="interlanguage-link-target" data-language-autonym="سنڌي" data-language-local-name="Sindhi" data-title="باب:ھاڻوڪا واقعا" href="https://sd.wikipedia.org/wiki/%D8%A8%D8%A7%D8%A8:%DA%BE%D8%A7%DA%BB%D9%88%DA%AA%D8%A7_%D9%88%D8%A7%D9%82%D8%B9%D8%A7" hreflang="sd" lang="sd" title="باب:ھاڻوڪا واقعا – Sindhi"><span>سنڌي</span></a></li><li class="interlanguage-link interwiki-sk mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Slovenčina" data-language-local-name="Slovak" data-title="Portál:Aktuality" href="https://sk.wikipedia.org/wiki/Port%C3%A1l:Aktuality" hreflang="sk" lang="sk" title="Portál:Aktuality – Slovak"><span>Slovenčina</span></a></li><li class="interlanguage-link interwiki-sl mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Slovenščina" data-language-local-name="Slovenian" data-title="Portal:V novicah" href="https://sl.wikipedia.org/wiki/Portal:V_novicah" hreflang="sl" lang="sl" title="Portal:V novicah – Slovenian"><span>Slovenščina</span></a></li><li class="interlanguage-link interwiki-so mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Soomaaliga" data-language-local-name="Somali" data-title="Portal:Dhacdooyinka Hadda" href="https://so.wikipedia.org/wiki/Portal:Dhacdooyinka_Hadda" hreflang="so" lang="so" title="Portal:Dhacdooyinka Hadda – Somali"><span>Soomaaliga</span></a></li><li class="interlanguage-link interwiki-ckb mw-list-item"><a class="interlanguage-link-target" data-language-autonym="کوردی" data-language-local-name="Central Kurdish" data-title="دەروازە:ڕووداوە بەردەوامەکان" href="https://ckb.wikipedia.org/wiki/%D8%AF%DB%95%D8%B1%D9%88%D8%A7%D8%B2%DB%95:%DA%95%D9%88%D9%88%D8%AF%D8%A7%D9%88%DB%95_%D8%A8%DB%95%D8%B1%D8%AF%DB%95%D9%88%D8%A7%D9%85%DB%95%DA%A9%D8%A7%D9%86" hreflang="ckb" lang="ckb" title="دەروازە:ڕووداوە بەردەوامەکان – Central Kurdish"><span>کوردی</span></a></li><li class="interlanguage-link interwiki-sr mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Српски / srpski" data-language-local-name="Serbian" data-title="Портал:Догађаји" href="https://sr.wikipedia.org/wiki/%D0%9F%D0%BE%D1%80%D1%82%D0%B0%D0%BB:%D0%94%D0%BE%D0%B3%D0%B0%D1%92%D0%B0%D1%98%D0%B8" hreflang="sr" lang="sr" title="Портал:Догађаји – Serbian"><span>Српски / srpski</span></a></li><li class="interlanguage-link interwiki-su mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Sunda" data-language-local-name="Sundanese" data-title="Portal:Keur lumangsung" href="https://su.wikipedia.org/wiki/Portal:Keur_lumangsung" hreflang="su" lang="su" title="Portal:Keur lumangsung – Sundanese"><span>Sunda</span></a></li><li class="interlanguage-link interwiki-fi mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Suomi" data-language-local-name="Finnish" data-title="Wikipedia:Uutisarkisto" href="https://fi.wikipedia.org/wiki/Wikipedia:Uutisarkisto" hreflang="fi" lang="fi" title="Wikipedia:Uutisarkisto – Finnish"><span>Suomi</span></a></li><li class="interlanguage-link interwiki-sv mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Svenska" data-language-local-name="Swedish" data-title="Portal:Aktuella händelser" href="https://sv.wikipedia.org/wiki/Portal:Aktuella_h%C3%A4ndelser" hreflang="sv" lang="sv" title="Portal:Aktuella händelser – Swedish"><span>Svenska</span></a></li><li class="interlanguage-link interwiki-tl mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Tagalog" data-language-local-name="Tagalog" data-title="Wikipedia:Kasalukuyang pangyayari" href="https://tl.wikipedia.org/wiki/Wikipedia:Kasalukuyang_pangyayari" hreflang="tl" lang="tl" title="Wikipedia:Kasalukuyang pangyayari – Tagalog"><span>Tagalog</span></a></li><li class="interlanguage-link interwiki-ta mw-list-item"><a class="interlanguage-link-target" data-language-autonym="தமிழ்" data-language-local-name="Tamil" data-title="விக்கிப்பீடியா:நடப்பு நிகழ்வுகள்" href="https://ta.wikipedia.org/wiki/%E0%AE%B5%E0%AE%BF%E0%AE%95%E0%AF%8D%E0%AE%95%E0%AE%BF%E0%AE%AA%E0%AF%8D%E0%AE%AA%E0%AF%80%E0%AE%9F%E0%AE%BF%E0%AE%AF%E0%AE%BE:%E0%AE%A8%E0%AE%9F%E0%AE%AA%E0%AF%8D%E0%AE%AA%E0%AF%81_%E0%AE%A8%E0%AE%BF%E0%AE%95%E0%AE%B4%E0%AF%8D%E0%AE%B5%E0%AF%81%E0%AE%95%E0%AE%B3%E0%AF%8D" hreflang="ta" lang="ta" title="விக்கிப்பீடியா:நடப்பு நிகழ்வுகள் – Tamil"><span>தமிழ்</span></a></li><li class="interlanguage-link interwiki-tt mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Татарча / tatarça" data-language-local-name="Tatar" data-title="Портал:Хәзерге вакыйгалар" href="https://tt.wikipedia.org/wiki/%D0%9F%D0%BE%D1%80%D1%82%D0%B0%D0%BB:%D0%A5%D3%99%D0%B7%D0%B5%D1%80%D0%B3%D0%B5_%D0%B2%D0%B0%D0%BA%D1%8B%D0%B9%D0%B3%D0%B0%D0%BB%D0%B0%D1%80" hreflang="tt" lang="tt" title="Портал:Хәзерге вакыйгалар – Tatar"><span>Татарча / tatarça</span></a></li><li class="interlanguage-link interwiki-th mw-list-item"><a class="interlanguage-link-target" data-language-autonym="ไทย" data-language-local-name="Thai" data-title="สถานีย่อย:เหตุการณ์ปัจจุบัน" href="https://th.wikipedia.org/wiki/%E0%B8%AA%E0%B8%96%E0%B8%B2%E0%B8%99%E0%B8%B5%E0%B8%A2%E0%B9%88%E0%B8%AD%E0%B8%A2:%E0%B9%80%E0%B8%AB%E0%B8%95%E0%B8%B8%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B8%93%E0%B9%8C%E0%B8%9B%E0%B8%B1%E0%B8%88%E0%B8%88%E0%B8%B8%E0%B8%9A%E0%B8%B1%E0%B8%99" hreflang="th" lang="th" title="สถานีย่อย:เหตุการณ์ปัจจุบัน – Thai"><span>ไทย</span></a></li><li class="interlanguage-link interwiki-tg mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Тоҷикӣ" data-language-local-name="Tajik" data-title="Портал:Рӯйдодҳои кунунӣ" href="https://tg.wikipedia.org/wiki/%D0%9F%D0%BE%D1%80%D1%82%D0%B0%D0%BB:%D0%A0%D3%AF%D0%B9%D0%B4%D0%BE%D0%B4%D2%B3%D0%BE%D0%B8_%D0%BA%D1%83%D0%BD%D1%83%D0%BD%D3%A3" hreflang="tg" lang="tg" title="Портал:Рӯйдодҳои кунунӣ – Tajik"><span>Тоҷикӣ</span></a></li><li class="interlanguage-link interwiki-chr mw-list-item"><a class="interlanguage-link-target" data-language-autonym="ᏣᎳᎩ" data-language-local-name="Cherokee" data-title="Wikipedia:Current events" href="https://chr.wikipedia.org/wiki/Wikipedia:Current_events" hreflang="chr" lang="chr" title="Wikipedia:Current events – Cherokee"><span>ᏣᎳᎩ</span></a></li><li class="interlanguage-link interwiki-kcg mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Tyap" data-language-local-name="Tyap" data-title="A̱na̱nwuai:Naat mbwuot mi̱ di̱ yong huni" href="https://kcg.wikipedia.org/wiki/A%CC%B1na%CC%B1nwuai:Naat_mbwuot_mi%CC%B1_di%CC%B1_yong_huni" hreflang="kcg" lang="kcg" title="A̱na̱nwuai:Naat mbwuot mi̱ di̱ yong huni – Tyap"><span>Tyap</span></a></li><li class="interlanguage-link interwiki-uk mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Українська" data-language-local-name="Ukrainian" data-title="Портал:Поточні події" href="https://uk.wikipedia.org/wiki/%D0%9F%D0%BE%D1%80%D1%82%D0%B0%D0%BB:%D0%9F%D0%BE%D1%82%D0%BE%D1%87%D0%BD%D1%96_%D0%BF%D0%BE%D0%B4%D1%96%D1%97" hreflang="uk" lang="uk" title="Портал:Поточні події – Ukrainian"><span>Українська</span></a></li><li class="interlanguage-link interwiki-ur mw-list-item"><a class="interlanguage-link-target" data-language-autonym="اردو" data-language-local-name="Urdu" data-title="باب:حالیہ واقعات" href="https://ur.wikipedia.org/wiki/%D8%A8%D8%A7%D8%A8:%D8%AD%D8%A7%D9%84%DB%8C%DB%81_%D9%88%D8%A7%D9%82%D8%B9%D8%A7%D8%AA" hreflang="ur" lang="ur" title="باب:حالیہ واقعات – Urdu"><span>اردو</span></a></li><li class="interlanguage-link interwiki-vep mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Vepsän kel’" data-language-local-name="Veps" data-title="Vikipedii:Nügüdläižed tegod" href="https://vep.wikipedia.org/wiki/Vikipedii:N%C3%BCg%C3%BCdl%C3%A4i%C5%BEed_tegod" hreflang="vep" lang="vep" title="Vikipedii:Nügüdläižed tegod – Veps"><span>Vepsän kel’</span></a></li><li class="interlanguage-link interwiki-vi mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Tiếng Việt" data-language-local-name="Vietnamese" data-title="Cổng thông tin:Thời sự" href="https://vi.wikipedia.org/wiki/C%E1%BB%95ng_th%C3%B4ng_tin:Th%E1%BB%9Di_s%E1%BB%B1" hreflang="vi" lang="vi" title="Cổng thông tin:Thời sự – Vietnamese"><span>Tiếng Việt</span></a></li><li class="interlanguage-link interwiki-vo mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Volapük" data-language-local-name="Volapük" data-title="Vükiped:Jenots nuik" href="https://vo.wikipedia.org/wiki/V%C3%BCkiped:Jenots_nuik" hreflang="vo" lang="vo" title="Vükiped:Jenots nuik – Volapük"><span>Volapük</span></a></li><li class="interlanguage-link interwiki-wa mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Walon" data-language-local-name="Walloon" data-title="Wikipedia:Wikinoveles" href="https://wa.wikipedia.org/wiki/Wikipedia:Wikinoveles" hreflang="wa" lang="wa" title="Wikipedia:Wikinoveles – Walloon"><span>Walon</span></a></li><li class="interlanguage-link interwiki-zh-classical mw-list-item"><a class="interlanguage-link-target" data-language-autonym="文言" data-language-local-name="Literary Chinese" data-title="維基大典:世事" href="https://zh-classical.wikipedia.org/wiki/%E7%B6%AD%E5%9F%BA%E5%A4%A7%E5%85%B8:%E4%B8%96%E4%BA%8B" hreflang="lzh" lang="lzh" title="維基大典:世事 – Literary Chinese"><span>文言</span></a></li><li class="interlanguage-link interwiki-wuu mw-list-item"><a class="interlanguage-link-target" data-language-autonym="吴语" data-language-local-name="Wu" data-title="Wikipedia:近段辰光个事体" href="https://wuu.wikipedia.org/wiki/Wikipedia:%E8%BF%91%E6%AE%B5%E8%BE%B0%E5%85%89%E4%B8%AA%E4%BA%8B%E4%BD%93" hreflang="wuu" lang="wuu" title="Wikipedia:近段辰光个事体 – Wu"><span>吴语</span></a></li><li class="interlanguage-link interwiki-yi mw-list-item"><a class="interlanguage-link-target" data-language-autonym="ייִדיש" data-language-local-name="Yiddish" data-title="פארטאל:אקטועלע געשעענישן" href="https://yi.wikipedia.org/wiki/%D7%A4%D7%90%D7%A8%D7%98%D7%90%D7%9C:%D7%90%D7%A7%D7%98%D7%95%D7%A2%D7%9C%D7%A2_%D7%92%D7%A2%D7%A9%D7%A2%D7%A2%D7%A0%D7%99%D7%A9%D7%9F" hreflang="yi" lang="yi" title="פארטאל:אקטועלע געשעענישן – Yiddish"><span>ייִדיש</span></a></li><li class="interlanguage-link interwiki-yo mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Yorùbá" data-language-local-name="Yoruba" data-title="Èbúté:Àwọn ìṣẹ̀lẹ̀ ìwòyí" href="https://yo.wikipedia.org/wiki/%C3%88b%C3%BAt%C3%A9:%C3%80w%E1%BB%8Dn_%C3%AC%E1%B9%A3%E1%BA%B9%CC%80l%E1%BA%B9%CC%80_%C3%ACw%C3%B2y%C3%AD" hreflang="yo" lang="yo" title="Èbúté:Àwọn ìṣẹ̀lẹ̀ ìwòyí – Yoruba"><span>Yorùbá</span></a></li><li class="interlanguage-link interwiki-zh-yue mw-list-item"><a class="interlanguage-link-target" data-language-autonym="粵語" data-language-local-name="Cantonese" data-title="Portal:時人時事" href="https://zh-yue.wikipedia.org/wiki/Portal:%E6%99%82%E4%BA%BA%E6%99%82%E4%BA%8B" hreflang="yue" lang="yue" title="Portal:時人時事 – Cantonese"><span>粵語</span></a></li><li class="interlanguage-link interwiki-zea mw-list-item"><a class="interlanguage-link-target" data-language-autonym="Zeêuws" data-language-local-name="Zeelandic" data-title="Wikipedia:In 't nieuws" href="https://zea.wikipedia.org/wiki/Wikipedia:In_%27t_nieuws" hreflang="zea" lang="zea" title="Wikipedia:In 't nieuws – Zeelandic"><span>Zeêuws</span></a></li><li class="interlanguage-link interwiki-zh mw-list-item"><a class="interlanguage-link-target" data-language-autonym="中文" data-language-local-name="Chinese" data-title="Portal:新聞動態" href="https://zh.wikipedia.org/wiki/Portal:%E6%96%B0%E8%81%9E%E5%8B%95%E6%85%8B" hreflang="zh" lang="zh" title="Portal:新聞動態 – Chinese"><span>中文</span></a></li>
</ul>
<div class="after-portlet after-portlet-lang"><span class="wb-langlinks-edit wb-langlinks-link"><a class="wbc-editpage" href="https://www.wikidata.org/wiki/Special:EntityPage/Q4597488#sitelinks-wikipedia" title="Edit interlanguage links">Edit links</a></span></div>
</div>
</div>
</div>
</header>
<div class="vector-page-toolbar">
<div class="vector-page-toolbar-container">
<div id="left-navigation">
<nav aria-label="Namespaces">
<div class="vector-menu vector-menu-tabs mw-portlet mw-portlet-associated-pages" id="p-associated-pages">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="selected vector-tab-noicon mw-list-item" id="ca-nstab-portal"><a accesskey="c" href="/wiki/Portal:Current_events" title="View the subject page [c]"><span>Portal</span></a></li><li class="vector-tab-noicon mw-list-item" id="ca-talk"><a accesskey="t" href="/wiki/Portal_talk:Current_events" rel="discussion" title="Discuss improvements to the content page [t]"><span>Talk</span></a></li>
</ul>
</div>
</div>
<div class="vector-dropdown emptyPortlet" id="vector-variants-dropdown">
<input aria-haspopup="true" aria-label="Change language variant" class="vector-dropdown-checkbox" data-event-name="ui.dropdown-vector-variants-dropdown" id="vector-variants-dropdown-checkbox" role="button" type="checkbox"/>
<label aria-hidden="true" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" for="vector-variants-dropdown-checkbox" id="vector-variants-dropdown-label"><span class="vector-dropdown-label-text">English</span>
</label>
<div class="vector-dropdown-content">
<div class="vector-menu mw-portlet mw-portlet-variants emptyPortlet" id="p-variants">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
<div class="vector-collapsible" id="right-navigation">
<nav aria-label="Views">
<div class="vector-menu vector-menu-tabs mw-portlet mw-portlet-views" id="p-views">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="selected vector-tab-noicon mw-list-item" id="ca-view"><a href="/wiki/Portal:Current_events"><span>Read</span></a></li><li class="vector-tab-noicon mw-list-item" id="ca-viewsource"><a accesskey="e" href="/w/index.php?title=Portal:Current_events&amp;action=edit" title="This page is protected.
You can view its source [e]"><span>View source</span></a></li><li class="vector-tab-noicon mw-list-item" id="ca-history"><a accesskey="h" href="/w/index.php?title=Portal:Current_events&amp;action=history" title="Past revisions of this page [h]"><span>View history</span></a></li>
</ul>
</div>
</div>
</nav>
<nav aria-label="Page tools" class="vector-page-tools-landmark">
<div class="vector-dropdown vector-page-tools-dropdown" id="vector-page-tools-dropdown">
<input aria-haspopup="true" aria-label="Tools" class="vector-dropdown-checkbox" data-event-name="ui.dropdown-vector-page-tools-dropdown" id="vector-page-tools-dropdown-checkbox" role="button" type="checkbox"/>
<label aria-hidden="true" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" for="vector-page-tools-dropdown-checkbox" id="vector-page-tools-dropdown-label"><span class="vector-dropdown-label-text">Tools</span>
</label>
<div class="vector-dropdown-content">
<div class="vector-unpinned-container" id="vector-page-tools-unpinned-container">
<div class="vector-page-tools vector-pinnable-element" id="vector-page-tools">
<div class="vector-pinnable-header vector-page-tools-pinnable-header vector-pinnable-header-unpinned" data-feature-name="page-tools-pinned" data-pinnable-element-id="vector-page-tools" data-pinned-container-id="vector-page-tools-pinned-container" data-unpinned-container-id="vector-page-tools-unpinned-container">
<div class="vector-pinnable-header-label">Tools</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-page-tools.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-page-tools.unpin">hide</button>
</div>
<div class="vector-menu mw-portlet mw-portlet-cactions emptyPortlet vector-has-collapsible-items" id="p-cactions" title="More options">
<div class="vector-menu-heading">
        Actions
    </div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="selected vector-more-collapsible-item mw-list-item" id="ca-more-view"><a href="/wiki/Portal:Current_events"><span>Read</span></a></li><li class="vector-more-collapsible-item mw-list-item" id="ca-more-viewsource"><a href="/w/index.php?title=Portal:Current_events&amp;action=edit"><span>View source</span></a></li><li class="vector-more-collapsible-item mw-list-item" id="ca-more-history"><a href="/w/index.php?title=Portal:Current_events&amp;action=history"><span>View history</span></a></li>
</ul>
</div>
</div>
<div class="vector-menu mw-portlet mw-portlet-tb" id="p-tb">
<div class="vector-menu-heading">
        General
    </div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="mw-list-item" id="t-whatlinkshere"><a accesskey="j" href="/wiki/Special:WhatLinksHere/Portal:Current_events" title="List of all English Wikipedia pages containing links to this page [j]"><span>What links here</span></a></li><li class="mw-list-item" id="t-recentchangeslinked"><a accesskey="k" href="/wiki/Special:RecentChangesLinked/Portal:Current_events" rel="nofollow" title="Recent changes in pages linked from this page [k]"><span>Related changes</span></a></li><li class="mw-list-item" id="t-upload"><a accesskey="u" href="/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]"><span>Upload file</span></a></li><li class="mw-list-item" id="t-specialpages"><a accesskey="q" href="/wiki/Special:SpecialPages" title="A list of all special pages [q]"><span>Special pages</span></a></li><li class="mw-list-item" id="t-permalink"><a href="/w/index.php?title=Portal:Current_events&amp;oldid=1234748158" title="Permanent link to this revision of this page"><span>Permanent link</span></a></li><li class="mw-list-item" id="t-info"><a href="/w/index.php?title=Portal:Current_events&amp;action=info" title="More information about this page"><span>Page information</span></a></li><li class="mw-list-item" id="t-urlshortener"><a href="/w/index.php?title=Special:UrlQ%C4%B1sald%C4%B1c%C4%B1s%C4%B1&amp;url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FPortal%3ACurrent_events"><span>Get shortened URL</span></a></li><li class="mw-list-item" id="t-urlshortener-qrcode"><a href="/w/index.php?title=Special:QrKodu&amp;url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FPortal%3ACurrent_events"><span>Download QR code</span></a></li>
</ul>
</div>
</div>
<div class="vector-menu mw-portlet mw-portlet-coll-print_export" id="p-coll-print_export">
<div class="vector-menu-heading">
        Print/export
    </div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="mw-list-item" id="coll-download-as-rl"><a href="/w/index.php?title=Special:DownloadAsPdf&amp;page=Portal%3ACurrent_events&amp;action=show-download-screen" title="Download this page as a PDF file"><span>Download as PDF</span></a></li><li class="mw-list-item" id="t-print"><a accesskey="p" href="/w/index.php?title=Portal:Current_events&amp;printable=yes" title="Printable version of this page [p]"><span>Printable version</span></a></li>
</ul>
</div>
</div>
<div class="vector-menu mw-portlet mw-portlet-wikibase-otherprojects" id="p-wikibase-otherprojects">
<div class="vector-menu-heading">
        In other projects
    </div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="wb-otherproject-link wb-otherproject-wikibase-dataitem mw-list-item" id="t-wikibase"><a accesskey="g" href="https://www.wikidata.org/wiki/Special:EntityPage/Q4597488" title="Structured data on this page hosted by Wikidata [g]"><span>Wikidata item</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
</div>
<div class="vector-column-end">
<div class="vector-sticky-pinned-container">
<nav aria-label="Page tools" class="vector-page-tools-landmark">
<div class="vector-pinned-container" id="vector-page-tools-pinned-container">
</div>
</nav>
<nav aria-label="Appearance" class="vector-appearance-landmark">
<div class="vector-pinned-container" id="vector-appearance-pinned-container">
<div class="vector-appearance vector-pinnable-element" id="vector-appearance">
<div class="vector-pinnable-header vector-appearance-pinnable-header vector-pinnable-header-pinned" data-feature-name="appearance-pinned" data-pinnable-element-id="vector-appearance" data-pinned-container-id="vector-appearance-pinned-container" data-unpinned-container-id="vector-appearance-unpinned-container">
<div class="vector-pinnable-header-label">Appearance</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-appearance.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-appearance.unpin">hide</button>
</div>
</div>
</div>
</nav>
</div>
</div>
<div aria-labelledby="firstHeading" class="vector-body" data-mw-ve-target-container="" id="bodyContent">
<div class="vector-body-before-content">
<div class="mw-indicators">
<div class="mw-indicator" id="mw-indicator-instructions"><div class="mw-parser-output"><span class="noprint" id="coordinates"><a href="/wiki/Portal:Current_events/Edit_instructions" title="Portal:Current events/Edit instructions">Edit instructions</a></span></div></div>
<div class="mw-indicator" id="mw-indicator-pp-default"><div class="mw-parser-output"><span typeof="mw:File"><a href="/wiki/Wikipedia:Protection_policy#full" title="This page is protected due to vandalism"><img alt="Page protected" class="mw-file-element" data-file-height="512" data-file-width="512" decoding="async" height="20" src="//upload.wikimedia.org/wikipedia/en/thumb/4/44/Full-protection-shackle.svg/20px-Full-protection-shackle.svg.png" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/44/Full-protection-shackle.svg/30px-Full-protection-shackle.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/44/Full-protection-shackle.svg/40px-Full-protection-shackle.svg.png 2x" width="20"/></a></span></div></div>
</div>
<div class="noprint" id="siteSub">From Wikipedia, the free encyclopedia</div>
</div>
<div id="contentSub"><div id="mw-content-subtitle"></div></div>
<div class="mw-body-content" id="mw-content-text"><div class="mw-content-ltr mw-parser-output" dir="ltr" lang="en"><style data-mw-deduplicate="TemplateStyles:r1214882031">.mw-parser-output .p-current-events-main{display:flex;flex-flow:row wrap;margin:0 -5px}.mw-parser-output .p-current-events-events{flex:100 1 200px;margin:0 5px}.mw-parser-output .p-current-events-calside{flex:1 100 250px;margin:0 5px}html.skin-theme-clientpref-night .mw-parser-output .p-current-events *:not(a){background:transparent!important;color:inherit!important}@media(prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .p-current-events *:not(a){background:transparent!important;color:inherit!important}}</style><div class="p-current-events"><div class="portal-maintenance-status" style="display:none;">
<style data-mw-deduplicate="TemplateStyles:r1238436933">.mw-parser-output .ombox{margin:4px 0;border-collapse:collapse;border:1px solid #a2a9b1;background-color:var(--background-color-neutral-subtle,#f8f9fa);box-sizing:border-box;color:var(--color-base,#202122)}.mw-parser-output .ombox.mbox-small{font-size:88%;line-height:1.25em}.mw-parser-output .ombox-speedy{border:2px solid #b32424;background-color:#fee7e6}.mw-parser-output .ombox-delete{border:2px solid #b32424}.mw-parser-output .ombox-content{border:1px solid #f28500}.mw-parser-output .ombox-style{border:1px solid #fc3}.mw-parser-output .ombox-move{border:1px solid #9932cc}.mw-parser-output .ombox-protection{border:2px solid #a2a9b1}.mw-parser-output .ombox .mbox-text{border:none;padding:0.25em 0.9em;width:100%}.mw-parser-output .ombox .mbox-image{border:none;padding:2px 0 2px 0.9em;text-align:center}.mw-parser-output .ombox .mbox-imageright{border:none;padding:2px 0.9em 2px 0;text-align:center}.mw-parser-output .ombox .mbox-empty-cell{border:none;padding:0;width:1px}.mw-parser-output .ombox .mbox-invalid-type{text-align:center}@media(min-width:720px){.mw-parser-output .ombox{margin:4px 10%}.mw-parser-output .ombox.mbox-small{clear:right;float:right;margin:4px 0 4px 1em;width:238px}}body.skin--responsive .mw-parser-output table.ombox img{max-width:none!important}@media screen{html.skin-theme-clientpref-night .mw-parser-output .ombox-speedy{background-color:#310402}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .ombox-speedy{background-color:#310402}}</style><table class="plainlinks ombox ombox-notice" role="presentation"><tbody><tr><td class="mbox-image"><span typeof="mw:File"><a class="mw-file-description" href="/wiki/File:Darkgreen_flag_waving.svg"><img class="mw-file-element" data-file-height="268" data-file-width="249" decoding="async" height="32" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Darkgreen_flag_waving.svg/30px-Darkgreen_flag_waving.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Darkgreen_flag_waving.svg/45px-Darkgreen_flag_waving.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Darkgreen_flag_waving.svg/60px-Darkgreen_flag_waving.svg.png 2x" width="30"/></a></span></td><td class="mbox-text"><span style="font-size:108%;"><b>Portal maintenance status:</b></span> <small>(October 2020)</small>
<ul><li>This portal's <a href="/wiki/Special:PrefixIndex/Portal:Current_events/" title="Special:PrefixIndex/Portal:Current events/">subpages</a> <b>have been checked</b> by an editor, and are needed.</li></ul>
<span style="font-size:90%;">Please <a class="mw-redirect" href="/wiki/Wikipedia:CAREFUL" title="Wikipedia:CAREFUL">take care</a> when editing, especially if using <a class="mw-redirect" href="/wiki/Wikipedia:ASSISTED" title="Wikipedia:ASSISTED">automated editing software</a>. Learn how to <a href="/wiki/Template:Portal_maintenance_status#How_to_update_the_maintenance_information_for_a_portal" title="Template:Portal maintenance status">update the maintenance information here</a>.</span></td></tr></tbody></table></div>
<style data-mw-deduplicate="TemplateStyles:r888483065">.mw-parser-output .portal-column-left{float:left;width:50%}.mw-parser-output .portal-column-right{float:right;width:49%}.mw-parser-output .portal-column-left-wide{float:left;width:60%}.mw-parser-output .portal-column-right-narrow{float:right;width:39%}.mw-parser-output .portal-column-left-extra-wide{float:left;width:70%}.mw-parser-output .portal-column-right-extra-narrow{float:right;width:29%}@media only screen and (max-width:800px){.mw-parser-output .portal-column-left,.mw-parser-output .portal-column-right,.mw-parser-output .portal-column-left-wide,.mw-parser-output .portal-column-right-narrow,.mw-parser-output .portal-column-left-extra-wide,.mw-parser-output .portal-column-right-extra-narrow{float:inherit;width:inherit}}</style><div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">Wikipedia portal for content related to Current events</div>
<div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">Wikimedia portal</div>
<style data-mw-deduplicate="TemplateStyles:r1208306225">.mw-parser-output .p-current-events-news-browser{display:flex;font-size:98%;box-sizing:border-box;margin-bottom:0.5em;border:1px solid #cedff2;padding:7px;background-color:#f5faff;color:#333;align-items:center}.mw-parser-output .p-current-events-news-browser img{min-width:32px}.mw-parser-output .p-current-events-news-browser ul{text-align:center;flex:1}@media all and (min-width:360px){.mw-parser-output .p-current-events-news-browser ul a{white-space:nowrap}}</style><style data-mw-deduplicate="TemplateStyles:r1129693374">.mw-parser-output .hlist dl,.mw-parser-output .hlist ol,.mw-parser-output .hlist ul{margin:0;padding:0}.mw-parser-output .hlist dd,.mw-parser-output .hlist dt,.mw-parser-output .hlist li{margin:0;display:inline}.mw-parser-output .hlist.inline,.mw-parser-output .hlist.inline dl,.mw-parser-output .hlist.inline ol,.mw-parser-output .hlist.inline ul,.mw-parser-output .hlist dl dl,.mw-parser-output .hlist dl ol,.mw-parser-output .hlist dl ul,.mw-parser-output .hlist ol dl,.mw-parser-output .hlist ol ol,.mw-parser-output .hlist ol ul,.mw-parser-output .hlist ul dl,.mw-parser-output .hlist ul ol,.mw-parser-output .hlist ul ul{display:inline}.mw-parser-output .hlist .mw-empty-li{display:none}.mw-parser-output .hlist dt::after{content:": "}.mw-parser-output .hlist dd::after,.mw-parser-output .hlist li::after{content:" · ";font-weight:bold}.mw-parser-output .hlist dd:last-child::after,.mw-parser-output .hlist dt:last-child::after,.mw-parser-output .hlist li:last-child::after{content:none}.mw-parser-output .hlist dd dd:first-child::before,.mw-parser-output .hlist dd dt:first-child::before,.mw-parser-output .hlist dd li:first-child::before,.mw-parser-output .hlist dt dd:first-child::before,.mw-parser-output .hlist dt dt:first-child::before,.mw-parser-output .hlist dt li:first-child::before,.mw-parser-output .hlist li dd:first-child::before,.mw-parser-output .hlist li dt:first-child::before,.mw-parser-output .hlist li li:first-child::before{content:" (";font-weight:normal}.mw-parser-output .hlist dd dd:last-child::after,.mw-parser-output .hlist dd dt:last-child::after,.mw-parser-output .hlist dd li:last-child::after,.mw-parser-output .hlist dt dd:last-child::after,.mw-parser-output .hlist dt dt:last-child::after,.mw-parser-output .hlist dt li:last-child::after,.mw-parser-output .hlist li dd:last-child::after,.mw-parser-output .hlist li dt:last-child::after,.mw-parser-output .hlist li li:last-child::after{content:")";font-weight:normal}.mw-parser-output .hlist ol{counter-reset:listitem}.mw-parser-output .hlist ol>li{counter-increment:listitem}.mw-parser-output .hlist ol>li::before{content:" "counter(listitem)"\a0 "}.mw-parser-output .hlist dd ol>li:first-child::before,.mw-parser-output .hlist dt ol>li:first-child::before,.mw-parser-output .hlist li ol>li:first-child::before{content:" ("counter(listitem)"\a0 "}</style><div class="hlist p-current-events-news-browser noprint">
<div><span typeof="mw:File"><a class="mw-file-description" href="/wiki/File:Ambox_globe_Asia_Australia.svg"><img alt="Globe icon" class="mw-file-element" data-file-height="512" data-file-width="512" decoding="async" height="32" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Ambox_globe_Asia_Australia.svg/32px-Ambox_globe_Asia_Australia.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Ambox_globe_Asia_Australia.svg/48px-Ambox_globe_Asia_Australia.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Ambox_globe_Asia_Australia.svg/64px-Ambox_globe_Asia_Australia.svg.png 2x" width="32"/></a></span></div>
<ul><li><a class="mw-selflink selflink">Worldwide current events</a></li>
<li><a href="/wiki/Portal:Current_events/Sports" title="Portal:Current events/Sports">Sports events</a></li>
<li><a href="/wiki/Deaths_in_2024" title="Deaths in 2024">Recent deaths</a></li>
<li><a href="/wiki/Wikipedia:Top_25_Report" title="Wikipedia:Top 25 Report">Entry views by week list</a></li></ul>
</div>
<div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">Wikimedia portal</div>
<style data-mw-deduplicate="TemplateStyles:r1209888154">.mw-parser-output .p-current-events-headlines{margin-bottom:0.5em;border:1px solid #cedff2;padding:0.4em;background-color:#f5faff;color:#333}.mw-parser-output .p-current-events-headlines h2{display:block;margin:-0.1em -0.1em 0.4em;border:none;padding:0.3em;background-color:#cedff2;font-size:12pt;line-height:inherit;font-family:inherit;font-weight:bold;color:inherit}.mw-parser-output .p-current-events-headlines::after{clear:both;content:"";display:table}</style>
<div aria-labelledby="Topics_in_the_news" class="p-current-events-headlines" role="region"><div class="mw-heading mw-heading2"><h2 id="Topics_in_the_news">Topics in the news</h2></div><style data-mw-deduplicate="TemplateStyles:r1053378754">.mw-parser-output .itn-img{float:right;margin-left:0.5em;margin-top:0.2em}</style><div class="itn-img" role="figure">
<div class="thumbinner mp-thumb" style="background: transparent; color: inherit; border: none; padding: 0; max-width: 171px;">
<span typeof="mw:File"><a class="mw-file-description" href="/wiki/File:20241214_ROK_NA_Speaker_Woo_Won_Shik_signing_the_resolution_to_impeach_President_Yoon_Suk_Yeol_02.jpg" title="Woo Won-shik, the speaker of the South Korean National Assembly, signing the impeachment resolution"><img alt="Woo Won-shik, the speaker of the South Korean National Assembly, signing the impeachment resolution" class="mw-file-element" data-file-height="854" data-file-width="1280" decoding="async" height="114" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a2/20241214_ROK_NA_Speaker_Woo_Won_Shik_signing_the_resolution_to_impeach_President_Yoon_Suk_Yeol_02.jpg/171px-20241214_ROK_NA_Speaker_Woo_Won_Shik_signing_the_resolution_to_impeach_President_Yoon_Suk_Yeol_02.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a2/20241214_ROK_NA_Speaker_Woo_Won_Shik_signing_the_resolution_to_impeach_President_Yoon_Suk_Yeol_02.jpg/257px-20241214_ROK_NA_Speaker_Woo_Won_Shik_signing_the_resolution_to_impeach_President_Yoon_Suk_Yeol_02.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a2/20241214_ROK_NA_Speaker_Woo_Won_Shik_signing_the_resolution_to_impeach_President_Yoon_Suk_Yeol_02.jpg/342px-20241214_ROK_NA_Speaker_Woo_Won_Shik_signing_the_resolution_to_impeach_President_Yoon_Suk_Yeol_02.jpg 2x" width="171"/></a></span><div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word; text-align: left;"><a href="/wiki/Woo_Won-shik" title="Woo Won-shik">Woo Won-shik</a>, the speaker of the South Korean National Assembly, signing the impeachment resolution</div></div>
</div>
<ul><li>In France, Dominique Pelicot and 50 other men are convicted of <b><a href="/wiki/Mazan_rapes" title="Mazan rapes">the mass rape</a></b> of his ex-wife <a href="/wiki/Gis%C3%A8le_Pelicot" title="Gisèle Pelicot">Gisèle Pelicot</a>.</li>
<li><b><a href="/wiki/2024_Port_Vila_earthquake" title="2024 Port Vila earthquake">A 7.3-magnitude earthquake</a></b> hits Vanuatu's capital, <a href="/wiki/Port_Vila" title="Port Vila">Port Vila</a>, leaving at least 16 people dead.</li>
<li>President of South Korea <a href="/wiki/Yoon_Suk_Yeol" title="Yoon Suk Yeol">Yoon Suk Yeol</a> is <b><a href="/wiki/Impeachment_of_Yoon_Suk_Yeol" title="Impeachment of Yoon Suk Yeol">impeached</a></b> <i>(signing pictured)</i> following <a href="/wiki/2024_South_Korean_martial_law_crisis" title="2024 South Korean martial law crisis">his declaration of martial law</a>.</li>
<li><i><a href="/wiki/Astro_Bot" title="Astro Bot">Astro Bot</a></i> wins <a href="/wiki/The_Game_Award_for_Game_of_the_Year" title="The Game Award for Game of the Year">Game of the Year</a> at <b><a href="/wiki/The_Game_Awards_2024" title="The Game Awards 2024">the Game Awards</a></b>.</li></ul>
<div class="itn-footer" style="margin-top: 0.5em;">
<div><b><a class="mw-selflink selflink">Ongoing</a></b>: <link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist inline">
<ul><li><a href="/wiki/Israel%E2%80%93Hamas_war" title="Israel–Hamas war">Israel–Hamas war</a></li>
<li><a href="/wiki/2024_Israeli_invasion_of_Lebanon" title="2024 Israeli invasion of Lebanon">Israeli invasion of Lebanon</a></li>
<li><a href="/wiki/Russian_invasion_of_Ukraine" title="Russian invasion of Ukraine">Russian invasion of Ukraine</a>
<ul><li><a href="/wiki/Timeline_of_the_Russian_invasion_of_Ukraine_(1_August_2024_%E2%80%93_present)" title="Timeline of the Russian invasion of Ukraine (1 August 2024 – present)">timeline</a></li></ul></li>
<li><a href="/wiki/Sudanese_civil_war_(2023%E2%80%93present)" title="Sudanese civil war (2023–present)">Sudanese civil war</a>
<ul><li><a href="/wiki/Timeline_of_the_Sudanese_civil_war_(2024)" title="Timeline of the Sudanese civil war (2024)">timeline</a></li></ul></li></ul></div></div>
<div><b><a href="/wiki/Deaths_in_2024" title="Deaths in 2024">Recent deaths</a></b>: <link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist inline">
<ul><li><a href="/wiki/Macoto_Takahashi" title="Macoto Takahashi">Macoto Takahashi</a></li>
<li><a href="/wiki/Papia_Sarwar" title="Papia Sarwar">Papia Sarwar</a></li>
<li><a href="/wiki/Wolfgang_Becker_(director,_born_1954)" title="Wolfgang Becker (director, born 1954)">Wolfgang Becker</a></li>
<li><a href="/wiki/Hugh_Cornish" title="Hugh Cornish">Hugh Cornish</a></li>
<li><a href="/wiki/Igor_Kirillov_(general)" title="Igor Kirillov (general)">Igor Kirillov</a></li>
<li><a href="/wiki/Khalil_Haqqani" title="Khalil Haqqani">Khalil Haqqani</a></li></ul></div></div></div>
<link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist itn-footer noprint" style="text-align:right;">
<ul><li><b><a href="/wiki/Wikipedia:In_the_news/Candidates" title="Wikipedia:In the news/Candidates">Nominate an article</a></b></li></ul>
</div>
</div>
<div class="p-current-events-main">
<div class="p-current-events-events">
<style data-mw-deduplicate="TemplateStyles:r1248507241">.mw-parser-output .current-events-main{margin:0.5em 0;padding:0.3em;background-color:var(--background-color-base,#fff);color:inherit;border:1px #cef2e0 solid}.mw-parser-output .current-events-heading{background-color:#cef2e0;color:inherit;font-weight:bold}@media screen{html.skin-theme-clientpref-night .mw-parser-output .current-events-heading{background-color:#0b281a}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .current-events-heading{background-color:#0b281a}}.mw-parser-output .current-events-title{padding:0.4em}.mw-parser-output .current-events-navbar{list-style:none;margin:0;font-size:small}.mw-parser-output .current-events-navbar li{display:inline-block;padding:0 0.4em}.mw-parser-output .current-events-content{padding:0 0.3em}.mw-parser-output .current-events-content-heading{margin-top:0.3em;font-weight:bold}.mw-parser-output .current-events-more{border-width:2px;font-size:10pt;font-weight:bold;padding:0.3em 0.6em}.mw-parser-output .current-events-nav{margin:auto;text-align:center;line-height:1.2}.mw-parser-output .current-events-nav a{display:inline-block;margin:0.5em;padding:0.5em;background-color:var(--background-color-neutral,#eaecf0)}.mw-parser-output .current-events-nav a>div{font-weight:bold}@media all and (min-width:480px){.mw-parser-output .current-events-heading{align-items:center;display:flex}.mw-parser-output .current-events-title{flex:1}.mw-parser-output .current-events-navbar{flex:0 auto;text-align:right;white-space:nowrap}.mw-parser-output .current-events-nav{max-width:22em}.mw-parser-output .current-events-nav a{width:9em}}</style><div class="current-events">
<div aria-label="December 20" class="current-events-main vevent" id="2024_December_20" role="region">
<div class="current-events-heading plainlinks">
<div class="current-events-title" role="heading"><span class="summary">December 20, 2024<span style="display:none"> (<span class="bday dtstart published updated itvstart">2024-12-20</span>)</span> (Friday)</span>
</div>
<ul class="current-events-navbar editlink noprint"><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_20&amp;action=edit&amp;editintro=Portal:Current_events/Edit_instructions">edit</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_20&amp;action=history">history</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_20&amp;action=watch">watch</a></li>
</ul>
</div>
<div class="current-events-content description">
<p><b>Armed conflicts and attacks</b>
</p>
<ul><li><a href="/wiki/Russian_invasion_of_Ukraine" title="Russian invasion of Ukraine">Russian invasion of Ukraine</a>
<ul><li><a href="/wiki/Kryvyi_Rih_strikes_(2022%E2%80%93present)" title="Kryvyi Rih strikes (2022–present)">Kryvyi Rih strikes</a>, <a href="/wiki/Kyiv_strikes_(2022%E2%80%93present)" title="Kyiv strikes (2022–present)">Kyiv strikes</a>
<ul><li>At least one person is killed and eight people are injured in <a href="/wiki/Russia" title="Russia">Russian</a> <a href="/wiki/Missile" title="Missile">missile</a> strikes on <a href="/wiki/Civilian" title="Civilian">civilian</a> infrastructure in <a href="/wiki/Kryvyi_Rih" title="Kryvyi Rih">Kryvyi Rih</a>, <a href="/wiki/Dnipropetrovsk_Oblast" title="Dnipropetrovsk Oblast">Dnipropetrovsk Oblast</a>, and <a href="/wiki/Kyiv" title="Kyiv">Kyiv</a>, <a href="/wiki/Ukraine" title="Ukraine">Ukraine</a>. <a class="external text" href="https://kyivindependent.com/kryvyi-rih-residential-building-hit-in-russian-rocket-attack-victims-excavated/" rel="nofollow">(<i>The Kyiv Independent</i>)</a> <a class="external text" href="https://www.reuters.com/business/aerospace-defense/russian-missile-attack-kyiv-injures-two-damages-buildings-officials-say-2024-12-20/" rel="nofollow">(Reuters)</a></li></ul></li>
<li><a href="/wiki/Attacks_in_Russia_during_the_Russian_invasion_of_Ukraine" title="Attacks in Russia during the Russian invasion of Ukraine">Attacks in Russia during the Russian invasion of Ukraine</a>, <a href="/wiki/2024_Kursk_offensive" title="2024 Kursk offensive">2024 Kursk offensive</a>
<ul><li>A Ukrainian <a href="/wiki/Missile" title="Missile">missile</a> strike kills six people and injures 10 others in <a href="/wiki/Rylsk,_Russia" title="Rylsk, Russia">Rylsk</a>, <a href="/wiki/Kursk_Oblast" title="Kursk Oblast">Kursk Oblast</a>, according to the region's governor <a href="/wiki/Alexander_Khinshtein" title="Alexander Khinshtein">Alexander Khinshtein</a>. Russia says it will raise the issue of the missile strike at the <a href="/wiki/United_Nations_Security_Council" title="United Nations Security Council">United Nations Security Council</a>. <a class="external text" href="https://www.reuters.com/world/europe/russia-says-people-were-killed-wounded-ukrainian-missile-attack-kursk-region-2024-12-20/" rel="nofollow">(Reuters)</a></li></ul></li></ul></li>
<li><a href="/wiki/2024_Magdeburg_car_attack" title="2024 Magdeburg car attack">2024 Magdeburg car attack</a>
<ul><li>Two people are killed and 68 more wounded during a <a href="/wiki/Vehicle-ramming_attack" title="Vehicle-ramming attack">vehicle-ramming attack</a> at a <a href="/wiki/Christmas" title="Christmas">Christmas</a> market in <a href="/wiki/Magdeburg" title="Magdeburg">Magdeburg</a>, <a href="/wiki/Germany" title="Germany">Germany</a>. The suspected perpetrator is arrested. <a class="external text" href="https://www.aljazeera.com/news/2024/12/20/two-dead-as-car-ploughs-into-christmas-market-crowd-in-germany" rel="nofollow">(Al Jazeera)</a> <a class="external text" href="https://www.blick.ch/breaking-news/anschlag-in-magdeburg-auto-rast-ueber-weihnachtsmarkt-11-tote-60-verletzte-id20431562.html" rel="nofollow">(Blick)</a></li></ul></li>
<li><a href="/wiki/Syrian_civil_war" title="Syrian civil war">Syrian civil war</a>
<ul><li><a href="/wiki/US_intervention_in_the_Syrian_civil_war" title="US intervention in the Syrian civil war">US intervention in the Syrian civil war</a>
<ul><li>US forces kill regional <a class="mw-redirect" href="/wiki/ISIS" title="ISIS">ISIS</a> leader Abu Yusif, also known as Mahmud, in an airstrike in <a href="/wiki/Deir_ez-Zor_Governorate" title="Deir ez-Zor Governorate">Deir ez-Zor Governorate</a>. <a class="external text" href="https://www.centcom.mil/MEDIA/PRESS-RELEASES/Press-Release-View/Article/4014610/centcom-forces-kill-isis-leader-during-precision-strike-in-syria/" rel="nofollow">(US CENTCOM)</a></li></ul></li></ul></li></ul>
<p><b>Disasters and accidents</b>
</p>
<ul><li><a href="/wiki/Malaysia_Airlines_Flight_370" title="Malaysia Airlines Flight 370">Malaysia Airlines Flight 370</a>
<ul><li><a href="/wiki/Search_for_Malaysia_Airlines_Flight_370" title="Search for Malaysia Airlines Flight 370">Search for Malaysia Airlines Flight 370</a>
<ul><li><a href="/wiki/Minister_of_Transport_(Malaysia)" title="Minister of Transport (Malaysia)">Malaysian Minister of Transport</a> <a href="/wiki/Anthony_Loke" title="Anthony Loke">Anthony Loke</a> announces a new search effort for Malaysia Airlines Flight 370, which went missing in March 2014, to be conducted by <a href="/wiki/Ocean_Infinity" title="Ocean Infinity">Ocean Infinity</a>. <a class="external text" href="https://www.dw.com/en/malaysia-to-resume-search-for-missing-mh370-plane/a-71115876" rel="nofollow">(DW)</a></li></ul></li></ul></li>
<li><a href="/wiki/2015_European_migrant_crisis" title="2015 European migrant crisis">European migrant crisis</a>
<ul><li>Eight people are killed and 18 more are rescued after a <a href="/wiki/Motorboat" title="Motorboat">speedboat</a> carrying migrants capsized off <a href="/wiki/Rhodes" title="Rhodes">Rhodes</a>' coast in <a href="/wiki/Greece" title="Greece">Greece</a>. <a class="external text" href="https://apnews.com/article/greece-migrations-migration-turkey-smuggling-deaths-fe8a791935f8eab2303aa16038939a5f" rel="nofollow">(AP)</a></li></ul></li>
<li>Twenty people are killed after a <a href="/wiki/Shipwreck" title="Shipwreck">shipwreck</a> off the coast of <a href="/wiki/Tunisia" title="Tunisia">Tunisia</a>. <a class="external text" href="https://apnews.com/article/tunisia-migration-shipwreck-sfax-mediterranean-border-europe-a9ba74391a7e14b98b11f7767fe5dcff" rel="nofollow">(AP)</a></li></ul>
<p><b>International relations</b>
</p>
<ul><li><a href="/wiki/Australia%E2%80%93Solomon_Islands_relations" title="Australia–Solomon Islands relations">Australia–Solomon Islands relations</a>
<ul><li><a href="/wiki/Australia" title="Australia">Australia</a> agrees to provide <a href="/wiki/Solomon_Islands" title="Solomon Islands">Solomon Islands</a> with a package of financing, training, and infrastructure support worth <a href="/wiki/Australian_dollar" title="Australian dollar">AU$</a>190 million (<a href="/wiki/United_States_dollar" title="United States dollar">US$</a>118 million) over four years to strengthen its <a href="/wiki/Royal_Solomon_Islands_Police_Force" title="Royal Solomon Islands Police Force">police force</a>, as part of a renewed security partnership between the two nations. <a class="external text" href="https://www.france24.com/en/live-news/20241220-australia-agrees-deal-to-finance-train-solomons-police" rel="nofollow">(France 24)</a></li></ul></li>
<li><a href="/wiki/Hungary%E2%80%93Poland_relations" title="Hungary–Poland relations">Hungary–Poland relations</a>
<ul><li><a href="/wiki/Poland" title="Poland">Poland</a>'s <a href="/wiki/Ministry_of_Foreign_Affairs_(Poland)" title="Ministry of Foreign Affairs (Poland)">Ministry of Foreign Affairs</a> summons <a href="/wiki/Hungary" title="Hungary">Hungary</a>'s ambassador to protest the <a class="mw-redirect" href="/wiki/Hungarian_government" title="Hungarian government">Hungarian government</a>'s decision to grant <a href="/wiki/Right_of_asylum" title="Right of asylum">asylum</a> to former Polish deputy <a href="/wiki/Ministry_of_Justice_(Poland)" title="Ministry of Justice (Poland)">justice minister</a> <a class="extiw" href="https://pl.wikipedia.org/wiki/Marcin_Romanowski" title="pl:Marcin Romanowski">Marcin Romanowski</a>, who is wanted for alleged <a href="/wiki/Corruption_in_Poland" title="Corruption in Poland">corruption</a>. Poland also recalls its ambassador to Hungary <a href="/wiki/Sebastian_K%C4%99ciek" title="Sebastian Kęciek">Sebastian Kęciek</a> for consultations. <a class="external text" href="https://apnews.com/article/poland-hungary-asylum-politician-dispute-6c528154f2ca2a67ef45fad333aa1984" rel="nofollow">(AP)</a></li></ul></li></ul>
<p><b>Law and crime</b>
</p>
<ul><li><a href="/wiki/2024_Zagreb_school_stabbing" title="2024 Zagreb school stabbing">2024 Zagreb school stabbing</a>
<ul><li>A child is killed and seven people are wounded during a <a href="/wiki/Mass_stabbing" title="Mass stabbing">mass stabbing</a> at a <a href="/wiki/Primary_school" title="Primary school">primary school</a> in <a href="/wiki/Zagreb" title="Zagreb">Zagreb</a>, <a href="/wiki/Croatia" title="Croatia">Croatia</a>. The 19-year-old perpetrator is arrested. <a class="external text" href="https://www.bbc.com/news/articles/cj6znexl7ljo" rel="nofollow">(BBC News)</a></li></ul></li>
<li>The <a href="/wiki/United_States" title="United States">United States</a> drops the $10m reward for the arrest of <a href="/wiki/Ahmed_al-Sharaa" title="Ahmed al-Sharaa">Ahmed al-Sharaa</a>, leader of the <a href="/wiki/Syria" title="Syria">Syrian</a> group <a href="/wiki/Hay%27at_Tahrir_al-Sham" title="Hay'at Tahrir al-Sham">Hay'at Tahrir al-Sham</a>. <a class="external text" href="https://www.aljazeera.com/news/2024/12/20/us-officials-on-first-diplomatic-trip-to-syria-since-al-assads-removal" rel="nofollow">(Al Jazeera)</a></li></ul>
<p><b>Politics and elections</b>
</p>
<ul><li><a href="/wiki/Politics_of_Italy" title="Politics of Italy">Politics of Italy</a>
<ul><li>The <a href="/wiki/Meloni_government" title="Meloni government">Government of Prime Minister</a> <a href="/wiki/Giorgia_Meloni" title="Giorgia Meloni">Giorgia Meloni</a> wins a lower house confidence vote on the 2025 budget <a class="external text" href="https://www.reuters.com/markets/europe/italy-govt-calls-confidence-vote-over-deficit-cutting-2025-budget-2024-12-19/" rel="nofollow">(Reuters)</a></li></ul></li>
<li><a href="/wiki/Politics_of_Macau" title="Politics of Macau">Politics of Macau</a>
<ul><li><a href="/wiki/Sam_Hou_Fai" title="Sam Hou Fai">Sam Hou Fai</a> is sworn in as the new <a href="/wiki/Chief_Executive_of_Macau" title="Chief Executive of Macau">Chief Executive</a> of <a class="mw-redirect" href="/wiki/Macau_Special_Administrative_Region" title="Macau Special Administrative Region">Macau Special Administrative Region</a>, <a href="/wiki/China" title="China">China</a>, suceeding <a href="/wiki/Ho_Iat_Seng" title="Ho Iat Seng">Ho Iat Seng</a>. <a class="external text" href="https://gbcode.rthk.hk/TuniS/news.rthk.hk/rthk/en/component/k2/1784304-20241220.htm" rel="nofollow">(RTHK)</a></li></ul></li>
<li><a href="/wiki/2025_United_States_federal_budget" title="2025 United States federal budget">2025 United States federal budget</a>
<ul><li>An amended <a href="/wiki/Bill_(United_States_Congress)" title="Bill (United States Congress)">congressional bill</a> supported by <a href="/wiki/President-elect_of_the_United_States" title="President-elect of the United States">US President-elect</a> <a href="/wiki/Donald_Trump" title="Donald Trump">Donald Trump</a> to enforce a two-year suspension of <a href="/wiki/United_States_debt_ceiling" title="United States debt ceiling">the federal debt ceiling</a> to an existing funding bill ensuring full operation of <a href="/wiki/Federal_government_of_the_United_States" title="Federal government of the United States">the U.S. federal government service</a> is rejected in the <a href="/wiki/Republican_Party_(United_States)" title="Republican Party (United States)">Republican majority</a> <a href="/wiki/United_States_House_of_Representatives" title="United States House of Representatives">U.S. House of Representatives</a>, with multiple House Republicans and nearly all House Democrats opposing. A <a href="/wiki/Government_shutdowns_in_the_United_States" title="Government shutdowns in the United States">government shutdown</a> is set to occur if no bill is passed by midnight. <a class="external text" href="https://www.bbc.com/news/articles/cz6l9e3jq7xo" rel="nofollow">(BBC)</a></li>
<li>Republican <a href="/wiki/Speaker_of_the_United_States_House_of_Representatives" title="Speaker of the United States House of Representatives">House Speaker</a> <a href="/wiki/Mike_Johnson" title="Mike Johnson">Mike Johnson</a> asserts that "[w]e will not have a government shutdown" as he prepares to reintroduce a funding bill without Donald Trump's debt ceiling repeal. <a class="external text" href="https://www.washingtonpost.com/politics/2024/12/20/government-shutdown-bill-house-trump-musk/" rel="nofollow">(Washington Post)</a></li></ul></li>
<li><a href="/wiki/2025_Belarusian_presidential_election" title="2025 Belarusian presidential election">2025 Belarusian presidential election</a>
<ul><li><a href="/wiki/Estonia" title="Estonia">Estonia</a> says it will not recognize the results of the upcoming <a href="/wiki/President_of_Belarus" title="President of Belarus">presidential election</a> in <a href="/wiki/Belarus" title="Belarus">Belarus</a>, which <a href="/wiki/Alexander_Lukashenko" title="Alexander Lukashenko">Alexander Lukashenko</a> is expected to win. <a class="external text" href="https://news.err.ee/1609556065/estonia-will-not-recognize-belarusian-presidential-elections-charade" rel="nofollow">(ERR)</a></li></ul></li></ul></div></div></div>
<link href="mw-data:TemplateStyles:r1248507241" rel="mw-deduplicated-inline-style"/><div class="current-events">
<div aria-label="December 19" class="current-events-main vevent" id="2024_December_19" role="region">
<div class="current-events-heading plainlinks">
<div class="current-events-title" role="heading"><span class="summary">December 19, 2024<span style="display:none"> (<span class="bday dtstart published updated itvstart">2024-12-19</span>)</span> (Thursday)</span>
</div>
<ul class="current-events-navbar editlink noprint"><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_19&amp;action=edit&amp;editintro=Portal:Current_events/Edit_instructions">edit</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_19&amp;action=history">history</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_19&amp;action=watch">watch</a></li>
</ul>
</div>
<div class="current-events-content description">
<p><b>Armed conflicts and attacks</b>
</p>
<ul><li><a href="/wiki/Syrian_civil_war" title="Syrian civil war">Syrian civil war</a>
<ul><li><a href="/wiki/Fall_of_the_Assad_regime" title="Fall of the Assad regime">Fall of the Assad regime</a>
<ul><li><a href="/wiki/Deir_ez-Zor_offensive_(2024)" title="Deir ez-Zor offensive (2024)">Deir ez-Zor offensive</a>, <a href="/wiki/Eastern_Syria_insurgency" title="Eastern Syria insurgency">Eastern Syria insurgency</a>
<ul><li><a href="/wiki/Minister_of_Foreign_Affairs_(Iraq)" title="Minister of Foreign Affairs (Iraq)">Iraqi foreign minister</a> <a href="/wiki/Fuad_Hussein" title="Fuad Hussein">Fuad Hussein</a> warns that <a href="/wiki/Islamic_State" title="Islamic State">ISIS</a> cells in <a href="/wiki/Syria" title="Syria">Syria</a> have begun reorganizing and taking new land following the collapse of the <a href="/wiki/Syrian_Armed_Forces" title="Syrian Armed Forces">Syrian Armed Forces</a> and subsequent abandonment of weapons depots. <a class="external text" href="https://asharq.com/sub-live/politics/34682/%D8%A7%D9%84%D8%B9%D8%B1%D8%A7%D9%82-%D8%AF%D8%A7%D8%B9%D8%B4-%D9%8A%D9%88%D8%B3%D8%B9-%D8%B3%D9%8A%D8%B7%D8%B1%D8%AA%D9%87-%D8%A8%D8%B9%D8%AF-%D8%A7%D8%B3%D8%AA%D9%8A%D9%84%D8%A7%D8%A6%D9%87-%D8%B9%D9%84%D9%89-%D8%A3%D8%B3%D9%84%D8%AD%D8%A9-%D8%B9%D9%82%D8%A8-%D8%A7%D9%86%D9%87%D9%8A%D8%A7%D8%B1-%D8%A7%D9%84%D8%AC%D9%8A%D8%B4-%D8%A7%D9%84%D8%B3%D9%88%D8%B1%D9%8A/" rel="nofollow">(<i>Asharq News</i>)</a></li></ul></li>
<li>Baniyas oil refinery, Syria’s largest refinery, stops operating after ceasing to receive the crude from Iran that previously made up the vast majority of the country’s input <a class="external text" href="https://www.ft.com/content/9d65fb40-a389-42ad-b9c5-42533a276dde" rel="nofollow">(Financial Times)</a></li></ul></li>
<li><a href="/wiki/Operation_Dawn_of_Freedom" title="Operation Dawn of Freedom">Operation Dawn of Freedom</a>, <a href="/wiki/Turkish_involvement_in_the_Syrian_civil_war" title="Turkish involvement in the Syrian civil war">Turkish involvement in the Syrian civil war</a>
<ul><li><a href="/wiki/2024_Kobani_clashes" title="2024 Kobani clashes">2024 Kobani clashes</a>
<ul><li><a class="mw-redirect" href="/wiki/U.S." title="U.S.">U.S.</a>-backed <a href="/wiki/Syrian_Democratic_Forces" title="Syrian Democratic Forces">SDF</a> militias vow to fight <a href="/wiki/Turkey" title="Turkey">Turkey</a> and pro-Turkish <a href="/wiki/Syrian_National_Army" title="Syrian National Army">rebel groups</a> in <a href="/wiki/Kobani" title="Kobani">Kobani</a>, <a href="/wiki/Aleppo_Governorate" title="Aleppo Governorate">Aleppo Governorate</a>. <a class="external text" href="https://www.reuters.com/world/middle-east/us-backed-syrian-democratic-forces-say-they-will-fight-turkey-allied-groups-2024-12-19/" rel="nofollow">(Reuters)</a></li></ul></li></ul></li>
<li><a href="/wiki/2024_Syrian_opposition_offensives" title="2024 Syrian opposition offensives">2024 Syrian opposition offensives</a>
<ul><li><a href="/wiki/Ahmed_al-Sharaa" title="Ahmed al-Sharaa">Ahmed al-Sharaa</a>, the <a href="/wiki/Emir" title="Emir">emir</a> of <a href="/wiki/Hay%27at_Tahrir_al-Sham" title="Hay'at Tahrir al-Sham">Hay'at Tahrir al-Sham</a>, makes an announcement claiming that the country is exhausted by <a href="/wiki/Perpetual_war" title="Perpetual war">perpetual warfare</a> and is no longer a threat to <a href="/wiki/Middle_East" title="Middle East">its neighbors</a> or to the <a href="/wiki/Western_world" title="Western world">Western world</a>. <a class="external text" href="https://www.bbc.com/news/articles/c05p9g2nqmeo" rel="nofollow">(BBC News)</a></li>
<li><a href="/wiki/Military_Operations_Command" title="Military Operations Command">Military Operations Command</a> forces take control of several towns in <a class="mw-redirect" href="/wiki/Raqqah_Governorate" title="Raqqah Governorate">Raqqah Governorate</a>. <a class="external text" href="https://www.syriahr.com/en/351837/" rel="nofollow">(SOHR)</a></li>
<li><a href="/wiki/Iraq" title="Iraq">Iraq</a> announces the repatriation of members of the <a href="/wiki/Syrian_Armed_Forces" title="Syrian Armed Forces">Syrian Armed Forces</a> who fled after the <a href="/wiki/Fall_of_the_Assad_regime" title="Fall of the Assad regime">fall of the Assad regime</a> from <a href="/wiki/Anbar_(town)" title="Anbar (town)">Anbar</a>, Iraq, back to Syria. <a class="external text" href="https://english.alarabiya.net/News/middle-east/2024/12/19/iraq-starts-to-send-syrian-soldiers-back-home" rel="nofollow">(Al Arabiya)</a></li></ul></li>
<li><a href="/wiki/Russian_intervention_in_the_Syrian_civil_war" title="Russian intervention in the Syrian civil war">Russian intervention in the Syrian civil war</a>
<ul><li><a href="/wiki/Satellite_imagery" title="Satellite imagery">Satellite imagery</a> reveals that <a href="/wiki/Russian_Armed_Forces" title="Russian Armed Forces">Russian forces</a> are mobilizing heavy planes at <a href="/wiki/Khmeimim_Air_Base" title="Khmeimim Air Base">Khmeimim Air Base</a> in <a href="/wiki/Latakia_Governorate" title="Latakia Governorate">Latakia Governorate</a> and are also mobilizing ships at <a href="/wiki/Tartus_naval_base" title="Tartus naval base">Tartus naval base</a>, indicating a potential <a href="/wiki/Withdrawal_(military)" title="Withdrawal (military)">withdrawal</a>. <a class="external text" href="https://www.bbc.com/news/articles/cm2ev2prep2o" rel="nofollow">(BBC News)</a></li>
<li><a class="mw-redirect" href="/wiki/Abdul_Hamid_Dbeibah" title="Abdul Hamid Dbeibah">Abdul Hamid Dbeibah</a>, the <a class="mw-redirect" href="/wiki/Prime_Minister_of_Libya" title="Prime Minister of Libya">Prime Minister</a> of the <a href="/wiki/Tripoli,_Libya" title="Tripoli, Libya">Tripoli</a>-based <a href="/wiki/Government_of_National_Unity_(Libya)" title="Government of National Unity (Libya)">Government of National Unity</a> of <a href="/wiki/Libya" title="Libya">Libya</a>, denounces the entry of <a href="/wiki/Russia" title="Russia">Russian</a> forces from Syria into the eastern part of Libya. <a class="external text" href="https://libyaobserver.ly/news/pm-dbeibah-rejects-entry-russian-forces-libya-coming-syria" rel="nofollow">(<i>The Libya Observer</i>)</a></li>
<li><a href="/wiki/President_of_Russia" title="President of Russia">Russian president</a> <a href="/wiki/Vladimir_Putin" title="Vladimir Putin">Vladimir Putin</a> says that <a href="/wiki/Russia" title="Russia">Russia</a> helped evacuate 4,000 <a href="/wiki/Iran" title="Iran">Iranian</a> fighters from Syria. <a class="external text" href="https://www.aa.com.tr/en/europe/putin-says-russia-evacuated-4-000-iranian-fighters-from-syria/3428955" rel="nofollow">(Anadolu Agency)</a></li></ul></li>
<li><a href="/wiki/Prosecution_of_Syrian_civil_war_criminals" title="Prosecution of Syrian civil war criminals">Prosecution of Syrian civil war criminals</a>
<ul><li>The <a href="/wiki/Syrian_Interim_Government" title="Syrian Interim Government">Syrian Interim Government</a> announces that they have begun preparing lists of people from the <a href="/wiki/Ba%27athist_Syria" title="Ba'athist Syria">former regime</a> who were involved in <a href="/wiki/War_crimes_in_the_Syrian_civil_war" title="War crimes in the Syrian civil war">war crimes</a>, torture, and murder. <a class="external text" href="https://www.jpost.com/breaking-news/article-834146" rel="nofollow">(<i>The Jerusalem Post</i>)</a></li></ul></li></ul></li>
<li><a href="/wiki/Israel%E2%80%93Hamas_war" title="Israel–Hamas war">Israel–Hamas war</a>
<ul><li><a href="/wiki/Gaza_genocide" title="Gaza genocide">Gaza genocide</a>, <a class="mw-redirect" href="/wiki/Israeli_blockade_of_the_Gaza_Strip" title="Israeli blockade of the Gaza Strip">Israeli blockade of the Gaza Strip</a>
<ul><li><a href="/wiki/Human_Rights_Watch" title="Human Rights Watch">Human Rights Watch</a> accuses <a href="/wiki/Israel" title="Israel">Israel</a> of committing "acts of <a href="/wiki/Genocide" title="Genocide">genocide</a>" in <a href="/wiki/Gaza_Strip" title="Gaza Strip">Gaza</a> by damaging <a href="/wiki/Water_supply_network" title="Water supply network">water supply infrastructure</a> and depriving civilians of <a href="/wiki/Water_resources" title="Water resources">clean water</a>. <a class="external text" href="https://www.dw.com/en/israel-accused-of-acts-of-genocide-over-gaza-water-access/a-71106235" rel="nofollow">(DW)</a> <a class="external text" href="https://www.reuters.com/world/middle-east/human-rights-watch-says-israels-deprivation-water-gaza-is-act-genocide-2024-12-19/" rel="nofollow">(Reuters)</a> <a class="external text" href="https://www.hrw.org/news/2024/12/19/israels-crime-extermination-acts-genocide-gaza" rel="nofollow">(Human Rights Watch)</a></li></ul></li></ul></li>
<li><a href="/wiki/Red_Sea_crisis" title="Red Sea crisis">Red Sea crisis</a>
<ul><li><a href="/wiki/December_2024_Israeli_airstrikes_in_Yemen" title="December 2024 Israeli airstrikes in Yemen">December 2024 Israeli airstrikes in Yemen</a>
<ul><li><a href="/wiki/Israel" title="Israel">Israel</a> carries out a series of <a href="/wiki/Airstrike" title="Airstrike">airstrikes</a> against the <a href="/wiki/Houthi_movement" title="Houthi movement">Houthis</a> in western <a href="/wiki/Yemen" title="Yemen">Yemen</a>, damaging the <a href="/wiki/Marib%E2%80%93Ras_Isa_oil_pipeline" title="Marib–Ras Isa oil pipeline">Ras Isa oil facility</a>, the port of <a href="/wiki/As-Salif" title="As-Salif">as-Salif</a>, and several <a href="/wiki/Power_station" title="Power station">power stations</a>, and killing at least nine people. <a class="external text" href="https://www.aljazeera.com/news/2024/12/19/israel-carries-out-air-strikes-on-yemen" rel="nofollow">(Al Jazeera)</a></li></ul></li>
<li>The <a href="/wiki/United_States_Department_of_the_Treasury" title="United States Department of the Treasury">United States Department of the Treasury</a> announces sanctions on the governor of the <a href="/wiki/Central_Bank_of_Yemen" title="Central Bank of Yemen">Central Bank of Yemen</a> in <a href="/wiki/Sanaa" title="Sanaa">Sanaa</a>, Yemen, and several Houthi officials and associated companies and vessels, accusing them of trafficking <a href="/wiki/Dual-use_technology" title="Dual-use technology">dual-use</a> weapon components and <a href="/wiki/Iran" title="Iran">Iranian</a> <a href="/wiki/Petroleum" title="Petroleum">petroleum</a> to the Houthis. <a class="external text" href="https://www.aljazeera.com/news/2024/12/19/us-imposes-more-sanctions-on-yemens-houthis-amid-escalation-with-israel" rel="nofollow">(Al Jazeera)</a> <a class="external text" href="https://www.jns.org/us-announces-sanctions-on-19-people-entities-for-supporting-iran-houthis/" rel="nofollow">(JNS)</a></li></ul></li>
<li><a href="/wiki/Mexican_drug_war" title="Mexican drug war">Mexican drug war</a>
<ul><li>Two <a href="/wiki/Mexican_Army" title="Mexican Army">soldiers</a> are killed after an explosion caused by a <a href="/wiki/Improvised_explosive_device" title="Improvised explosive device">improvised landmine</a> at a <a href="/wiki/Clandestine_chemistry" title="Clandestine chemistry">drug laboratory</a> in <a href="/wiki/Michoac%C3%A1n" title="Michoacán">Michoacán</a>, <a href="/wiki/Mexico" title="Mexico">Mexico</a>. Three days ago, two other soldiers were killed and three more injured in Michoacán during a similiar incident. <a class="external text" href="https://apnews.com/article/mexico-explosives-soldiers-killed-ieds-bomb-michoacan-de63fe119d1d0f32154b1b47b9113a01" rel="nofollow">(AP)</a></li></ul></li>
<li><a href="/wiki/Russian_invasion_of_Ukraine" title="Russian invasion of Ukraine">Russian invasion of Ukraine</a>
<ul><li><a href="/wiki/List_of_military_aid_to_Ukraine_during_the_Russo-Ukrainian_War" title="List of military aid to Ukraine during the Russo-Ukrainian War">Military aids during the Russian invasion of Ukraine</a>, <a href="/wiki/United_Kingdom_and_the_Russian_invasion_of_Ukraine" title="United Kingdom and the Russian invasion of Ukraine">United Kingdom and the Russian invasion of Ukraine</a>
<ul><li><a href="/wiki/Secretary_of_State_for_Defence" title="Secretary of State for Defence">British defence secretary</a> <a href="/wiki/John_Healey" title="John Healey">John Healey</a> announces a proposal to send <a href="/wiki/British_Armed_Forces" title="British Armed Forces">military advisors</a> to train <a href="/wiki/Armed_Forces_of_Ukraine" title="Armed Forces of Ukraine">Ukrainian forces</a>. <a class="external text" href="https://www.bbc.com/news/articles/c878ypxgl3qo" rel="nofollow">(BBC News)</a></li></ul></li></ul></li>
<li><a href="/wiki/2024_Parliament_of_Abkhazia_shooting" title="2024 Parliament of Abkhazia shooting">2024 Parliament of Abkhazia shooting</a>
<ul><li>A <a href="/wiki/Legislator" title="Legislator">lawmaker</a> is killed and another is injured in a shooting inside the <a href="/wiki/People%27s_Assembly_of_Abkhazia" title="People's Assembly of Abkhazia">Parliament</a> in <a href="/wiki/Sukhumi" title="Sukhumi">Sukhumi</a>, <a href="/wiki/Abkhazia" title="Abkhazia">Abkhazia</a>. The perpetrator, identified as MP and former Sukhumi mayor <a href="/wiki/Adgur_Kharazia" title="Adgur Kharazia">Adgur Kharazia</a>, flees the scene. <a class="external text" href="https://www.aljazeera.com/news/2024/12/19/lawmaker-shot-dead-in-parliament-in-breakaway-georgian-region-of-abkhazia" rel="nofollow">(Al Jazeera)</a></li></ul></li></ul>
<p><b>Business and economy</b>
</p>
<ul><li><a href="/wiki/Syria" title="Syria">Syria</a>'s largest oil refinery suspends operations due to the suspension of <a href="/wiki/Petroleum" title="Petroleum">crude oil</a> shipments from <a href="/wiki/Iran" title="Iran">Iran</a>, which previously accounted for the majority of the refinery's supply. <a class="external text" href="https://www.ft.com/content/9d65fb40-a389-42ad-b9c5-42533a276dde" rel="nofollow">(<i>Financial Times</i>)</a></li></ul>
<p><b>Disasters and accidents</b>
</p>
<ul><li><a href="/wiki/2024%E2%80%9325_South-West_Indian_Ocean_cyclone_season" title="2024–25 South-West Indian Ocean cyclone season">2024–25 South-West Indian Ocean cyclone season</a>
<ul><li>The death toll from <a href="/wiki/Cyclone_Chido" title="Cyclone Chido">Cyclone Chido</a> in <a href="/wiki/Mozambique" title="Mozambique">Mozambique</a> increase to 73, including 66 in <a href="/wiki/Cabo_Delgado_Province" title="Cabo Delgado Province">Cabo Delgado Province</a>. <a class="external text" href="https://www.aljazeera.com/news/2024/12/19/cyclone-chido-death-toll-in-mozambique-rises-to-73" rel="nofollow">(Al Jazeera)</a></li></ul></li>
<li>Nine people are killed during a fire at a building under construction in <a href="/wiki/Taichung" title="Taichung">Taichung</a>, <a href="/wiki/Taiwan" title="Taiwan">Taiwan</a>. <a class="external text" href="https://apnews.com/article/taiwan-taichung-fire-px-mart-supermarket-foam-bd06e5c2992a6a048ad8203749e945eb" rel="nofollow">(AP)</a></li></ul>
<p><b>International relations</b>
</p>
<ul><li><a href="/wiki/China%E2%80%93India_relations" title="China–India relations">China–India relations</a>
<ul><li><a href="/wiki/Sino-Indian_border_dispute" title="Sino-Indian border dispute">Sino-Indian border dispute</a>
<ul><li><a href="/wiki/National_Security_Advisor_(India)" title="National Security Advisor (India)">Indian national security advisor</a> <a href="/wiki/Ajit_Doval" title="Ajit Doval">Ajit Doval</a> and <a href="/wiki/Minister_of_Foreign_Affairs_(China)" title="Minister of Foreign Affairs (China)">Chinese foreign minister</a> <a href="/wiki/Wang_Yi_(politician)" title="Wang Yi (politician)">Wang Yi</a> meet in <a href="/wiki/Beijing" title="Beijing">Beijing</a>, <a href="/wiki/China" title="China">China</a>, and reach a six-point consensus to maintain peace along the border, refine border management rules, resume cross-border exchanges, and work toward resolving border disputes. A follow-up meeting is planned to be held in <a href="/wiki/India" title="India">India</a> next year. <a class="external text" href="https://edition.cnn.com/2024/12/18/asia/china-india-resume-border-talks-intl-hnk/index.html" rel="nofollow">(CNN)</a></li></ul></li></ul></li>
<li><a href="/wiki/Georgia%E2%80%93United_Kingdom_relations" title="Georgia–United Kingdom relations">Georgia–United Kingdom relations</a>, <a href="/wiki/Georgia%E2%80%93United_States_relations" title="Georgia–United States relations">Georgia–United States relations</a>, <a href="/wiki/2024_Georgian_post-election_protests" title="2024 Georgian post-election protests">2024 Georgian post-election protests</a>
<ul><li>The <a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a> and the United States impose sanctions on <a href="/wiki/Georgia_(country)" title="Georgia (country)">Georgian</a> officials, including <a href="/wiki/Ministry_of_Internal_Affairs_of_Georgia" title="Ministry of Internal Affairs of Georgia">Interior Minister</a> <a href="/wiki/Vakhtang_Gomelauri" title="Vakhtang Gomelauri">Vakhtang Gomelauri</a>, in response to alleged violent crackdowns on <a href="/wiki/Pro-Europeanism" title="Pro-Europeanism">pro-European</a> protests. <a class="external text" href="https://efe.com/en/latest-news/2024-12-19/us-uk-sanction-georgian-minister-of-internal-affairs-over-crackdown-on-protests/" rel="nofollow">(EFE)</a></li></ul></li>
<li><a href="/wiki/Hungary%E2%80%93Poland_relations" title="Hungary–Poland relations">Hungary–Poland relations</a>
<ul><li><a href="/wiki/Hungary" title="Hungary">Hungary</a> grants <a class="mw-redirect" href="/wiki/Political_asylum" title="Political asylum">political asylum</a> to former <a href="/wiki/Poland" title="Poland">Polish</a> deputy <a href="/wiki/Ministry_of_Justice_(Poland)" title="Ministry of Justice (Poland)">justice minister</a> <a class="extiw" href="https://pl.wikipedia.org/wiki/Marcin_Romanowski" title="pl:Marcin Romanowski">Marcin Romanowski</a>, who faces allegations of <a href="/wiki/Corruption_in_Poland" title="Corruption in Poland">corruption in Poland</a>. <a class="external text" href="https://www.reuters.com/world/europe/hungary-grants-asylum-former-polish-deputy-minister-romanowski-says-orbans-chief-2024-12-20/" rel="nofollow">(Reuters)</a></li></ul></li>
<li><a href="/wiki/France" title="France">France</a>'s <a href="/wiki/Directorate-General_for_External_Security" title="Directorate-General for External Security">Directorate-General for External Security</a> reports that four French nationals detained in <a href="/wiki/Burkina_Faso" title="Burkina Faso">Burkina Faso</a> on allegations of being foreign <a href="/wiki/Espionage" title="Espionage">intelligence agents</a> have been released following mediation by <a href="/wiki/Morocco" title="Morocco">Morocco</a>. <a class="external text" href="https://abcnews.go.com/International/wireStory/burkina-faso-releases-french-nationals-after-detaining-year-116937449" rel="nofollow">(ABC News)</a></li></ul>
<p><b>Law and crime</b>
</p>
<ul><li><a href="/wiki/2024_Northeastern_United_States_drone_sightings" title="2024 Northeastern United States drone sightings">2024 Northeastern United States drone sightings</a>
<ul><li>The <a class="mw-redirect" href="/wiki/U.S." title="U.S.">U.S.</a> <a href="/wiki/Federal_Aviation_Administration" title="Federal Aviation Administration">Federal Aviation Administration</a> bans the flying of drones over multiple cities in <a href="/wiki/New_Jersey" title="New Jersey">New Jersey</a> citing "special security reasons". <a class="external text" href="https://6abc.com/post/drones-restrictions-effect-amid-ongoing-sightings-new-jersey/15675675/" rel="nofollow">(WPVI-TV)</a></li></ul></li>
<li><a href="/wiki/Deportation_and_removal_from_the_United_States" title="Deportation and removal from the United States">Deportation and removal from the United States</a>
<ul><li>The <a href="/wiki/U.S._Immigration_and_Customs_Enforcement" title="U.S. Immigration and Customs Enforcement">U.S. Immigration and Customs Enforcement</a> agency reports 271,484 <a href="/wiki/Deportation" title="Deportation">deportations</a> in the past <a href="/wiki/Fiscal_year" title="Fiscal year">fiscal year</a>, the most since 2014 and almost double of the previous fiscal year. <a class="external text" href="https://apnews.com/article/immigration-deportations-trump-mexico-ice-e09b2f8b9eb5e91ebc8f143748f0021a" rel="nofollow">(AP)</a> <a class="external text" href="https://www.foxnews.com/politics/ice-deportations-catch-up-trump-era-numbers-fy-2024-biden-admin-comes-close" rel="nofollow">(FOX News)</a></li></ul></li>
<li><a href="/wiki/Mazan_rapes" title="Mazan rapes">Mazan rapes</a>
<ul><li>The <a href="/wiki/French_judiciary_courts" title="French judiciary courts">Judicial Court</a> in <a href="/wiki/Avignon" title="Avignon">Avignon</a>, <a href="/wiki/France" title="France">France</a>, finds Dominique Pelicot guilty of the aggravated <a href="/wiki/Rape" title="Rape">rape</a> of his ex-wife <a href="/wiki/Gis%C3%A8le_Pelicot" title="Gisèle Pelicot">Gisèle Pelicot</a>, and imposes the maximum sentence of 20 years in prison. The 50 other defendants in the case are also convicted of crimes ranging from attempted rape to aggravated rape, and receive prison sentences ranging from three to 15 years. <a class="external text" href="https://www.reuters.com/world/europe/verdict-due-gisele-pelicot-rape-case-that-horrified-world-2024-12-19/" rel="nofollow">(Reuters)</a></li></ul></li>
<li>A <a href="/wiki/High_court_(Malaysia)" title="High court (Malaysia)">Malaysian high court</a> acquits <a href="/wiki/Rosmah_Mansor" title="Rosmah Mansor">Rosmah Mansor</a>, the wife of former <a href="/wiki/Prime_Minister_of_Malaysia" title="Prime Minister of Malaysia">prime minister</a> <a href="/wiki/Najib_Razak" title="Najib Razak">Najib Razak</a>, of 17 charges of <a href="/wiki/Money_laundering" title="Money laundering">money laundering</a> and <a href="/wiki/Tax_evasion" title="Tax evasion">tax evasion</a> due to <a href="/wiki/Burden_of_proof_(law)" title="Burden of proof (law)">insufficient evidence</a>. <a class="external text" href="https://www.reuters.com/world/asia-pacific/malaysian-court-acquits-wife-ex-pm-najib-money-laundering-tax-evasion-2024-12-19/" rel="nofollow">(Reuters)</a></li></ul>
<p><b>Politics and elections</b>
</p>
<ul><li><a href="/wiki/Aleksandar_%C5%A0api%C4%87" title="Aleksandar Šapić">Aleksandar Šapić</a>, the mayor of <a href="/wiki/Belgrade" title="Belgrade">Belgrade</a>, <a href="/wiki/Serbia" title="Serbia">Serbia</a>, announces the city will make all <a href="/wiki/Transport_in_Belgrade" title="Transport in Belgrade">public transit</a> free on January 1, 2025. <a class="external text" href="https://www.dw.com/en/belgrade-to-make-public-transport-free-from-january-1/a-71102418" rel="nofollow">(DW)</a> <a class="external text" href="https://www.novinite.com/articles/229958/" rel="nofollow">(Novinite)</a></li></ul></div></div></div>
<link href="mw-data:TemplateStyles:r1248507241" rel="mw-deduplicated-inline-style"/><div class="current-events">
<div aria-label="December 18" class="current-events-main vevent" id="2024_December_18" role="region">
<div class="current-events-heading plainlinks">
<div class="current-events-title" role="heading"><span class="summary">December 18, 2024<span style="display:none"> (<span class="bday dtstart published updated itvstart">2024-12-18</span>)</span> (Wednesday)</span>
</div>
<ul class="current-events-navbar editlink noprint"><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_18&amp;action=edit&amp;editintro=Portal:Current_events/Edit_instructions">edit</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_18&amp;action=history">history</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_18&amp;action=watch">watch</a></li>
</ul>
</div>
<div class="current-events-content description">
<p><b>Armed conflicts and attacks</b>
</p>
<ul><li><a href="/wiki/Syrian_civil_war" title="Syrian civil war">Syrian civil war</a>
<ul><li><a href="/wiki/Syrian_opposition" title="Syrian opposition">Syrian opposition</a>
<ul><li><a href="/wiki/Hadi_al-Bahra" title="Hadi al-Bahra">Hadi al-Bahra</a>, President of the <a href="/wiki/National_Coalition_of_Syrian_Revolutionary_and_Opposition_Forces" title="National Coalition of Syrian Revolutionary and Opposition Forces">National Coalition of Syrian Revolutionary and Opposition Forces</a>, says that the coalition will dissolve once a national conference is convened and a constituent assembly is elected, and demands that the current <a href="/wiki/Syrian_transitional_government" title="Syrian transitional government">transitional government</a> be "credible, inclusive and not founded on sectarian bases". <a class="external text" href="https://npasyria.com/en/119908/" rel="nofollow">(North Press Agency)</a></li></ul></li></ul></li>
<li><a href="/wiki/Armenia%E2%80%93Azerbaijan_border_crisis_(2021%E2%80%93present)" title="Armenia–Azerbaijan border crisis (2021–present)">Armenia–Azerbaijan border crisis</a>
<ul><li><a href="/wiki/President_of_Azerbaijan" title="President of Azerbaijan">Azerbaijani President</a> <a href="/wiki/Ilham_Aliyev" title="Ilham Aliyev">Ilham Aliyev</a> says that arms sent by <a href="/wiki/France" title="France">France</a> to <a href="/wiki/Armenia" title="Armenia">Armenia</a> pose a threat to <a href="/wiki/Azerbaijan" title="Azerbaijan">Azerbaijan</a>. <a class="external text" href="https://en.trend.az/azerbaijan/politics/3983542.html" rel="nofollow">(Trend News Agency)</a></li></ul></li></ul>
<p><b>Disasters and accidents</b>
</p>
<ul><li><a href="/wiki/2024_San_Fernando_Airport_runway_excursion" title="2024 San Fernando Airport runway excursion">2024 San Fernando Airport runway excursion</a>
<ul><li>A <a href="/wiki/Bombardier_Challenger_300" title="Bombardier Challenger 300">Bombardier Challenger 300</a> aircraft, registration LV-GOK from <a href="/wiki/Punta_del_Este" title="Punta del Este">Punta del Este</a>, <a href="/wiki/Uruguay" title="Uruguay">Uruguay</a>, suffered an excursion and went off the runway while trying to land at the <a href="/wiki/San_Fernando_International_Airport" title="San Fernando International Airport">San Fernando International Airport</a> in the <a class="mw-redirect" href="/wiki/Province_of_Buenos_Aires" title="Province of Buenos Aires">Province of Buenos Aires</a>, <a href="/wiki/Argentina" title="Argentina">Argentina</a>, colliding with the front of a home in a neighborhood bordering the airport. <a class="external text" href="https://buenosairesherald.com/society/private-jet-crashes-in-buenos-aires-residential-area-killing-two" rel="nofollow">(<i>Buenos Aires Herald </i>)</a></li></ul></li>
<li><a href="/wiki/Ibadan_Christmas_funfair_crowd_crush" title="Ibadan Christmas funfair crowd crush">Ibadan Christmas funfair crowd crush</a>
<ul><li>Thirty-five children are killed and six others are injured in a <a href="/wiki/Crowd_collapses_and_crushes" title="Crowd collapses and crushes">crowd crush</a> during a <a href="/wiki/Christmas" title="Christmas">Christmas</a> <a href="/wiki/Fair" title="Fair">funfair</a> in <a href="/wiki/Ibadan" title="Ibadan">Ibadan</a>, <a href="/wiki/Nigeria" title="Nigeria">Nigeria</a>. <a class="external text" href="https://www.bbc.com/news/articles/c89xdd07585o" rel="nofollow">(BBC News)</a></li></ul></li>
<li>Twenty-five people are killed and dozens of others are missing when a boat capsizes on a river in <a href="/wiki/Inongo" title="Inongo">Inongo</a>, <a href="/wiki/Democratic_Republic_of_the_Congo" title="Democratic Republic of the Congo">Democratic Republic of the Congo</a>. <a class="external text" href="https://www.aljazeera.com/news/2024/12/18/search-continues-for-missing-after-drc-boat-capsizing-kills-dozens" rel="nofollow">(Al Jazeera)</a></li></ul>
<p><b>Health and environment</b>
</p>
<ul><li><a href="/wiki/Russia" title="Russia">Russian</a> state media agency <a href="/wiki/TASS" title="TASS">TASS</a> claims that the nation developed an <a href="/wiki/MRNA_vaccine" title="MRNA vaccine">mRNA</a> <a href="/wiki/Cancer_vaccine" title="Cancer vaccine">cancer vaccine</a>, which is planned to be distributed to patients free of charge beginning next year. However, the <a href="/wiki/Ministry_of_Health_(Russia)" title="Ministry of Health (Russia)">Russian Ministry of Health</a> has not provided any evidence to support their claim that the vaccine treats cancer. <a class="external text" href="https://timesofindia.indiatimes.com/life-style/health-fitness/health-news/russia-has-developed-its-own-cancer-vaccine-to-be-distributed-free-of-charge-news-agency/articleshow/116417627.cms" rel="nofollow">(<i>The Times of India</i>)</a> <a class="external text" href="https://tass.com/science/1887455" rel="nofollow">(TASS)</a> <a class="external text" href="https://www.newsweek.com/russian-cancer-vaccine-scientists-very-skeptical-2002882" rel="nofollow">(Newsweek)</a></li>
<li><a href="/wiki/California" title="California">California</a>, <a href="/wiki/United_States" title="United States">United States</a>, declares a <a href="/wiki/State_of_emergency" title="State of emergency">state of emergency</a> over <a class="mw-redirect" href="/wiki/Bird_flu" title="Bird flu">bird flu</a>. <a class="external text" href="https://www.nytimes.com/2024/12/18/health/bird-flu-emergency-california.html" rel="nofollow">(<i>The New York Times</i>)</a></li></ul>
<p><b>International relations</b>
</p>
<ul><li><a href="/wiki/China%E2%80%93United_States_relations" title="China–United States relations">China–United States relations</a>
<ul><li><a href="/wiki/Chinese_espionage_in_the_United_States" title="Chinese espionage in the United States">Chinese espionage in the United States</a>
<ul><li>Two <a href="/wiki/Chinese_Americans" title="Chinese Americans">Americans of Chinese descent</a> plead guilty to running a covert <a href="/wiki/Secret_police" title="Secret police">secret police</a> surveillance stations on behalf of the <a href="/wiki/Ministry_of_Public_Security_(China)" title="Ministry of Public Security (China)">Chinese Ministry of Public Security</a> to monitor, threaten and coerce <a href="/wiki/Chinese_people" title="Chinese people">ethnic Chinese</a> in <a href="/wiki/Chinatown,_Manhattan" title="Chinatown, Manhattan">Chinatown, Manhattan</a>, <a href="/wiki/New_York_City" title="New York City">New York City</a>, <a href="/wiki/New_York_(state)" title="New York (state)">NY</a>. At least 100 such stations have been reported worldwide across 53 countries, with <a class="mw-disambig" href="/wiki/Human_Rights_Monitor" title="Human Rights Monitor">human rights monitoring</a> <a href="/wiki/Non-governmental_organization" title="Non-governmental organization">NGOs</a> accusing China of using the outposts to threaten and monitor Chinese nationals abroad. <a class="external text" href="https://www.bbc.com/news/articles/c785n9pexjpo" rel="nofollow">(BBC)</a></li></ul></li></ul></li>
<li><a href="/wiki/Indonesia%E2%80%93Philippines_relations" title="Indonesia–Philippines relations">Indonesia–Philippines relations</a>
<ul><li><a href="/wiki/Mary_Jane_Veloso" title="Mary Jane Veloso">Mary Jane Veloso</a>, a former inmate on <a href="/wiki/Death_row" title="Death row">death row</a> in <a href="/wiki/Indonesia" title="Indonesia">Indonesia</a>, is <a href="/wiki/Repatriation" title="Repatriation">repatriated</a> to the <a href="/wiki/Philippines" title="Philippines">Philippines</a> following negotiations between the two countries. <a class="external text" href="https://www.reuters.com/world/asia-pacific/filipina-death-row-prisoner-indonesia-arrives-home-philippines-2024-12-18/" rel="nofollow">(Reuters)</a></li></ul></li>
<li><a href="/wiki/Malaysia%E2%80%93United_States_relations" title="Malaysia–United States relations">Malaysia–United States relations</a>
<ul><li>The <a class="mw-redirect" href="/wiki/U.S._Department_of_Defense" title="U.S. Department of Defense">U.S. Department of Defense</a> repatriates two <a href="/wiki/Al-Qaeda" title="Al-Qaeda">al-Qaeda</a> members, <a class="mw-redirect" href="/wiki/Mohammed_Farik_Bin_Amin" title="Mohammed Farik Bin Amin">Mohammed Farik Bin Amin</a> and <a class="mw-redirect" href="/wiki/Mohammed_Nazir_Bin_Lep" title="Mohammed Nazir Bin Lep">Mohammed Nazir Bin Lep</a>, from <a href="/wiki/Guantanamo_Bay_detention_camp" title="Guantanamo Bay detention camp">Guantanamo Bay</a> to <a href="/wiki/Malaysia" title="Malaysia">Malaysia</a>, where they will undergo a <a href="/wiki/Rehabilitation_(penology)" title="Rehabilitation (penology)">rehabilitation process</a> before <a href="/wiki/Prisoner_reentry" title="Prisoner reentry">reintegration into society</a>. <a class="external text" href="https://www.reuters.com/world/two-guantanamo-bay-detainees-back-malaysia-will-undergo-rehabilitation-bernama-2024-12-19/" rel="nofollow">(Reuters)</a></li></ul></li></ul>
<p><b>Law and crime</b>
</p>
<ul><li><a href="/wiki/Legal_affairs_of_the_Tate_brothers" title="Legal affairs of the Tate brothers">Legal affairs of the Tate brothers</a>
<ul><li>The <a href="/wiki/Westminster_Magistrates%27_Court" title="Westminster Magistrates' Court">Westminster Magistrates' Court</a> rules that <a href="/wiki/Law_enforcement_in_the_United_Kingdom" title="Law enforcement in the United Kingdom">British police</a> may seize <a href="/wiki/Pound_sterling" title="Pound sterling">£</a>2.2 million (<a href="/wiki/United_States_dollar" title="United States dollar">US$</a>2.5 million) from <a href="/wiki/Influencer" title="Influencer">influencer</a> <a href="/wiki/Andrew_Tate" title="Andrew Tate">Andrew Tate</a> and his brother Tristan for allegedly failing to pay <a href="/wiki/Taxation_in_the_United_Kingdom" title="Taxation in the United Kingdom">taxes</a> on profits from <a href="/wiki/Andrew_Tate#Online_ventures" title="Andrew Tate">their online ventures</a>. <a class="external text" href="https://www.dw.com/en/uk-court-rules-against-andrew-tate-in-tax-case/a-71091817" rel="nofollow">(DW)</a></li></ul></li>
<li>The <a href="/wiki/Dutch_Data_Protection_Authority" title="Dutch Data Protection Authority">Dutch Data Protection Authority</a> fines <a href="/wiki/Netflix" title="Netflix">Netflix</a> <a href="/wiki/Euro" title="Euro">€</a>4.75 million ($4.98 million) for failing to properly inform subscribers about the handling of their personal data between 2018 and 2020. <a class="external text" href="https://english.alarabiya.net/News/world/2024/12/18/dutch-authorities-fine-netflix-4-75-mln-euros-over-personal-data-use" rel="nofollow">(Al Arabiya)</a></li>
<li>Eleven people are killed and two others are injured in an <a href="/wiki/Arson" title="Arson">arson</a> attack on a bar in <a href="/wiki/Hanoi" title="Hanoi">Hanoi</a>, <a href="/wiki/Vietnam" title="Vietnam">Vietnam</a>. <a class="external text" href="https://www.aljazeera.com/news/2024/12/19/arson-at-karaoke-bar-in-vietnams-hanoi-kills-11-police-say" rel="nofollow">(Al Jazeera)</a></li></ul>
<p><b>Politics and elections</b>
</p>
<ul><li><a href="/wiki/2024_Georgian_presidential_election" title="2024 Georgian presidential election">2024 Georgian presidential election</a>, <a href="/wiki/2024_Georgian_parliamentary_election" title="2024 Georgian parliamentary election">2024 Georgian parliamentary election</a>, <a href="/wiki/2024_Georgian_post-election_protests" title="2024 Georgian post-election protests">2024 Georgian post-election protests</a>
<ul><li>In an address to the <a href="/wiki/European_Parliament" title="European Parliament">European Parliament</a>, <a href="/wiki/President_of_Georgia" title="President of Georgia">Georgian President</a> <a href="/wiki/Salome_Zourabichvili" title="Salome Zourabichvili">Salome Zourabichvili</a> urges the <a href="/wiki/European_Union" title="European Union">European Union</a> to economically and politically pressure the current <a href="/wiki/Government_of_Georgia_(country)" title="Government of Georgia (country)">Georgian government</a> into holding new elections, claiming that <a href="/wiki/2024_Georgian_parliamentary_election" title="2024 Georgian parliamentary election">recent elections</a> represented a "new form of invasion" by <a href="/wiki/Russia" title="Russia">Russia</a>. <a class="external text" href="https://www.euronews.com/my-europe/2024/12/18/georgian-outgoing-president-calls-for-immediate-eu-support-before-its-too-late" rel="nofollow">(Euronews)</a> <a class="external text" href="https://apnews.com/article/eu-georgia-russia-police-violence-election-crackdown-d07509343f3edfa698ab355003cf0bc9" rel="nofollow">(AP)</a></li></ul></li>
<li><a href="/wiki/2024_Irish_general_election" title="2024 Irish general election">2024 Irish general election</a>
<ul><li><a href="/wiki/Simon_Harris" title="Simon Harris">Simon Harris</a> tenders his resignation as <a href="/wiki/Taoiseach" title="Taoiseach">Taoiseach</a> to President <a class="mw-redirect" href="/wiki/Michael_D_Higgins" title="Michael D Higgins">Michael D Higgins</a>. <a class="external text" href="https://www.independent.ie/irish-news/simon-harris-tenders-his-resignation-as-taoiseach-to-president-michael-d-higgins/a1053377486.html" rel="nofollow">(Irish Independent)</a></li></ul></li></ul>
<p><b>Sports</b>
</p>
<ul><li><a href="/wiki/2024_FIFA_Intercontinental_Cup" title="2024 FIFA Intercontinental Cup">2024 FIFA Intercontinental Cup</a>
<ul><li>In <a href="/wiki/Association_football" title="Association football">association football</a>, <a href="/wiki/Real_Madrid_CF" title="Real Madrid CF">Real Madrid</a> wins the inaugural <a href="/wiki/FIFA_Intercontinental_Cup" title="FIFA Intercontinental Cup">FIFA Intercontinental Cup</a> after defeating <a href="/wiki/C.F._Pachuca" title="C.F. Pachuca">Pachuca</a> 3–0 in the <a href="/wiki/2024_FIFA_Intercontinental_Cup_final" title="2024 FIFA Intercontinental Cup final">final</a> in <a href="/wiki/Lusail" title="Lusail">Lusail</a>, <a href="/wiki/Qatar" title="Qatar">Qatar</a>. <a href="/wiki/Vin%C3%ADcius_J%C3%BAnior" title="Vinícius Júnior">Vinícius Júnior</a> is awarded the <a href="/wiki/FIFA_Club_World_Cup_awards#Golden_Ball" title="FIFA Club World Cup awards">Golden Ball</a>. <a class="external text" href="https://www.theguardian.com/football/2024/dec/18/intercontinental-cup-final-report-real-madrid-pachuca" rel="nofollow">(<i>The Guardian</i>)</a></li></ul></li></ul></div></div></div>
<link href="mw-data:TemplateStyles:r1248507241" rel="mw-deduplicated-inline-style"/><div class="current-events">
<div aria-label="December 17" class="current-events-main vevent" id="2024_December_17" role="region">
<div class="current-events-heading plainlinks">
<div class="current-events-title" role="heading"><span class="summary">December 17, 2024<span style="display:none"> (<span class="bday dtstart published updated itvstart">2024-12-17</span>)</span> (Tuesday)</span>
</div>
<ul class="current-events-navbar editlink noprint"><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_17&amp;action=edit&amp;editintro=Portal:Current_events/Edit_instructions">edit</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_17&amp;action=history">history</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_17&amp;action=watch">watch</a></li>
</ul>
</div>
<div class="current-events-content description">
<p><b>Armed conflicts and attacks</b>
</p>
<ul><li><a href="/wiki/Syrian_civil_war" title="Syrian civil war">Syrian civil war</a>
<ul><li><a href="/wiki/War_crimes_in_the_Syrian_civil_war" title="War crimes in the Syrian civil war">War crimes in the Syrian civil war</a>, <a href="/wiki/Fall_of_the_Assad_regime" title="Fall of the Assad regime">Fall of the Assad regime</a>
<ul><li><a href="/wiki/Syrian_mass_graves" title="Syrian mass graves">Syrian mass graves</a>
<ul><li>Several <a href="/wiki/Mass_grave" title="Mass grave">mass graves</a> are uncovered across <a href="/wiki/Syria" title="Syria">Syria</a> following the fall of the Assad regime, with a site in <a href="/wiki/Al-Qutayfah" title="Al-Qutayfah">Al-Qutayfah</a>, <a href="/wiki/Rif_Dimashq_Governorate" title="Rif Dimashq Governorate">Rif Dimashq Governorate</a>, estimated to contain the remains of at least 100,000 people. <a class="external text" href="https://www.reuters.com/world/middle-east/least-100000-bodies-syrian-mass-grave-us-advocacy-group-head-says-2024-12-17/" rel="nofollow">(Reuters)</a> <a class="external text" href="https://www.aljazeera.com/gallery/2024/12/17/thousands-of-bodies-found-in-syrias-mass-graves" rel="nofollow">(Al Jazeera)</a></li></ul></li></ul></li>
<li><a href="/wiki/2024_Israeli_invasion_of_Syria" title="2024 Israeli invasion of Syria">2024 Israeli invasion of Syria</a>
<ul><li><a class="mw-redirect" href="/wiki/Israeli_Prime_Minister" title="Israeli Prime Minister">Israeli Prime Minister</a> <a href="/wiki/Benjamin_Netanyahu" title="Benjamin Netanyahu">Benjamin Netanyahu</a> and <a class="mw-redirect" href="/wiki/Minister_of_Defense_(Israel)" title="Minister of Defense (Israel)">Defense Minister</a> <a href="/wiki/Israel_Katz" title="Israel Katz">Israel Katz</a> visit the summit of <a href="/wiki/Mount_Hermon" title="Mount Hermon">Mount Hermon</a> which was captured by the <a href="/wiki/Israel_Defense_Forces" title="Israel Defense Forces">Israel Defense Forces</a> last week. <a class="external text" href="https://www.nytimes.com/2024/12/17/world/middleeast/17syria-israel-netanyahu.html" rel="nofollow">(<i>The New York Times</i>)</a></li>
<li>The IDF continue invading Syria beyond the <a href="/wiki/Agreement_on_Disengagement_between_Israel_and_Syria" title="Agreement on Disengagement between Israel and Syria">1974 buffer zone</a> in <a href="/wiki/Quneitra_Governorate" title="Quneitra Governorate">Quneitra Governorate</a> and take control of the <a href="/wiki/Al-Wehda_Dam" title="Al-Wehda Dam">Al-Wehda Dam</a> on the <a class="mw-redirect" href="/wiki/Yarmouk_River" title="Yarmouk River">Yarmouk River</a>. <a class="external text" href="https://www.jfeed.com/news-israel/son5ct" rel="nofollow">(JFeed)</a></li></ul></li>
<li><a href="/wiki/Operation_Dawn_of_Freedom" title="Operation Dawn of Freedom">Operation Dawn of Freedom</a>
<ul><li>Senior <a href="/wiki/United_States" title="United States">American</a> officials report that <a href="/wiki/Turkey" title="Turkey">Turkey</a> is building up <a href="/wiki/Turkish_Armed_Forces" title="Turkish Armed Forces">its forces</a> along the Syrian border, raising fears of a possible ground invasion of territories held by the <a href="/wiki/Kurds_in_Syria" title="Kurds in Syria">Kurdish</a>-led <a href="/wiki/Syrian_Democratic_Forces" title="Syrian Democratic Forces">Syrian Democratic Forces</a>. <a class="external text" href="https://www.wsj.com/world/middle-east/u-s-fears-military-buildup-by-turkey-signals-preparations-for-incursion-into-syria-1c2e88e9" rel="nofollow">(<i>The Wall Street Journal</i>)</a></li></ul></li></ul></li>
<li><a href="/wiki/Russian_invasion_of_Ukraine" title="Russian invasion of Ukraine">Russian invasion of Ukraine</a>
<ul><li><a href="/wiki/Attacks_in_Russia_during_the_Russian_invasion_of_Ukraine" title="Attacks in Russia during the Russian invasion of Ukraine">Attacks in Russia during the Russian invasion of Ukraine</a>
<ul><li><a href="/wiki/Russia" title="Russia">Russian</a> Lieutenant General <a href="/wiki/Igor_Kirillov_(general)" title="Igor Kirillov (general)">Igor Kirillov</a>, head of the <a href="/wiki/Russian_NBC_Protection_Troops" title="Russian NBC Protection Troops">NBC Protection Troops</a>, and his assistant are <a href="/wiki/Assassination" title="Assassination">assassinated</a> by an <a href="/wiki/Improvised_explosive_device" title="Improvised explosive device">IED</a> hidden inside of an <a href="/wiki/E-scooter" title="E-scooter">e-scooter</a> in <a href="/wiki/Moscow" title="Moscow">Moscow</a>, Russia. A <a href="/wiki/Ukraine" title="Ukraine">Ukrainian</a> source claims that the <a href="/wiki/Security_Service_of_Ukraine" title="Security Service of Ukraine">Security Service of Ukraine</a> is responsible for the killings, after Kirilov was charged <i>in absentia</i> yesterday for the use of <a href="/wiki/Chemical_weapon" title="Chemical weapon">chemical weapons</a>, which made him a "legitimate target". <a href="/wiki/Dmitry_Medvedev" title="Dmitry Medvedev">Dmitry Medvedev</a>, deputy chairman of the <a href="/wiki/Security_Council_of_Russia" title="Security Council of Russia">Security Council of Russia</a>, says that the Ukrainian leadership would face an "imminent revenge" for the killings. <a class="external text" href="https://www.bbc.com/news/articles/cm2ek388yxzo" rel="nofollow">(BBC News)</a> <a class="external text" href="https://www.deccanherald.com/world/russias-medvedev-says-kyiv-will-face-imminent-revenge-for-killing-of-russian-general-ria-3321059" rel="nofollow">(Deccan Herald)</a></li></ul></li>
<li><a href="/wiki/List_of_military_aid_to_Ukraine_during_the_Russo-Ukrainian_War" title="List of military aid to Ukraine during the Russo-Ukrainian War">Military aid to Ukraine during the Russo-Ukrainian War</a>, <a href="/wiki/Russia%E2%80%93NATO_relations" title="Russia–NATO relations">Russia–NATO relations</a>
<ul><li><a href="/wiki/NATO" title="NATO">NATO</a>'s <a href="/wiki/NATO_Security_Assistance_and_Training_for_Ukraine" title="NATO Security Assistance and Training for Ukraine">Security Assistance and Training for Ukraine</a> <a href="/wiki/Command_center" title="Command center">command center</a> in <a href="/wiki/Wiesbaden" title="Wiesbaden">Wiesbaden</a>, <a href="/wiki/Germany" title="Germany">Germany</a>, takes over coordination of Western military support to <a href="/wiki/Ukraine" title="Ukraine">Ukraine</a> from the <a href="/wiki/United_States" title="United States">United States</a>. <a class="external text" href="https://www.reuters.com/world/nato-takes-over-coordination-military-aid-kyiv-us-source-says-2024-12-17/" rel="nofollow">(Reuters)</a></li></ul></li></ul></li>
<li><a href="/wiki/Insurgency_in_Khyber_Pakhtunkhwa" title="Insurgency in Khyber Pakhtunkhwa">Insurgency in Khyber Pakhtunkhwa</a>
<ul><li>Two police officers are killed and three others are injured in a mass shooting at a security checkpoint in <a class="mw-redirect" href="/wiki/Shangla_district" title="Shangla district">Shangla district</a>, <a href="/wiki/Khyber_Pakhtunkhwa" title="Khyber Pakhtunkhwa">Khyber Pakhtunkhwa</a>, <a href="/wiki/Pakistan" title="Pakistan">Pakistan</a>. <a class="external text" href="https://apnews.com/article/pakistan-militant-attack-police-post-restive-northwest-bf94bbd80b1b69238cf9d16709afb61c" rel="nofollow">(AP)</a></li>
<li>Three police officers are killed and two more are wounded by a roadside bomb targeting a vehicle carrying <a href="/wiki/Polio" title="Polio">polio</a> <a href="/wiki/Polio_vaccine" title="Polio vaccine">workers</a> in <a href="/wiki/Dera_Ismail_Khan_District" title="Dera Ismail Khan District">Dera Ismail Khan District</a>, Khyber Pakhtunkhwa, Pakistan. <a class="external text" href="https://abcnews.go.com/Health/wireStory/roadside-bomb-kills-3-police-officers-escorting-polio-116881644" rel="nofollow">(ABC News)</a></li></ul></li>
<li><a href="/wiki/Mexican_drug_war" title="Mexican drug war">Mexican drug war</a>
<ul><li>Two municipal policeman were killed  and three civilians were wounded in an attack near the Jerécuaro-Apaseo el Alto state highway in <a href="/wiki/Jer%C3%A9cuaro" title="Jerécuaro">Jerécuaro</a>, Guanajuato, finding about 200 bullet casing in the site. In the same day four elements of the State Public Security Forces were killed and two more were wounded after a confrontation with gunmen in the city of <a href="/wiki/Uriangato" title="Uriangato">Uriangato</a>. Security elements from all levels of government deployed a combined operation to try to found the responsible ot the attacks. <a class="external text" href="https://www.milenio.com/politica/comunidad/policias-asesinados-en-jerecuaro-matan-a-dos-elementos" rel="nofollow">(Milenio Noticias)</a></li></ul></li></ul>
<p><b>Disasters and accidents</b>
</p>
<ul><li><a href="/wiki/2024%E2%80%9325_South-West_Indian_Ocean_cyclone_season" title="2024–25 South-West Indian Ocean cyclone season">2024–25 South-West Indian Ocean cyclone season</a>
<ul><li>The death toll in <a href="/wiki/Mozambique" title="Mozambique">Mozambique</a> from <a href="/wiki/Cyclone_Chido" title="Cyclone Chido">Cyclone Chido</a> increase to 34, with more than 23,000 homes destroyed. <a class="external text" href="https://www.dw.com/en/cyclone-chido-kills-34-in-mozambique-after-battering-mayotte/a-71080308" rel="nofollow">(DW)</a></li></ul></li>
<li><a href="/wiki/2024_Port_Vila_earthquake" title="2024 Port Vila earthquake">2024 Port Vila earthquake</a>
<ul><li>A 7.4 magnitude <a href="/wiki/List_of_earthquakes_in_Vanuatu" title="List of earthquakes in Vanuatu">earthquake</a> strikes <a href="/wiki/Vanuatu" title="Vanuatu">Vanuatu</a>'s capital <a href="/wiki/Port_Vila" title="Port Vila">Port Vila</a>, with at least 14 people killed and more than 200 others injured. <a class="external text" href="https://www.rnz.co.nz/news/national/536941/live-large-7-point-3-magnitude-earthquake-strikes-near-vanuatu" rel="nofollow">(RNZ)</a></li></ul></li></ul>
<p><b>Health and environment</b>
</p>
<ul><li><a href="/wiki/2024_Kwango_province_malaria_outbreak" title="2024 Kwango province malaria outbreak">2024 Kwango province malaria outbreak</a>
<ul><li>The <a href="/wiki/Democratic_Republic_of_the_Congo" title="Democratic Republic of the Congo">Democratic Republic of the Congo</a>'s Health Ministry announces that the mystery illness that has left at least 143 people dead in <a href="/wiki/Kwango" title="Kwango">Kwango</a> is actually a severe form of <a href="/wiki/Malaria" title="Malaria">malaria</a>. The <a href="/wiki/World_Health_Organization" title="World Health Organization">World Health Organization</a> says more <a href="/wiki/Malaria_vaccine" title="Malaria vaccine">malaria vaccines</a> are being sent to its health centres in the region. <a class="external text" href="https://www.theguardian.com/world/2024/dec/17/drc-health-ministry-says-mystery-disease-is-severe-form-of-malaria" rel="nofollow">(<i>The Guardian</i>)</a></li></ul></li></ul>
<p><b>Law and crime</b>
</p>
<ul><li><a href="/wiki/2024_Northeastern_United_States_drone_sightings" title="2024 Northeastern United States drone sightings">2024 Northeastern United States drone sightings</a>
<ul><li>The U.S. <a href="/wiki/United_States_House_Permanent_Select_Committee_on_Intelligence" title="United States House Permanent Select Committee on Intelligence">House Intelligence Committee</a> hold a closed-door <a href="/wiki/Classified_information_in_the_United_States" title="Classified information in the United States">classified briefing</a> on drone sightings over the <a href="/wiki/Northeastern_United_States" title="Northeastern United States">Northeastern United States</a>. The briefing is provided by <a href="/wiki/Federal_Bureau_of_Investigation" title="Federal Bureau of Investigation">Federal Bureau of Investigation</a>, the <a href="/wiki/Central_Intelligence_Agency" title="Central Intelligence Agency">CIA</a> and the <a href="/wiki/Director_of_National_Intelligence" title="Director of National Intelligence">Office of the Director of National Intelligence</a>, according to senior U.S. officials. <a class="external text" href="https://abcnews.go.com/Politics/video/house-intelligence-committee-holds-classified-briefing-drone-sightings-116884129" rel="nofollow">(ABC News)</a> <a class="external text" href="https://www.nbcnews.com/politics/white-house/white-house-presses-congress-provide-authority-address-drones-us-airsp-rcna184491" rel="nofollow">(NBC News)</a></li></ul></li>
<li><a href="/wiki/Killing_of_Brian_Thompson" title="Killing of Brian Thompson">Killing of Brian Thompson</a>
<ul><li>A <a href="/wiki/Juries_in_the_United_States" title="Juries in the United States">U.S. grand jury</a> indicts <a href="/wiki/Luigi_Mangione" title="Luigi Mangione">Luigi Mangione</a> for <a href="/wiki/Killing_of_Brian_Thompson" title="Killing of Brian Thompson">the assassination</a> of <a class="mw-redirect" href="/wiki/UnitedHealthcare" title="UnitedHealthcare">UnitedHealthcare</a> <a href="/wiki/Chief_executive_officer" title="Chief executive officer">CEO</a> <a href="/wiki/Brian_Thompson_(businessman)" title="Brian Thompson (businessman)">Brian Thompson</a>. <a class="external text" href="https://www.nbcnews.com/news/us-news/luigi-mangione-indicted-first-degree-murder-charge-grand-jury-unitedhe-rcna184313" rel="nofollow">(NBC News)</a></li></ul></li>
<li><a href="/wiki/Murder_of_Sara_Sharif" title="Murder of Sara Sharif">Murder of Sara Sharif</a>
<ul><li><a href="/wiki/High_Court_judge_(England_and_Wales)" title="High Court judge (England and Wales)">English High Court judge</a> <a href="/wiki/John_Cavanagh_(judge)" title="John Cavanagh (judge)">John Cavanagh</a> sentences Urfan Sharif and Beinash Batool to <a href="/wiki/Life_imprisonment_in_England_and_Wales" title="Life imprisonment in England and Wales">life imprisonment</a> for the <a href="/wiki/Murder_in_English_law" title="Murder in English law">murder</a> of Sharif's 10-year-old daughter Sara. <a class="external text" href="https://www.abs-cbn.com/news/world/2024/12/17/father-stepmother-of-murdered-uk-pakistani-girl-jailed-for-life-2326" rel="nofollow">(ABS-CBN News)</a></li></ul></li>
<li>Canadian-American <a href="/wiki/Anti-whaling" title="Anti-whaling">anti-whaling</a> activist <a href="/wiki/Paul_Watson" title="Paul Watson">Paul Watson</a> is released from <a href="/wiki/Law_enforcement_in_Greenland#Prison_system" title="Law enforcement in Greenland">prison</a> in <a href="/wiki/Greenland" title="Greenland">Greenland</a> after <a href="/wiki/Denmark" title="Denmark">Denmark</a> declines <a href="/wiki/Japan" title="Japan">Japan</a>'s <a href="/wiki/Extradition" title="Extradition">extradition</a> request. <a class="external text" href="https://www.aljazeera.com/news/2024/12/17/antiwhaling-activist-paul-watson-released-as-denmark-rejects-extradition" rel="nofollow">(Al Jazeera)</a></li>
<li><a class="mw-redirect" href="/wiki/Mexican_Drug_War" title="Mexican Drug War">Mexican Drug War</a>
<ul><li>Three foreigners were arrested and one ton of cocaine was seized by <a href="/wiki/Mexican_Navy" title="Mexican Navy">Mexican Navy</a> elements in an operation wich took plece near the coasts of <a href="/wiki/L%C3%A1zaro_C%C3%A1rdenas,_Michoac%C3%A1n" title="Lázaro Cárdenas, Michoacán">Lázaro Cárdenas, Michoacán</a>.<a class="external text" href="https://www.eluniversal.com.mx/nacion/caen-tres-extranjeros-con-una-tonelada-de-cocaina-en-michoacan-navegaban-en-costas-de-lazaro-cardenas/" rel="nofollow">(El Universal)</a></li></ul></li></ul>
<p><b>Politics and elections</b>
</p>
<ul><li><a href="/wiki/Second_presidential_transition_of_Donald_Trump" title="Second presidential transition of Donald Trump">Second presidential transition of Donald Trump</a>
<ul><li>The <a href="/wiki/United_States_Electoral_College" title="United States Electoral College">U.S. Electoral College</a> formally certifies <a href="/wiki/President-elect_of_the_United_States" title="President-elect of the United States">President-elect</a> <a href="/wiki/Donald_Trump" title="Donald Trump">Donald Trump</a>'s victory over <a href="/wiki/Vice_President_of_the_United_States" title="Vice President of the United States">Vice President</a> <a href="/wiki/Kamala_Harris" title="Kamala Harris">Kamala Harris</a> in the <a href="/wiki/2024_United_States_presidential_election" title="2024 United States presidential election">2024 United States presidential election</a>. <a class="external text" href="https://www.fox5ny.com/election/electoral-college-confirm-results-2024-election" rel="nofollow">(WNYW-TV)</a> <a class="external text" href="https://edition.cnn.com/politics/live-news/trump-cabinet-transition-news-12-17-24/index.html" rel="nofollow">(CNN)</a></li></ul></li>
<li><a href="/wiki/Switzerland" title="Switzerland">Switzerland</a>'s <a href="/wiki/Federal_Assembly_(Switzerland)" title="Federal Assembly (Switzerland)">Federal Assembly</a> votes 126–20 with 41 abstentions to outlaw membership or support of <a href="/wiki/Lebanon" title="Lebanon">Lebanese</a> militant group <a href="/wiki/Hezbollah" title="Hezbollah">Hezbollah</a>. <a class="external text" href="https://www.newarab.com/news/swiss-parliament-votes-ban-hezbollah" rel="nofollow">(The New Arab)</a></li></ul></div></div></div>
<link href="mw-data:TemplateStyles:r1248507241" rel="mw-deduplicated-inline-style"/><div class="current-events">
<div aria-label="December 16" class="current-events-main vevent" id="2024_December_16" role="region">
<div class="current-events-heading plainlinks">
<div class="current-events-title" role="heading"><span class="summary">December 16, 2024<span style="display:none"> (<span class="bday dtstart published updated itvstart">2024-12-16</span>)</span> (Monday)</span>
</div>
<ul class="current-events-navbar editlink noprint"><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_16&amp;action=edit&amp;editintro=Portal:Current_events/Edit_instructions">edit</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_16&amp;action=history">history</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_16&amp;action=watch">watch</a></li>
</ul>
</div>
<div class="current-events-content description">
<p><b>Armed conflicts and attacks</b>
</p>
<ul><li><a href="/wiki/Syrian_civil_war" title="Syrian civil war">Syrian civil war</a>
<ul><li><a href="/wiki/2024_Israeli_invasion_of_Syria" title="2024 Israeli invasion of Syria">2024 Israeli invasion of Syria</a>
<ul><li>The <a href="/wiki/Cabinet_of_Israel" title="Cabinet of Israel">Cabinet of Israel</a> approves a plan proposing to double the occupied <a href="/wiki/Golan_Heights" title="Golan Heights">Golan Heights</a>' regional <a href="/wiki/Israeli_settlement" title="Israeli settlement">Israeli settlers</a> population. <a class="external text" href="https://www.bbc.com/news/articles/cz6lgln128xo" rel="nofollow">(BBC News)</a></li>
<li>Heavy overnight <a href="/wiki/Israel" title="Israel">Israeli</a> <a href="/wiki/Airstrike" title="Airstrike">airstrikes</a> are reported in <a href="/wiki/Tartus_Governorate" title="Tartus Governorate">Tartus Governorate</a>, <a href="/wiki/Syria" title="Syria">Syria</a>. <a class="external text" href="https://www.timesofisrael.com/heavy-israeli-airstrikes-reported-on-syrian-military-sites-in-coastal-tartus-region/" rel="nofollow">(<i>The Times of Israel</i>)</a></li></ul></li>
<li><a href="/wiki/Fall_of_the_Assad_regime" title="Fall of the Assad regime">Fall of the Assad regime</a>
<ul><li><a href="/wiki/Syrian_mass_graves" title="Syrian mass graves">Syrian mass graves</a>
<ul><li>A recently created <a href="/wiki/Mass_grave" title="Mass grave">mass grave</a> containing the bodies of 17 executed <a href="/wiki/Syrian_Army" title="Syrian Army">Syrian Army</a> soldiers is discovered in the <a href="/wiki/Syrian_Desert" title="Syrian Desert">Syrian Desert</a> near <a href="/wiki/Deir_ez-Zor" title="Deir ez-Zor">Deir ez-Zor</a>. <a class="external text" href="https://www.syriahr.com/%d8%a3%d8%b9%d9%80-%d9%80%d8%af%d9%85%d9%80-%d9%80%d9%87%d9%85-%d8%a7%d9%84%d8%aa%d9%80-%d9%80%d9%86%d9%80-%d9%80%d8%b8%d9%8a%d9%85-%d8%a7%d9%83%d8%aa%d8%b4%d8%a7%d9%81-%d9%85%d9%82%d8%a8%d8%b1/741083/" rel="nofollow">(SOHR)</a></li></ul></li>
<li>In his first public statement since being overthrown, former <a href="/wiki/President_of_Syria" title="President of Syria">Syrian president</a> <a href="/wiki/Bashar_al-Assad" title="Bashar al-Assad">Bashar al-Assad</a> says that he "didn't intend to leave Syria", claiming that he went to <a href="/wiki/Khmeimim_Air_Base" title="Khmeimim Air Base">Khmeimim Air Base</a> in <a href="/wiki/Latakia_Governorate" title="Latakia Governorate">Latakia Governorate</a> to "oversee combat operations" only to find that the Syrian Army had abandoned their positions and surrendered to rebel forces. Amid "an intensified attack by drone strikes" at the air base, Assad says that <a href="/wiki/Russian_Armed_Forces" title="Russian Armed Forces">Russia</a> decided to airlift him to <a href="/wiki/Moscow" title="Moscow">Moscow</a>. <a class="external text" href="https://www.bbc.co.uk/news/articles/c5yd0zz5edqo" rel="nofollow">(BBC News)</a></li></ul></li>
<li><a href="/wiki/Sectarianism_and_minorities_in_the_Syrian_civil_war" title="Sectarianism and minorities in the Syrian civil war">Sectarianism and minorities in the Syrian civil war</a>
<ul><li>The brother of the <a href="/wiki/Imam" title="Imam">Imam</a> of the Great Prophet Mosque of <a href="/wiki/Masyaf" title="Masyaf">Masyaf</a> is <a href="/wiki/Assassination" title="Assassination">assassinated</a> by unidentified gunmen, <a href="/wiki/Hama_Governorate" title="Hama Governorate">Hama Governorate</a>, in a potential revenge operation, due to the Imam being associated with <a href="/wiki/Hezbollah" title="Hezbollah">Hezbollah</a> and other <a href="/wiki/Iran" title="Iran">Iranian</a>- and <a href="/wiki/Shia_Islam" title="Shia Islam">Shia</a>-associated militias. <a class="external text" href="https://www.syriahr.com/%d9%84%d8%aa%d8%a3%d8%ac%d9%8a%d8%ac-%d8%a7%d9%84%d8%b9%d9%80-%d9%80%d9%86%d9%80-%d9%80%d9%81-%d8%a7%d9%84%d8%b7%d8%a7%d8%a6%d9%81%d9%8a-%d9%85%d9%84%d8%ab%d9%85%d9%88%d9%86-%d9%8a%d8%b5%d9%81%d9%88/741090/" rel="nofollow">(SOHR)</a></li></ul></li>
<li><a href="/wiki/US_intervention_in_the_Syrian_civil_war" title="US intervention in the Syrian civil war">US intervention in the Syrian civil war</a>
<ul><li>The <a class="mw-redirect" href="/wiki/US_Air_Force" title="US Air Force">US Air Force</a> conduct strikes targeting <a class="mw-redirect" href="/wiki/ISIS" title="ISIS">ISIS</a> camps and operatives, killing one dozen ISIS fighters according to <a href="/wiki/The_Pentagon" title="The Pentagon">the Pentagon</a>. <a class="external text" href="https://www.defense.gov/News/News-Stories/Article/Article/4005902/centcom-strikes-isis-new-carrier-group-enters-region/" rel="nofollow">(US Department of Defense)</a></li></ul></li></ul></li>
<li><a href="/wiki/Israel%E2%80%93Hamas_war" title="Israel–Hamas war">Israel–Hamas war</a>
<ul><li>The <a href="/wiki/Gaza_Health_Ministry" title="Gaza Health Ministry">Gaza Health Ministry</a> announces that the <a href="/wiki/Casualties_of_the_Israel%E2%80%93Hamas_war" title="Casualties of the Israel–Hamas war">death toll in the ongoing war</a> has surpassed 45,000. <a class="external text" href="https://www.aljazeera.com/news/2024/12/16/death-toll-from-israels-war-on-" rel="nofollow">(Al Jazeera)</a></li></ul></li>
<li><a class="mw-redirect" href="/wiki/Mexican_Drug_War" title="Mexican Drug War">Mexican Drug War</a>
<ul><li>An improvised device exploded left two <a href="/wiki/Mexican_Army" title="Mexican Army">soldiers</a> dead and five elements injuried, ocurred near Los Gallineros locality, <a href="/wiki/Cotija_de_la_Paz" title="Cotija de la Paz">Cotija de la Paz</a>, <a href="/wiki/Michoac%C3%A1n" title="Michoacán">Michoacán</a>. The next day, the general of the <a href="/wiki/Secretariat_of_National_Defense" title="Secretariat of National Defense">Secretariat of National Defense</a>, <a href="/wiki/Ricardo_Trevilla_Trejo" title="Ricardo Trevilla Trejo">Ricardo Trevilla Trejo</a> pointed to <a href="/wiki/La_Resistencia_(gang)" title="La Resistencia (gang)">Cárteles Unidos</a> to be behind the attack.<a class="external text" href="https://www.proceso.com.mx/nacional/estados/2024/12/16/artefacto-explosivo-mata-dos-militares-en-cotija-michoacan-342220.html" rel="nofollow">(Revista Proceso)</a><a class="external text" href="https://politica.expansion.mx/presidencia/2024/12/17/sedena-atribuye-a-carteles-unidos-ataque-a-militares-en-cotija-michoacan" rel="nofollow">(Política Expansión)</a></li></ul></li></ul>
<p><b>Health and environment</b>
</p>
<ul><li><a href="/wiki/2024_Australia_heat_wave" title="2024 Australia heat wave">2024 Australia heat wave</a>
<ul><li><a href="/wiki/Walpeup" title="Walpeup">Walpeup</a>, <a href="/wiki/Victoria_(state)" title="Victoria (state)">Victoria</a>, <a href="/wiki/Australia" title="Australia">Australia</a>, reports a temperature of 47.1 °C (116.8 °F), the hottest temperature reported in the state since <a href="/wiki/2019%E2%80%9320_Australian_bushfire_season" title="2019–20 Australian bushfire season">2019</a>. Extreme <a href="/wiki/Heat_wave" title="Heat wave">heat wave</a> warnings and <a href="/wiki/Fire_warning" title="Fire warning">fire risk warnings</a> are also issued for areas across Australia. <a class="external text" href="https://www.theguardian.com/australia-news/live/2024/dec/16/australia-news-live-extreme-fire-danger-nsw-victoria-lindt-cafe-siege-anniversary-anthony-albanese-peter-dutton" rel="nofollow">(<i>The Guardian</i>)</a> <a class="external text" href="https://www.abc.net.au/news/2024-12-16/australia-heatwave-temperatures-and-fire-danger/104729026" rel="nofollow">(ABC News Australia)</a></li></ul></li></ul>
<p><b>Law and crime</b>
</p>
<ul><li><a href="/wiki/2024_Northeastern_United_States_drone_sightings" title="2024 Northeastern United States drone sightings">2024 Northeastern United States drone sightings</a>
<ul><li><a href="/wiki/United_States_Secretary_of_Homeland_Security" title="United States Secretary of Homeland Security">U.S. Homeland Security Secretary</a> <a href="/wiki/Alejandro_Mayorkas" title="Alejandro Mayorkas">Alejandro Mayorkas</a> calls for state <a href="/wiki/National_Guard_(United_States)" title="National Guard (United States)">National Guards</a> to be given the authority to shoot down unidentified drones, saying that the <a href="/wiki/Federal_government_of_the_United_States" title="Federal government of the United States">federal government</a> is not able to address the issue by themselves. <a class="external text" href="https://www.telegraph.co.uk/us/news/2024/12/15/give-states-power-shoot-drones-homeland-security-mayorkas/" rel="nofollow">(<i>The Telegraph</i>)</a></li>
<li>U.S. officials say that a drone detection system is being deployed in <a href="/wiki/New_York_(state)" title="New York (state)">New York</a> following a formal request by <a href="/wiki/Governor_of_New_York" title="Governor of New York">Governor</a> <a href="/wiki/Kathy_Hochul" title="Kathy Hochul">Kathy Hochul</a>. <a class="external text" href="https://www.bbc.co.uk/news/articles/cpvnjp30pplo" rel="nofollow">(BBC News)</a></li>
<li>The <a href="/wiki/United_States_Air_Force" title="United States Air Force">United States Air Force</a> confirms that <a href="/wiki/Wright-Patterson_Air_Force_Base" title="Wright-Patterson Air Force Base">Wright-Patterson Air Force Base</a> in <a href="/wiki/Ohio" title="Ohio">Ohio</a> had to temporarily suspend air operations for four hours on Friday and Saturday after the airbase reported sightings of unidentified "small unmanned aerial systems". <a class="external text" href="https://www.cnn.com/2024/12/16/us/us-air-force-base-closes-airspace-drone-sightings-hnk/index.html" rel="nofollow">(CNN)</a></li>
<li><a href="/wiki/President-elect_of_the_United_States" title="President-elect of the United States">President-elect</a> <a href="/wiki/Donald_Trump" title="Donald Trump">Donald Trump</a> cancels a planned visit to <a href="/wiki/Trump_National_Golf_Club_Bedminster" title="Trump National Golf Club Bedminster">Trump National Golf Club Bedminster</a> in <a href="/wiki/New_Jersey" title="New Jersey">New Jersey</a> amid drone sightings in the state. Trump also calls on outgoing <a href="/wiki/President_of_the_United_States" title="President of the United States">President</a> <a href="/wiki/Joe_Biden" title="Joe Biden">Joe Biden</a> and the <a href="/wiki/United_States_Armed_Forces" title="United States Armed Forces">U.S. military</a> to reveal the truth about the drones, saying that "the government knows what's happening" and that they know where the drones are coming from. <a class="external text" href="https://timesofindia.indiatimes.com/world/us/donald-trump-says-he-wont-risk-visiting-new-jersey-biden-knows-about-mystery-drones/articleshow/116379298.cms" rel="nofollow">(<i>The Times of India</i>)</a></li></ul></li>
<li><a href="/wiki/Abundant_Life_Christian_School_shooting" title="Abundant Life Christian School shooting">Abundant Life Christian School shooting</a>
<ul><li>Two people are killed and six others are injured in a <a href="/wiki/Mass_shooting" title="Mass shooting">mass shooting</a> at the <a href="/wiki/Abundant_Life_Christian_School" title="Abundant Life Christian School">Abundant Life Christian School</a> in <a href="/wiki/Madison,_Wisconsin" title="Madison, Wisconsin">Madison</a>, <a href="/wiki/Wisconsin" title="Wisconsin">Wisconsin</a>, <a href="/wiki/United_States" title="United States">United States</a>. The perpetrator is found dead at the scene. <a class="external text" href="https://www.cnn.com/us/live-news/abundant-life-christian-school-shooting-madison-12-16-24/index.html" rel="nofollow">(CNN)</a></li></ul></li>
<li><a href="/wiki/Bolivia" title="Bolivia">Bolivian</a> prosecutors issue an <a href="/wiki/Arrest_warrant" title="Arrest warrant">arrest warrant</a> for former <a href="/wiki/President_of_Bolivia" title="President of Bolivia">President</a> <a href="/wiki/Evo_Morales" title="Evo Morales">Evo Morales</a> in connection to <a href="/wiki/Sexual_abuse" title="Sexual abuse">sexual abuse</a> allegations that he <a href="/wiki/Child_sexual_abuse" title="Child sexual abuse">fathered a child with a 15-year-old girl</a>, a claim he denies. <a class="external text" href="https://apnews.com/article/bolivia-evo-morales-arrest-order-5f0931c989431172642a1559dffbc01a" rel="nofollow">(AP)</a></li></ul>
<p><b>Politics and elections</b>
</p>
<ul><li><a href="/wiki/2024_German_government_crisis" title="2024 German government crisis">2024 German government crisis</a>, <a href="/wiki/2025_German_federal_election" title="2025 German federal election">2025 German federal election</a>
<ul><li><a class="mw-redirect" href="/wiki/German_Chancellor" title="German Chancellor">German Chancellor</a> <a href="/wiki/Olaf_Scholz" title="Olaf Scholz">Olaf Scholz</a> loses a <a class="mw-redirect" href="/wiki/Vote_of_confidence" title="Vote of confidence">vote of confidence</a>, thereby allowing for early elections to be held on February 23. <a class="external text" href="https://www.bbc.com/news/articles/ckg36pp6dpyo" rel="nofollow">(BBC News)</a></li></ul></li>
<li><a href="/wiki/Resignation_of_Chrystia_Freeland" title="Resignation of Chrystia Freeland">Resignation of Chrystia Freeland</a>
<ul><li><a href="/wiki/Chrystia_Freeland" title="Chrystia Freeland">Chrystia Freeland</a> resigns as <a href="/wiki/Canada" title="Canada">Canada</a>'s <a href="/wiki/Deputy_Prime_Minister_of_Canada" title="Deputy Prime Minister of Canada">Deputy Prime Minister</a> and <a href="/wiki/Minister_of_Finance_(Canada)" title="Minister of Finance (Canada)">Minister of Finance</a> amid disagreements with <a href="/wiki/Prime_Minister_of_Canada" title="Prime Minister of Canada">Prime Minister</a> <a href="/wiki/Justin_Trudeau" title="Justin Trudeau">Justin Trudeau</a> on increased government spending and how to handle possible <a class="mw-redirect" href="/wiki/U.S." title="U.S.">U.S.</a> <a href="/wiki/Tariff" title="Tariff">tariffs</a> imposed by the incoming <a href="/wiki/Second_presidency_of_Donald_Trump" title="Second presidency of Donald Trump">Trump administration</a>. <a class="external text" href="https://www.reuters.com/world/americas/canadas-finance-minister-resigns-2024-12-16/" rel="nofollow">(Reuters)</a></li></ul></li>
<li><a href="/wiki/President_of_Kyrgyzstan" title="President of Kyrgyzstan">President of Kyrgyzstan</a> <a href="/wiki/Sadyr_Japarov" title="Sadyr Japarov">Sadyr Japarov</a> announces that he has dismissed <a href="/wiki/Akylbek_Japarov" title="Akylbek Japarov">Akylbek Japarov</a> as <a class="mw-redirect" href="/wiki/Prime_Minister_of_Kyrgyzstan" title="Prime Minister of Kyrgyzstan">Prime Minister</a>. <a class="external text" href="https://www.reuters.com/world/asia-pacific/kyrgyzstans-president-dismisses-prime-minister-ria-reports-2024-12-16/" rel="nofollow">(Reuters)</a></li>
<li>The <a href="/wiki/Indonesian_Democratic_Party_of_Struggle" title="Indonesian Democratic Party of Struggle">Indonesian Democratic Party of Struggle</a> expels former <a href="/wiki/President_of_Indonesia" title="President of Indonesia">Indonesian President</a> <a href="/wiki/Joko_Widodo" title="Joko Widodo">Joko Widodo</a>, his son <a href="/wiki/Vice_President_of_Indonesia" title="Vice President of Indonesia">Vice President</a> <a class="mw-redirect" href="/wiki/Gibran_Rakabuming" title="Gibran Rakabuming">Gibran Rakabuming</a> and his son-in-law, <a href="/wiki/North_Sumatra" title="North Sumatra">North Sumatra</a> <a href="/wiki/Governor_of_North_Sumatra" title="Governor of North Sumatra">Governor-elect</a> <a href="/wiki/Bobby_Nasution" title="Bobby Nasution">Bobby Nasution</a>, following a rift over Rakabuming's candidacy as <a href="/wiki/Prabowo_Subianto" title="Prabowo Subianto">Prabowo Subianto</a>'s running mate during the <a href="/wiki/2024_Indonesian_presidential_election" title="2024 Indonesian presidential election">2024 election</a>. <a class="external text" href="https://www.bloomberg.com/news/articles/2024-12-16/indonesia-s-largest-party-expels-jokowi-after-he-backed-prabowo" rel="nofollow">(Bloomberg)</a></li></ul></div></div></div>
<link href="mw-data:TemplateStyles:r1248507241" rel="mw-deduplicated-inline-style"/><div class="current-events">
<div aria-label="December 15" class="current-events-main vevent" id="2024_December_15" role="region">
<div class="current-events-heading plainlinks">
<div class="current-events-title" role="heading"><span class="summary">December 15, 2024<span style="display:none"> (<span class="bday dtstart published updated itvstart">2024-12-15</span>)</span> (Sunday)</span>
</div>
<ul class="current-events-navbar editlink noprint"><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_15&amp;action=edit&amp;editintro=Portal:Current_events/Edit_instructions">edit</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_15&amp;action=history">history</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_15&amp;action=watch">watch</a></li>
</ul>
</div>
<div class="current-events-content description">
<p><b>Armed conflicts and attacks</b>
</p>
<ul><li><a href="/wiki/Israel%E2%80%93Hamas_war" title="Israel–Hamas war">Israel–Hamas war</a>
<ul><li><a href="/wiki/December_2024_Nuseirat_refugee_camp_attack" title="December 2024 Nuseirat refugee camp attack">December 2024 Nuseirat refugee camp attack</a>
<ul><li><a class="mw-redirect" href="/wiki/Al_Jazeera" title="Al Jazeera">Al Jazeera</a> cameraman Ahmad Al-Louh is killed in an <a href="/wiki/Israel" title="Israel">Israeli</a> airstrike on a civil defense point in the <a href="/wiki/Nuseirat_refugee_camp" title="Nuseirat refugee camp">Nuseirat refugee camp</a> in central <a href="/wiki/Gaza_Strip" title="Gaza Strip">Gaza</a>. <a class="external text" href="https://english.wafa.ps/Pages/Details/152573" rel="nofollow">(WAFA)</a> <a class="external text" href="https://www.anews.com.tr/world/2024/12/15/al-jazeera-cameraman-killed-in-israeli-airstrike-on-refugee-camp-in-gaza-strip/amp" rel="nofollow">(anews)</a></li></ul></li></ul></li>
<li><a href="/wiki/Syrian_civil_war" title="Syrian civil war">Syrian civil war</a>
<ul><li><a href="/wiki/2024_Israeli_invasion_of_Syria" title="2024 Israeli invasion of Syria">2024 Israeli invasion of Syria</a>
<ul><li><a href="/wiki/Israeli_Air_Force" title="Israeli Air Force">Israeli Air Force</a> fighter jets strike <a href="/wiki/Surface-to-air_missile" title="Surface-to-air missile">surface-to-air missile</a> and weapon depots in <a href="/wiki/Tartus_Governorate" title="Tartus Governorate">Tartus Governorate</a>, <a href="/wiki/Syria" title="Syria">Syria</a>, with the <a href="/wiki/Syrian_Observatory_for_Human_Rights" title="Syrian Observatory for Human Rights">Syrian Observatory for Human Rights</a> describing the strikes as the heaviest in the region since the start of the civil war. <a class="external text" href="https://www.barrons.com/news/syria-war-monitor-says-israel-struck-military-targets-on-syrian-coast-234e290b" rel="nofollow">(AFP via Barron's)</a></li></ul></li></ul></li></ul>
<p><b>Business and economy</b>
</p>
<ul><li><a href="/wiki/Free_trade_agreements_of_the_United_Kingdom" title="Free trade agreements of the United Kingdom">Free trade agreements of the United Kingdom</a>
<ul><li>The <a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a> joins the <a href="/wiki/Comprehensive_and_Progressive_Agreement_for_Trans-Pacific_Partnership" title="Comprehensive and Progressive Agreement for Trans-Pacific Partnership">Comprehensive and Progressive Agreement for Trans-Pacific Partnership</a>, becoming the 12th member and the first <a href="/wiki/Europe" title="Europe">European</a> member. <a class="external text" href="https://www.reuters.com/world/uk/britain-joins-trans-pacific-pact-biggest-post-brexit-trade-deal-2024-12-15/" rel="nofollow">(Reuters)</a></li></ul></li></ul>
<p><b>Disasters and accidents</b>
</p>
<ul><li><a href="/wiki/2024%E2%80%9325_South-West_Indian_Ocean_cyclone_season" title="2024–25 South-West Indian Ocean cyclone season">2024–25 South-West Indian Ocean cyclone season</a>
<ul><li>Thousands of people are believed to have been killed by <a href="/wiki/Cyclone_Chido" title="Cyclone Chido">Cyclone Chido</a> in the <a href="/wiki/Overseas_departments_and_regions_of_France" title="Overseas departments and regions of France">French overseas department</a> of <a href="/wiki/Mayotte" title="Mayotte">Mayotte</a>, with the cyclone also causing damage in the <a href="/wiki/Comoros" title="Comoros">Comoros</a> and <a href="/wiki/Mozambique" title="Mozambique">Mozambique</a>. <a class="external text" href="https://www.independent.co.uk/news/world/africa/cyclone-chido-death-toll-mayotte-french-territory-b2664744.html" rel="nofollow">(<i>The Independent</i>)</a></li></ul></li>
<li><a href="/wiki/2024_Kerch_Strait_oil_spill" title="2024 Kerch Strait oil spill">2024 Kerch Strait oil spill</a>
<ul><li>At least one person is killed when two <a href="/wiki/Russia" title="Russia">Russian</a> <a href="/wiki/Oil_tanker" title="Oil tanker">oil tankers</a>, <i>Volgoneft-212</i> and <i>Volgoneft-236</i>, are damaged due to bad weather in the <a href="/wiki/Kerch_Strait" title="Kerch Strait">Kerch Strait</a> with oil from the tankers actively leaking into the strait. <a class="external text" href="https://nos.nl/artikel/2548393-twee-russische-tankers-beschadigd-in-zwarte-zee-na-storm-olie-gelekt" rel="nofollow">(NOS)</a> <a class="external text" href="https://edition.cnn.com/2024/12/15/europe/russian-cargo-ship-distress-kerch-strait-intl/index.html" rel="nofollow">(CNN)</a></li></ul></li></ul>
<p><b>International relations</b>
</p>
<ul><li><a href="/wiki/Australia%E2%80%93Indonesia_relations" title="Australia–Indonesia relations">Australia–Indonesia relations</a>
<ul><li><a class="mw-redirect" href="/wiki/Australian_Prime_Minister" title="Australian Prime Minister">Australian Prime Minister</a> <a href="/wiki/Anthony_Albanese" title="Anthony Albanese">Anthony Albanese</a> announces that the remaining five members of the <a href="/wiki/Bali_Nine" title="Bali Nine">Bali Nine</a> <a href="/wiki/Illegal_drug_trade" title="Illegal drug trade">drug-trafficking</a> group, who were serving <a class="mw-redirect" href="/wiki/Life_sentences" title="Life sentences">life sentences</a> in <a href="/wiki/Indonesia" title="Indonesia">Indonesia</a>, have returned to <a href="/wiki/Australia" title="Australia">Australia</a> following an agreement between the two countries to end their imprisonment. <a class="external text" href="https://edition.cnn.com/2024/12/15/australia/indonesia-bali-nine-release-intl-hnk/index.html" rel="nofollow">(CNN)</a></li></ul></li>
<li><a href="/wiki/Ireland%E2%80%93Israel_relations" title="Ireland–Israel relations">Ireland–Israel relations</a>
<ul><li><a href="/wiki/Israel" title="Israel">Israel</a> announces that it will close its embassy in <a href="/wiki/Dublin" title="Dublin">Dublin</a>, <a href="/wiki/Ireland" title="Ireland">Ireland</a>, over Ireland's alleged "extreme anti-Israel policies". <a class="external text" href="https://www.reuters.com/world/israel-says-it-will-close-dublin-embassy-citing-extreme-anti-israel-policies-2024-12-15/" rel="nofollow">(Reuters)</a></li></ul></li></ul>
<p><b>Law and crime</b>
</p>
<ul><li><a href="/wiki/2024_Northeastern_United_States_drone_sightings" title="2024 Northeastern United States drone sightings">2024 Northeastern United States drone sightings</a>
<ul><li><a href="/wiki/White_House_Office" title="White House Office">White House</a> <a href="/wiki/United_States_National_Security_Council" title="United States National Security Council">National Security Council</a> spokesperson <a href="/wiki/John_Kirby_(admiral)" title="John Kirby (admiral)">John Kirby</a> says that the <a href="/wiki/United_States_Coast_Guard" title="United States Coast Guard">United States Coast Guard</a> has confirmed that there is no evidence of any "foreign-based involvement" in the unidentified drones that are being sighted over the <a href="/wiki/Northeastern_United_States" title="Northeastern United States">Northeastern United States</a>. <a class="external text" href="https://www.msn.com/en-in/news/world/we-re-not-being-told-the-truth-mysterious-drones-in-new-jersey-fuel-ufo-theories/ar-AA1vLZxX" rel="nofollow">(<i>The Times of India</i> via MSN)</a></li></ul></li>
<li><a href="/wiki/ABC_News_(United_States)" title="ABC News (United States)">ABC News</a> settles a <a href="/wiki/George_Stephanopoulos#Donald_Trump_lawsuit" title="George Stephanopoulos">defamation lawsuit</a> filed by <a href="/wiki/President-elect_of_the_United_States" title="President-elect of the United States">U.S. President-elect</a> <a href="/wiki/Donald_Trump" title="Donald Trump">Donald Trump</a> over statements made on air by anchor <a href="/wiki/George_Stephanopoulos" title="George Stephanopoulos">George Stephanopoulos</a> about the <i><a href="/wiki/E._Jean_Carroll_v._Donald_J._Trump" title="E. Jean Carroll v. Donald J. Trump">E. Jean Carroll v. Donald J. Trump</a></i> lawsuits, with ABC agreeing to pay $15 million to the <a href="/wiki/Donald_J._Trump_Presidential_Library" title="Donald J. Trump Presidential Library">Trump presidential library</a> as well as $1 million for legal fees. <a class="external text" href="https://apnews.com/article/abc-trump-lawsuit-defamation-stephanopoulos-04aea8663310af39ae2a85f4c1a56d68" rel="nofollow">(AP)</a></li></ul></div></div></div>
<link href="mw-data:TemplateStyles:r1248507241" rel="mw-deduplicated-inline-style"/><div class="current-events">
<div aria-label="December 14" class="current-events-main vevent" id="2024_December_14" role="region">
<div class="current-events-heading plainlinks">
<div class="current-events-title" role="heading"><span class="summary">December 14, 2024<span style="display:none"> (<span class="bday dtstart published updated itvstart">2024-12-14</span>)</span> (Saturday)</span>
</div>
<ul class="current-events-navbar editlink noprint"><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_14&amp;action=edit&amp;editintro=Portal:Current_events/Edit_instructions">edit</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_14&amp;action=history">history</a></li><li><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/2024_December_14&amp;action=watch">watch</a></li>
</ul>
</div>
<div class="current-events-content description">
<p><b>Armed conflicts and attacks</b>
</p>
<ul><li><a href="/wiki/Syrian_civil_war" title="Syrian civil war">Syrian civil war</a>
<ul><li><a href="/wiki/Operation_Dawn_of_Freedom" title="Operation Dawn of Freedom">Operation Dawn of Freedom</a>, <a href="/wiki/Turkish_involvement_in_the_Syrian_civil_war" title="Turkish involvement in the Syrian civil war">Turkish involvement in the Syrian civil war</a>
<ul><li><a href="/wiki/2024_Kobani_clashes" title="2024 Kobani clashes">2024 Kobani clashes</a>
<ul><li>The <a href="/wiki/Turkish_Armed_Forces" title="Turkish Armed Forces">Turkish Armed Forces</a> and pro-<a href="/wiki/Turkey" title="Turkey">Turkish</a> <a href="/wiki/Turkish_involvement_in_the_Syrian_civil_war" title="Turkish involvement in the Syrian civil war">rebel groups</a> amass troops on the <a href="/wiki/Syria%E2%80%93Turkey_border" title="Syria–Turkey border">Syria–Turkey border</a> outside of <a href="/wiki/Kobani" title="Kobani">Kobani</a>, <a href="/wiki/Aleppo_Governorate" title="Aleppo Governorate">Aleppo Governorate</a>, <a href="/wiki/Syria" title="Syria">Syria</a>, and along the nearby Qarqozak Bridge, following several breaches in an <a href="/wiki/International_community" title="International community">internationally</a>-brokered <a href="/wiki/Ceasefire" title="Ceasefire">temporary ceasefire agreement</a> between them and the <a href="/wiki/Syrian_Democratic_Forces" title="Syrian Democratic Forces">Syrian Democratic Forces</a>. <a class="external text" href="https://www.enabbaladi.net/729107/%D9%88%D9%82%D9%81-%D8%A5%D8%B7%D9%84%D8%A7%D9%82-%D8%A7%D9%84%D9%86%D8%A7%D8%B1-%D9%8A%D9%81%D8%B4%D9%84-%D8%A8%D9%8A%D9%86-%D9%82%D8%B3%D8%AF-%D9%88%D8%AA%D8%B1%D9%83%D9%8A%D8%A7/" rel="nofollow">(<i>Enab Baladi</i>)</a> <a class="external text" href="https://rojnews.news/ar/?p=206220" rel="nofollow">(<i>Roj News</i>)</a></li>
<li><a href="/wiki/Iraq" title="Iraq">Iraqi</a> water experts issue warnings regarding cracks that have formed in the <a href="/wiki/Tishrin_Dam" title="Tishrin Dam">Tishrin Dam</a> in Aleppo Governorate following continuous bombardment by Turkish and pro-Turkish forces and the possibility of further damage causing a <a href="/wiki/Dam_failure" title="Dam failure">dam failure</a>. <a class="external text" href="https://waradana.com/article/190512-%D8%AA%D8%B4%D9%82%D9%82%D8%A7%D8%AA-%D8%A8%D8%AC%D8%AF%D8%A7%D8%B1-%D8%B3%D8%AF-%D8%AA%D8%B4%D8%B1%D9%8A%D9%86-%D8%A7%D9%84%D8%B3%D9%88%D8%B1%D9%8A-%D8%AA%D9%82%D9%84%D9%82-%D8%A7%D9%84%D8%B9%D8%B1%D8%A7%D9%82" rel="nofollow">(Waradana)</a></li></ul></li></ul></li></ul></li>
<li><a href="/wiki/Somali_Civil_War_(2009%E2%80%93present)" title="Somali Civil War (2009–present)">Somali Civil War</a>
<ul><li><a href="/wiki/Puntland%E2%80%93Somaliland_dispute" title="Puntland–Somaliland dispute">Puntland–Somaliland dispute</a>
<ul><li><a href="/wiki/Las_Anod_conflict_(2023%E2%80%93present)" title="Las Anod conflict (2023–present)">Las Anod conflict</a>
<ul><li>Two <a href="/wiki/Somaliland_National_Army" title="Somaliland National Army">Somaliland troops</a> are killed and eight others are injured in fighting between <a href="/wiki/Somaliland" title="Somaliland">Somaliland</a> and <a href="/wiki/Khatumo_State" title="Khatumo State">SSC-Khatumo</a> forces in <a href="/wiki/Erigavo" title="Erigavo">Erigavo</a>, <a href="/wiki/Sanaag" title="Sanaag">Sanaag</a>, <a href="/wiki/Somaliland" title="Somaliland">Somaliland</a>. <a class="external text" href="https://www.idilnews.com/heavy-clashes-erupt-in-disputed-erigavo-between-somaliland-and-ssc-khatumo-forces/" rel="nofollow">(<i>Idil News</i>)</a></li></ul></li></ul></li>
<li>At least eight people were killed and ten others injured in a deadly inter-clan conflict in a rural area under the <a href="/wiki/El_Buur" title="El Buur">El Buur district</a> of <a class="mw-redirect" href="/wiki/Galgadud" title="Galgadud">Galgadud</a> region in south-central <a href="/wiki/Somalia" title="Somalia">Somalia</a> <a class="external text" href="https://www.hiiraan.com/news4/2024/Dec/199368/at_least_eight_killed_in_clan_conflict_in_galgadud_region.aspx" rel="nofollow">(Hiiraan Online)</a></li></ul></li>
<li><a href="/wiki/Israel%E2%80%93Hamas_war" title="Israel–Hamas war">Israel–Hamas war</a>
<ul><li><a href="/wiki/Israeli_invasion_of_the_Gaza_Strip" title="Israeli invasion of the Gaza Strip">Israeli invasion of the Gaza Strip</a>
<ul><li>At least 52 <a href="/wiki/Palestinians" title="Palestinians">Palestinians</a> are killed in <a href="/wiki/Israel_Defense_Forces" title="Israel Defense Forces">Israeli</a> airstrikes on two schools in <a href="/wiki/Gaza_City" title="Gaza City">Gaza City</a> and <a href="/wiki/Rafah" title="Rafah">Rafah</a> in the <a href="/wiki/Gaza_Strip" title="Gaza Strip">Gaza Strip</a>. <a class="external text" href="https://www.aljazeera.com/news/2024/12/14/israel-bombards-hospital-school-in-gaza-one-day-after-nuseirat-massacre" rel="nofollow">(Al Jazeera)</a></li></ul></li></ul></li></ul>
<p><b>Business and economy</b>
</p>
<ul><li><a href="/wiki/Moody%27s_Ratings" title="Moody's Ratings">Moody's</a> downgrades <a href="/wiki/France" title="France">France</a>'s <a href="/wiki/Bond_credit_rating" title="Bond credit rating">bond credit rating</a> to "Aa3" from "<a href="/wiki/Bond_credit_rating#Credit_rating_codes_and_classes" title="Bond credit rating">Aa2</a>" following the <a href="/wiki/Collapse_of_the_Barnier_government" title="Collapse of the Barnier government">collapse of the Barnier government</a>, citing "<a href="/wiki/Political_fragmentation" title="Political fragmentation">political fragmentation</a>" as a threat to the country's ability to reduce its <a href="/wiki/List_of_countries_by_government_debt#Government_debt_as_a_percentage_of_GDP" title="List of countries by government debt">public debt</a> and lower its <a class="extiw" href="https://fr.wikipedia.org/wiki/D%C3%A9ficit_public_de_la_France" title="fr:Déficit public de la France">deficit</a>. <a class="external text" href="https://www.dw.com/en/moodys-lowers-frances-credit-rating-over-sliding-finances/a-71054893" rel="nofollow">(DW)</a> <a class="external text" href="https://www.politico.eu/article/frances-credit-rating-lowered-by-moodys/" rel="nofollow">(Politico)</a></li></ul>
<p><b>Disasters and accidents</b>
</p>
<ul><li><a href="/wiki/2024%E2%80%9325_South-West_Indian_Ocean_cyclone_season" title="2024–25 South-West Indian Ocean cyclone season">2024–25 South-West Indian Ocean cyclone season</a>
<ul><li><a href="/wiki/Cyclone_Chido" title="Cyclone Chido">Cyclone Chido</a> kills two people and causes "catastrophic" damage to the island of <a href="/wiki/Mayotte" title="Mayotte">Mayotte</a>, with many more feared dead on the island. <a class="external text" href="https://www.france24.com/en/live-news/20241214-cyclone-batters-french-indian-ocean-island-of-mayotte" rel="nofollow">(France 24)</a> <a class="external text" href="https://www.rfi.fr/en/international-news/20241214-france-fears-heavy-toll-as-cyclone-chido-batters-mayotte" rel="nofollow">(RFI)</a></li></ul></li></ul>
<p><b>International relations</b>
</p>
<ul><li>The 24th summit of the <a href="/wiki/ALBA" title="ALBA">Bolivarian Alliance for the Peoples of Our America</a> (ALBA-TCP) is held in <a href="/wiki/Caracas" title="Caracas">Caracas</a>, <a href="/wiki/Venezuela" title="Venezuela">Venezuela</a>. <a class="external text" href="https://www.albatcp.org/en/2024/12/14/a-hug-and-20-years-of-integration-president-of-venezuela-opened-24th-alba-tcp-summit/" rel="nofollow">(ALBA-TCP News)</a></li></ul>
<p><b>Law and crime</b>
</p>
<ul><li><a class="mw-redirect" href="/wiki/2024_New_Jersey_drone_sightings" title="2024 New Jersey drone sightings">2024 New Jersey drone sightings</a>
<ul><li>Flights are temporarily suspended at <a href="/wiki/Stewart_International_Airport" title="Stewart International Airport">Stewart International Airport</a> in <a href="/wiki/New_York_(state)" title="New York (state)">New York</a>, <a href="/wiki/United_States" title="United States">United States</a>, after the <a href="/wiki/Federal_Aviation_Administration" title="Federal Aviation Administration">Federal Aviation Administration</a> alerts them to a drone sighting in the area. The incident prompts <a href="/wiki/Governor_of_New_York" title="Governor of New York">Governor</a> <a href="/wiki/Kathy_Hochul" title="Kathy Hochul">Kathy Hochul</a> to call for federal government intervention amid a series of widespread drone sightings across the <a href="/wiki/Northeastern_United_States" title="Northeastern United States">Northeastern United States</a>. <a class="external text" href="https://abcnews.go.com/US/story?id=116792168" rel="nofollow">(ABC News)</a></li>
<li>The <a href="/wiki/Public_Service_Enterprise_Group" title="Public Service Enterprise Group">Public Service Enterprise Group</a> files a request with the Federal Aviation Administration to close the <a href="/wiki/Airspace" title="Airspace">airspace</a> over two of its <a href="/wiki/Nuclear_power_plant" title="Nuclear power plant">nuclear power plants</a> to all aircraft after unidentified drones were spotted hovering over the facilities in <a href="/wiki/New_Jersey" title="New Jersey">New Jersey</a>. <a class="external text" href="https://www.msn.com/en-us/money/companies/nj-s-largest-utility-firm-begs-feds-to-shut-down-airspace-over-nuclear-plant-as-mystery-drones-spotted/ar-AA1vR5WX?apiversion=v2&amp;noservercache=1&amp;domshim=1&amp;renderwebcomponents=1&amp;wcseo=1&amp;batchservertelemetry=1&amp;noservertelemetry=1" rel="nofollow">(<i>The New York Post</i> via MSN)</a></li></ul></li>
<li><a href="/wiki/2024_Nord_Department_killings" title="2024 Nord Department killings">2024 Nord Department killings</a>
<ul><li>Five people are killed during a <a href="/wiki/Spree_killer" title="Spree killer">shooting spree</a> between <a href="/wiki/Dunkirk" title="Dunkirk">Dunkirk</a> and <a href="/wiki/Loon-Plage" title="Loon-Plage">Loon-Plage</a>, in <a href="/wiki/Nord_(French_department)" title="Nord (French department)">Nord Department</a>, <a href="/wiki/France" title="France">France</a>. A man is detained. <a class="external text" href="https://apnews.com/article/france-shootings-five-killed-migrants-3b49999be4c5b8abcf08ed63fdb39d66" rel="nofollow">(AP)</a></li></ul></li>
<li>One police officer is killed and at least two others are injured in an explosion in <a href="/wiki/Dnipro" title="Dnipro">Dnipro</a>, <a href="/wiki/Ukraine" title="Ukraine">Ukraine</a>. <a class="external text" href="https://www.ukrinform.net/rubric-emergencies/3938072-explosion-in-dnipro-one-killed-two-police-officers-among-wounded.html" rel="nofollow">(Ukrinform)</a></li></ul>
<p><b>Politics and elections</b>
</p>
<ul><li><a href="/wiki/2024_Georgian_presidential_election" title="2024 Georgian presidential election">2024 Georgian presidential election</a>
<ul><li><a href="/wiki/President_of_Georgia" title="President of Georgia">President of Georgia</a> <a href="/wiki/Salome_Zourabichvili" title="Salome Zourabichvili">Salome Zourabichvili</a> states that she will not recognize the scheduled presidential election results as legitimate due to the election not being a <a href="/wiki/Direct_election" title="Direct election">direct vote</a>, and repeats her intention to remain as president until new <a href="/wiki/General_election" title="General election">parliamentary elections</a> are held. <a class="external text" href="https://www.aa.com.tr/en/europe/georgian-president-says-she-does-not-recognize-presidential-election-as-legitimate/3424309" rel="nofollow">(Anadolu Agency)</a></li>
<li><a href="/wiki/Georgian_Dream" title="Georgian Dream">Georgian Dream</a> candidate <a href="/wiki/Mikheil_Kavelashvili" title="Mikheil Kavelashvili">Mikheil Kavelashvili</a> is elected as president by the electoral college. Major opposition parties do not participate in the vote, having <a href="/wiki/Boycott" title="Boycott">boycotted</a> Parliament since the <a href="/wiki/2024_Georgian_parliamentary_election" title="2024 Georgian parliamentary election">parliamentary election</a> in October. <a class="external text" href="https://edition.cnn.com/2024/12/14/europe/georgia-president-vote-mikheil-kavelashvili-intl/index.html" rel="nofollow">(CNN)</a></li></ul></li>
<li><a href="/wiki/Impeachment_of_Yoon_Suk_Yeol" title="Impeachment of Yoon Suk Yeol">Impeachment of Yoon Suk Yeol</a>
<ul><li><a href="/wiki/South_Korea" title="South Korea">South Korea</a>'s <a href="/wiki/National_Assembly_(South_Korea)" title="National Assembly (South Korea)">National Assembly</a> votes to impeach <a href="/wiki/President_of_South_Korea" title="President of South Korea">president</a> <a href="/wiki/Yoon_Suk_Yeol" title="Yoon Suk Yeol">Yoon Suk Yeol</a> over his <a href="/wiki/2024_South_Korean_martial_law_crisis" title="2024 South Korean martial law crisis">recent attempt</a> to impose <a href="/wiki/Martial_law" title="Martial law">martial law</a>. <a class="external text" href="https://www.theguardian.com/world/live/2024/dec/14/south-korea-impeachment-vote-yoon-suk-yeol" rel="nofollow">(<i>The Guardian</i>)</a></li></ul></li></ul></div></div></div>
<div class="current-events-more current-events-main noprint"><a href="/wiki/Portal:Current_events/December_2024" title="Portal:Current events/December 2024">More December 2024 events...</a>
</div>
</div>
<div class="p-current-events-calside">
<style data-mw-deduplicate="TemplateStyles:r1209890462">.mw-parser-output .p-current-events-calendar{margin:0.7em 0;border:1px solid #cedff2;padding:0.5em;background-color:#f5faff;color:#333;font-size:75%;text-align:center}.mw-parser-output .p-current-events-calendar>div{padding:0.2em 0;background-color:#cedff2;color:#333}.mw-parser-output .p-current-events-calendar span[role="separator"]{margin:0 0.6em}</style><div class="p-current-events-calendar"><div><b>Time</b>: 22:08 <a href="/wiki/Coordinated_Universal_Time" title="Coordinated Universal Time">UTC</a><span role="separator">|</span><b>Day</b>: <a class="mw-redirect" href="/wiki/20_December" title="20 December">20 December</a><span class="noprint" role="separator"></span>
</div>
</div>
<style data-mw-deduplicate="TemplateStyles:r1053509144">.mw-parser-output .current-events-calendar{clear:right;max-width:350px;width:100%;margin:auto;padding:0.2em;font-size:88%;line-height:1.5;border-spacing:3px;border:1px solid #cedff2;text-align:center;background-color:#f5faff;color:black}.mw-parser-output .current-events-calendar tbody a{font-weight:bold;width:100%;display:inline-block}.mw-parser-output .current-events-calendar-archive{margin:8px 0 0 0}.mw-parser-output .current-events-calendar caption{font-weight:bold;background-color:#cedff2;line-height:1.6;padding:0.2em}.mw-parser-output .current-events-calendar caption span:first-child{float:left;width:calc(14% + 6px)}.mw-parser-output .current-events-calendar caption span:last-child{float:right;width:calc(14% + 6px)}.mw-parser-output .current-events-calendar th{width:14%}.mw-parser-output .current-events-calendar-footer td{padding-top:3px;padding-bottom:5px;text-align:right}.mw-parser-output .current-events-calendar-footer td a{font-weight:normal;width:initial}</style><table class="current-events-calendar"><caption><span class="noprint"><a href="/wiki/Portal:Current_events/November_2024" title="Portal:Current events/November 2024">◀</a></span><span><a href="/wiki/Portal:Current_events/December_2024" title="Portal:Current events/December 2024">December 2024</a></span><span class="noprint"><a href="/wiki/Portal:Current_events/January_2025" title="Portal:Current events/January 2025">▶</a></span></caption><tbody><tr><th>S</th><th>M</th><th>T</th><th>W</th><th>T</th><th>F</th><th>S</th></tr><tr><td>1</td><td>2</td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td></tr><tr><td>8</td><td>9</td><td>10</td><td>11</td><td>12</td><td>13</td><td><a href="#2024_December_14">14</a></td></tr><tr><td><a href="#2024_December_15">15</a></td><td><a href="#2024_December_16">16</a></td><td><a href="#2024_December_17">17</a></td><td><a href="#2024_December_18">18</a></td><td><a href="#2024_December_19">19</a></td><td><a href="#2024_December_20">20</a></td><td>21</td></tr><tr><td>22</td><td>23</td><td>24</td><td>25</td><td>26</td><td>27</td><td>28</td></tr><tr><td>29</td><td>30</td><td>31</td><td></td><td></td><td></td><td></td></tr><tr class="current-events-calendar-footer noprint"><td colspan="7"><a href="/wiki/Portal:Current_events/December_2024" title="Portal:Current events/December 2024">More December 2024 events...   </a></td></tr></tbody></table>
<div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">Wikimedia portal</div>
<style data-mw-deduplicate="TemplateStyles:r1235901060">.mw-parser-output .current-events-sidebar-header{clear:both;margin:0.7em 0;border:1px solid #cedff2;padding:0.5em;background-color:#f8f9fa;color:#333;text-align:center;font-size:70%;font-style:italic}.mw-parser-output .current-events-sidebar{margin:1.1em 0;border:1px solid #cedff2;padding:0.4em;font-size:88%;background-color:#f5faff;color:#333}.mw-parser-output .current-events-sidebar::after{content:"";clear:both;display:table}.mw-parser-output .current-events-sidebar>div:not(.mw-collapsible-content){padding:0 0.4em;background-color:#cedff2;color:#333}.mw-parser-output .current-events-sidebar>div>.mw-heading2{line-height:inherit;font-family:inherit;font:inherit;border:inherit;padding-top:inherit;padding-bottom:inherit;margin:inherit;margin-top:inherit}.mw-parser-output .current-events-sidebar>div>div>h2{display:block;margin:0;border:none;padding:0;font-size:125%;line-height:inherit;font-family:inherit;font-weight:bold}.mw-parser-output .current-events-sidebar h3{font-size:inherit}.mw-parser-output .current-events-sidebar .editlink{font-size:85%;text-align:right}</style>
<div class="noprint" style="clear:both; margin:0.7em 0; border:1px solid #cedff2; padding:0.7em 0.5em; background-color: #f8f9fa; line-height:2; text-align:center; font-size:80%"><a href="/wiki/Wikipedia:How_the_Current_events_page_works" title="Wikipedia:How the Current events page works">About this page</a> <br/><a href="/wiki/Wikipedia:Current_events_noticeboard" title="Wikipedia:Current events noticeboard">Report a dispute</a> • <a href="/wiki/Wikipedia:Wikipedia_Signpost" title="Wikipedia:Wikipedia Signpost">News about Wikipedia</a>
</div>
<div aria-labelledby="Ongoing_events" class="mw-collapsible current-events-sidebar" role="region" style="width:30em">
<div><div class="mw-heading mw-heading2"><h2 id="Ongoing_events">Ongoing events</h2></div></div>
<div class="mw-collapsible-content">
<div class="mw-heading mw-heading3"><h3 id="Disasters">Disasters</h3></div>
<ul><li><a href="/wiki/2020%E2%80%932024_H5N1_outbreak#2024" title="2020–2024 H5N1 outbreak">Avian flu outbreak</a></li>
<li><a href="/wiki/Haitian_crisis_(2018%E2%80%93present)" title="Haitian crisis (2018–present)">Haitian crisis</a></li>
<li><a href="/wiki/2024_Kwango_province_malaria_outbreak" title="2024 Kwango province malaria outbreak">Kwango province malaria outbreak</a></li>
<li><a href="/wiki/Opioid_epidemic_in_the_United_States" title="Opioid epidemic in the United States">United States opioid epidemic</a></li></ul>
<div class="mw-heading mw-heading3"><h3 id="Economics">Economics</h3></div>
<ul><li><a href="/wiki/Chinese_property_sector_crisis_(2020%E2%80%93present)" title="Chinese property sector crisis (2020–present)">Chinese property sector crisis</a></li>
<li><a href="/wiki/German_economic_crisis_(2022%E2%80%93present)" title="German economic crisis (2022–present)">German economic crisis</a></li>
<li><a href="/wiki/2021%E2%80%93present_United_Kingdom_cost-of-living_crisis" title="2021–present United Kingdom cost-of-living crisis">United Kingdom cost-of-living crisis</a></li>
<li><a href="/wiki/2023%E2%80%932024_video_game_industry_layoffs" title="2023–2024 video game industry layoffs">Video game industry layoffs</a></li></ul>
<div class="mw-heading mw-heading3"><h3 id="Politics">Politics</h3></div>
<ul><li><a href="/wiki/Mexico%E2%80%93United_States_border_crisis#Biden_administration_(2021–2025)" title="Mexico–United States border crisis">Mexico–United States border crisis</a></li>
<li><a href="/wiki/Territorial_disputes_in_the_South_China_Sea" title="Territorial disputes in the South China Sea">South China Sea territorial disputes</a></li>
<li><a href="/wiki/2024_Northeastern_United_States_drone_sightings" title="2024 Northeastern United States drone sightings">United States drone sightings</a></li>
<li><a href="/wiki/2024_Venezuelan_political_crisis" title="2024 Venezuelan political crisis">Venezuelan political crisis</a></li></ul>
<div class="mw-heading mw-heading3"><h3 id="Protests_and_strikes">Protests and strikes</h3></div>
<ul><li><a href="/wiki/2024_Georgian_post-election_protests" title="2024 Georgian post-election protests">Georgian post-election protests</a></li>
<li><a href="/wiki/Israel%E2%80%93Hamas_war_protests" title="Israel–Hamas war protests">Israel–Hamas war protests</a></li>
<li><a href="/wiki/Impeachment_of_Yoon_Suk_Yeol" title="Impeachment of Yoon Suk Yeol">South Korean presidential impeachment</a></li>
<li><a href="/wiki/November_2024%E2%80%93present_United_Kingdom_farmers%27_protests" title="November 2024–present United Kingdom farmers' protests">United Kingdom farmers' protests</a></li></ul>
<div class="editlink noprint plainlinks"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/Sidebar&amp;action=edit">edit section</a></div>
</div>
</div>
<div aria-labelledby="Elections_and_referenda" class="mw-collapsible current-events-sidebar" role="region" style="width:30em">
<div><div class="mw-heading mw-heading2"><h2 id="Elections_and_referendums"><a href="/wiki/2024_national_electoral_calendar" title="2024 national electoral calendar">Elections and referendums</a></h2></div></div>
<div class="mw-collapsible-content">
<div class="mw-heading mw-heading3"><h3 id="Recent">Recent</h3></div>
<ul><li><b><a href="/wiki/2024_national_electoral_calendar#December" title="2024 national electoral calendar">December</a></b></li></ul>
<dl><dd><ul><li><span style="visibility:hidden;color:transparent;">0</span>6: <b><a href="/wiki/Elections_in_Mauritius" title="Elections in Mauritius">Mauritius</a></b>, <a href="/wiki/2024_Mauritian_presidential_election" title="2024 Mauritian presidential election">President <span style="font-size:90%;">(indirect)</span></a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>6: <i><b><a href="/wiki/Elections_in_Aruba" title="Elections in Aruba">Aruba</a></b></i>, <i><a href="/wiki/2024_Aruban_general_election" title="2024 Aruban general election">Parliament</a></i></li>
<li><span style="visibility:hidden;color:transparent;">0</span>7: <b><a href="/wiki/Elections_in_Ghana" title="Elections in Ghana">Ghana</a></b>, <a href="/wiki/2024_Ghanaian_general_election" title="2024 Ghanaian general election">President, Parliament</a></li>
<li>14: <b><a href="/wiki/Elections_in_Georgia_(country)" title="Elections in Georgia (country)">Georgia</a></b>, <a href="/wiki/2024_Georgian_presidential_election" title="2024 Georgian presidential election">President <span style="font-size:90%;">(indirect)</span></a></li></ul></dd></dl>
<div class="mw-heading mw-heading3"><h3 id="Upcoming">Upcoming</h3></div>
<dl><dd><ul><li>29: <b><a href="/wiki/Elections_in_Chad" title="Elections in Chad">Chad</a></b>, <a href="/wiki/2024_Chadian_parliamentary_election" title="2024 Chadian parliamentary election">National Assembly</a></li>
<li>29: <b><a href="/wiki/Elections_in_Croatia" title="Elections in Croatia">Croatia</a></b>, <a href="/wiki/2024_Croatian_presidential_election" title="2024 Croatian presidential election">President </a></li></ul></dd></dl>
<div class="editlink noprint plainlinks"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/Sidebar&amp;action=edit">edit section</a></div>
</div>
</div>
<div aria-labelledby="Trials" class="mw-collapsible current-events-sidebar" role="region" style="width:30em">
<div><div class="mw-heading mw-heading2"><h2 id="Trials">Trials</h2></div></div>
<div class="mw-collapsible-content">
<div class="mw-heading mw-heading3"><h3 id="Recently_concluded">Recently concluded</h3></div>
<ul><li>France:<span style="visibility:hidden;color:transparent;">0</span><a href="/wiki/Mazan_rapes#Indictment_and_trial" title="Mazan rapes">Dominique Pélicot</a></li></ul>
<div class="mw-heading mw-heading3"><h3 id="Ongoing">Ongoing</h3></div>
<ul><li>Kosovo:<span style="visibility:hidden;color:transparent;">0</span><a href="/wiki/Kosovo_Specialist_Chambers" title="Kosovo Specialist Chambers">Specialist Chambers</a></li>
<li>ICC:<span style="visibility:hidden;color:transparent;">0</span><a href="/wiki/Ali_Kushayb" title="Ali Kushayb">Ali Kushayb</a>  •  <a href="/wiki/Mahamat_Said_Abdel_Kani" title="Mahamat Said Abdel Kani">Mahamat Said Abdel Kani</a></li></ul>
<div class="editlink noprint plainlinks"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/Sidebar&amp;action=edit">edit section</a></div>
</div>
</div>
<div aria-labelledby="Sport" class="mw-collapsible current-events-sidebar" role="region" style="width:30em">
<div><div class="mw-heading mw-heading2"><h2 id="Sports"><a href="/wiki/2024_in_sports" title="2024 in sports">Sports</a></h2></div></div>
<div class="mw-collapsible-content">
<ul><li><a href="/wiki/2024_in_American_football" title="2024 in American football">American football</a></li></ul>
<dl><dd><ul><li><a href="/wiki/2024_NFL_season" title="2024 NFL season">2024 NFL season</a></li>
<li><a href="/wiki/2024_NCAA_Division_I_FBS_football_season" title="2024 NCAA Division I FBS football season">2024 NCAA Division I FBS season</a></li></ul></dd></dl>
<ul><li><a href="/wiki/2024_in_association_football" title="2024 in association football">Association football</a></li></ul>
<dl><dd><ul><li><a href="/wiki/2024%E2%80%9325_UEFA_Champions_League" title="2024–25 UEFA Champions League">2024–25 UEFA Champions League</a></li>
<li><a href="/wiki/2024%E2%80%9325_UEFA_Europa_League" title="2024–25 UEFA Europa League">2024–25 UEFA Europa League</a></li>
<li><a href="/wiki/2024%E2%80%9325_UEFA_Conference_League" title="2024–25 UEFA Conference League">2024–25 UEFA Conference League</a></li>
<li><a href="/wiki/2024%E2%80%9325_UEFA_Women%27s_Champions_League" title="2024–25 UEFA Women's Champions League">2024–25 UEFA Women's Champions League</a></li>
<li><a href="/wiki/2024%E2%80%9325_Premier_League" title="2024–25 Premier League">2024–25 Premier League</a></li>
<li><a href="/wiki/2024%E2%80%9325_Serie_A" title="2024–25 Serie A">2024–25 Serie A</a></li>
<li><a href="/wiki/2024%E2%80%9325_La_Liga" title="2024–25 La Liga">2024–25 La Liga</a></li>
<li><a href="/wiki/2024%E2%80%9325_Bundesliga" title="2024–25 Bundesliga">2024–25 Bundesliga</a></li>
<li><a href="/wiki/2024%E2%80%9325_Ligue_1" title="2024–25 Ligue 1">2024–25 Ligue 1</a></li></ul></dd></dl>
<ul><li><a href="/wiki/2024_in_basketball" title="2024 in basketball">Basketball</a></li></ul>
<dl><dd><ul><li><a href="/wiki/2024%E2%80%9325_NBA_season" title="2024–25 NBA season">2024–25 NBA season</a></li>
<li><a href="/wiki/2024%E2%80%9325_EuroLeague" title="2024–25 EuroLeague">2024–25 EuroLeague</a></li></ul></dd></dl>
<ul><li><a href="/wiki/International_cricket_in_2024" title="International cricket in 2024">International cricket</a></li></ul>
<dl><dd><ul><li><a href="/wiki/2023%E2%80%932025_ICC_World_Test_Championship" title="2023–2025 ICC World Test Championship">2023–25 ICC World Test Championship</a></li></ul></dd></dl>
<ul><li><a href="/wiki/2025_in_ice_hockey" title="2025 in ice hockey">Ice hockey</a></li></ul>
<dl><dd><ul><li><a href="/wiki/2024%E2%80%9325_NHL_season" title="2024–25 NHL season">2024–25 NHL season</a></li>
<li><a href="/wiki/2024%E2%80%9325_PWHL_season" title="2024–25 PWHL season">2024–25 PWHL season</a></li></ul></dd></dl>
<ul><li><a href="/wiki/2024_in_tennis" title="2024 in tennis">Tennis</a></li></ul>
<dl><dd><ul><li><a href="/wiki/2024_ATP_Tour" title="2024 ATP Tour">2024 ATP Tour</a></li></ul></dd></dl>
<div style="font-weight:bold">More details – <a href="/wiki/Portal:Current_events/Sports" title="Portal:Current events/Sports">current sports events</a></div>
<div class="editlink noprint plainlinks"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/Sidebar&amp;action=edit">edit section</a></div>
</div>
</div>
<div aria-labelledby="Recent_deaths" class="mw-collapsible current-events-sidebar" role="region" style="width:30em">
<div><div class="mw-heading mw-heading2"><h2 id="Recent_deaths">Recent deaths</h2></div></div>
<div class="mw-collapsible-content">
<style data-mw-deduplicate="TemplateStyles:r1116690953">.mw-parser-output .gridlist ul{display:grid;grid-template-columns:repeat(2,1fr)}body:not(.skin-minerva) .mw-parser-output .gridlist ul{grid-column-gap:2.6em}body.skin-minerva .mw-parser-output .gridlist ul{grid-column-gap:2em}</style><div class="gridlist"><div class="mw-heading mw-heading3"><h3 id="December"><a href="/wiki/Deaths_in_2024" title="Deaths in 2024">December</a></h3></div>
<ul><li>18: <a href="/wiki/Slim_Dunlap" title="Slim Dunlap">Slim Dunlap</a></li>
<li>17: <a href="/wiki/Igor_Kirillov_(general)" title="Igor Kirillov (general)">Igor Kirillov</a></li>
<li>17: <a href="/wiki/Marisa_Paredes" title="Marisa Paredes">Marisa Paredes</a></li>
<li>17: <a href="/wiki/J%C4%81nis_Timma" title="Jānis Timma">Jānis Timma</a></li>
<li>16: <a href="/wiki/Dick_Van_Arsdale" title="Dick Van Arsdale">Dick Van Arsdale</a></li>
<li>15: <a href="/wiki/Zakir_Hussain_(musician)" title="Zakir Hussain (musician)">Zakir Hussain</a></li>
<li>14: <a href="/wiki/Isak_Andic" title="Isak Andic">Isak Andic</a></li>
<li>11: <a href="/wiki/David_Bonderman" title="David Bonderman">David Bonderman</a></li>
<li>11: <a href="/wiki/Khalil_Haqqani" title="Khalil Haqqani">Khalil Haqqani</a></li>
<li>10: <a href="/wiki/Rocky_Colavito" title="Rocky Colavito">Rocky Colavito</a></li>
<li>10: <a href="/wiki/Michael_Cole_(actor)" title="Michael Cole (actor)">Michael Cole</a></li>
<li>10: <a href="/wiki/The_Amazing_Kreskin" title="The Amazing Kreskin">The Amazing Kreskin</a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>9: <a href="/wiki/Nikki_Giovanni" title="Nikki Giovanni">Nikki Giovanni</a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>6: <a href="/wiki/Miho_Nakayama" title="Miho Nakayama">Miho Nakayama</a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>6: <a href="/wiki/Maggie_Tabberer" title="Maggie Tabberer">Maggie Tabberer</a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>4: <a href="/wiki/Princess_Birgitta_of_Sweden" title="Princess Birgitta of Sweden">Princess Birgitta</a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>4: <a href="/wiki/Brian_Thompson_(businessman)" title="Brian Thompson (businessman)">Brian Thompson</a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>4: <a href="/wiki/Chiung_Yao" title="Chiung Yao">Chiung Yao</a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>2: <a href="/wiki/Neale_Fraser" title="Neale Fraser">Neale Fraser</a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>2: <a href="/wiki/Debbie_Mathers" title="Debbie Mathers">Debbie Mathers</a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>2: <a href="/wiki/Israel_V%C3%A1zquez" title="Israel Vázquez">Israel Vázquez</a></li>
<li><span style="visibility:hidden;color:transparent;">0</span>1: <a href="/wiki/Terry_Griffiths" title="Terry Griffiths">Terry Griffiths</a></li></ul>
<div class="mw-heading mw-heading3"><h3 id="November"><a href="/wiki/Deaths_in_November_2024" title="Deaths in November 2024">November</a></h3></div>
<ul><li>30: <a href="/wiki/Lou_Carnesecca" title="Lou Carnesecca">Lou Carnesecca</a></li>
<li>29: <a href="/wiki/Marshall_Brickman" title="Marshall Brickman">Marshall Brickman</a></li>
<li>29: <a href="/wiki/Will_Cullen_Hart" title="Will Cullen Hart">Will Cullen Hart</a></li>
<li>29: <a href="/wiki/Wayne_Northrop" title="Wayne Northrop">Wayne Northrop</a></li>
<li>28: <a href="/wiki/Silvia_Pinal" title="Silvia Pinal">Silvia Pinal</a></li>
<li>28: <a href="/wiki/Prince_Johnson" title="Prince Johnson">Prince Johnson</a></li>
<li>28: <a href="/wiki/Ananda_Krishnan" title="Ananda Krishnan">Ananda Krishnan</a></li>
<li>27: <a href="/wiki/Mary_McGee" title="Mary McGee">Mary McGee</a></li>
<li>26: <a href="/wiki/Jim_Abrahams" title="Jim Abrahams">Jim Abrahams</a></li>
<li>26: <a href="/wiki/Bob_Bryar" title="Bob Bryar">Bob Bryar</a></li>
<li>25: <a href="/wiki/Earl_Holliman" title="Earl Holliman">Earl Holliman</a></li>
<li>25: <a href="/wiki/Hal_Lindsey" title="Hal Lindsey">Hal Lindsey</a></li>
<li>24: <a href="/wiki/Barbara_Taylor_Bradford" title="Barbara Taylor Bradford">Barbara Taylor Bradford</a></li>
<li>24: <a href="/wiki/Breyten_Breytenbach" title="Breyten Breytenbach">Breyten Breytenbach</a></li>
<li>24: <a href="/wiki/Helen_Gallagher" title="Helen Gallagher">Helen Gallagher</a></li>
<li>23: <a href="/wiki/Rico_Carty" title="Rico Carty">Rico Carty</a></li>
<li>23: <a href="/wiki/Fred_R._Harris" title="Fred R. Harris">Fred R. Harris</a></li>
<li>23: <a href="/wiki/Chuck_Woolery" title="Chuck Woolery">Chuck Woolery</a></li>
<li>21: <a href="/wiki/Alice_Brock" title="Alice Brock">Alice Brock</a></li>
<li>20: <a href="/wiki/Ursula_Haverbeck" title="Ursula Haverbeck">Ursula Haverbeck</a></li>
<li>20: <a href="/wiki/Andy_Paley" title="Andy Paley">Andy Paley</a></li>
<li>20: <a href="/wiki/John_Prescott" title="John Prescott">John Prescott</a></li></ul>
</div>
<div class="editlink noprint plainlinks"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/Sidebar&amp;action=edit">edit section</a></div>
</div>
</div>
<div aria-labelledby="Ongoing_conflicts" class="mw-collapsible current-events-sidebar" role="region" style="width:30em">
<div><div class="mw-heading mw-heading2"><h2 id="Ongoing_conflicts"><a href="/wiki/List_of_ongoing_armed_conflicts" title="List of ongoing armed conflicts">Ongoing conflicts</a></h2></div></div>
<div class="mw-collapsible-content">
<div class="mw-heading mw-heading3"><h3 id="Global">Global</h3></div>
<ul><li><a href="/wiki/War_against_the_Islamic_State" title="War against the Islamic State">War against the Islamic State</a></li></ul>
<div class="mw-heading mw-heading3"><h3 id="Africa">Africa</h3></div>
<ul><li>Cameroon</li></ul>
<dl><dd><ul><li><a href="/wiki/Anglophone_Crisis" title="Anglophone Crisis">Anglophone Crisis</a></li></ul></dd></dl>
<ul><li>Central African Republic</li></ul>
<dl><dd><ul><li><a href="/wiki/Central_African_Republic_Civil_War" title="Central African Republic Civil War">Civil war</a></li></ul></dd></dl>
<ul><li>Democratic Republic of the Congo</li></ul>
<dl><dd><ul><li><a href="/wiki/Kivu_conflict" title="Kivu conflict">Kivu conflict</a></li></ul></dd></dl>
<ul><li><a href="/wiki/Ethiopian_civil_conflict_(2018%E2%80%93present)" title="Ethiopian civil conflict (2018–present)">Ethiopia</a></li></ul>
<dl><dd><ul><li><a href="/wiki/War_in_Amhara" title="War in Amhara">Amhara conflict</a></li></ul></dd></dl>
<ul><li>Mozambique</li></ul>
<dl><dd><ul><li><a href="/wiki/Insurgency_in_Cabo_Delgado" title="Insurgency in Cabo Delgado">Insurgency in Cabo Delgado</a></li></ul></dd></dl>
<ul><li>Nigeria</li></ul>
<dl><dd><ul><li><a href="/wiki/Boko_Haram_insurgency" title="Boko Haram insurgency">Boko Haram insurgency</a></li></ul></dd></dl>
<ul><li><a href="/wiki/Islamist_insurgency_in_the_Sahel" title="Islamist insurgency in the Sahel">Sahel insurgency</a></li></ul>
<style data-mw-deduplicate="TemplateStyles:r1184024115">.mw-parser-output .div-col{margin-top:0.3em;column-width:30em}.mw-parser-output .div-col-small{font-size:90%}.mw-parser-output .div-col-rules{column-rule:1px solid #aaa}.mw-parser-output .div-col dl,.mw-parser-output .div-col ol,.mw-parser-output .div-col ul{margin-top:0}.mw-parser-output .div-col li,.mw-parser-output .div-col dd{page-break-inside:avoid;break-inside:avoid-column}</style><div class="div-col" style="column-width: 8em;column-count:3">
<dl><dd><ul><li><a href="/wiki/Mali_War" title="Mali War">Mali War</a></li></ul></dd></dl>
<ul><li><a href="/wiki/Islamist_insurgency_in_Burkina_Faso" title="Islamist insurgency in Burkina Faso">Burkina Faso</a></li>
<li><a href="/wiki/Jihadist_insurgency_in_Niger" title="Jihadist insurgency in Niger">Niger</a></li></ul>
</div>
<ul><li><a href="/wiki/Somali_Civil_War" title="Somali Civil War">Somalia</a></li></ul>
<dl><dd><ul><li><a href="/wiki/Somali_Civil_War_(2009%E2%80%93present)" title="Somali Civil War (2009–present)">Civil war</a></li></ul></dd></dl>
<ul><li>Sudan</li></ul>
<dl><dd><ul><li><a href="/wiki/Sudanese_civil_war_(2023%E2%80%93present)" title="Sudanese civil war (2023–present)">Civil war</a></li></ul></dd></dl>
<div class="mw-heading mw-heading3"><h3 id="Americas">Americas</h3></div>
<ul><li>Mexico</li></ul>
<dl><dd><ul><li><a href="/wiki/Mexican_drug_war" title="Mexican drug war">Mexican drug war</a></li></ul></dd></dl>
<div class="mw-heading mw-heading3"><h3 id="Asia−Pacific"><span id="Asia.E2.88.92Pacific"></span>Asia−Pacific</h3></div>
<ul><li><a href="/wiki/Afghan_conflict" title="Afghan conflict">Afghanistan</a></li></ul>
<dl><dd><ul><li><a href="/wiki/Islamic_State%E2%80%93Taliban_conflict" title="Islamic State–Taliban conflict">Islamic State–Taliban conflict</a></li>
<li><a href="/wiki/Republican_insurgency_in_Afghanistan" title="Republican insurgency in Afghanistan">Republican insurgency</a></li></ul></dd></dl>
<ul><li>India</li></ul>
<dl><dd><ul><li><a href="/wiki/Naxalite%E2%80%93Maoist_insurgency" title="Naxalite–Maoist insurgency">Naxalite–Maoist insurgency</a></li></ul></dd></dl>
<ul><li>Indonesia</li></ul>
<dl><dd><ul><li><a href="/wiki/Papua_conflict" title="Papua conflict">Papua conflict</a></li></ul></dd></dl>
<ul><li><a href="/wiki/Myanmar_conflict" title="Myanmar conflict">Myanmar</a></li></ul>
<dl><dd><ul><li><a href="/wiki/Myanmar_civil_war_(2021%E2%80%93present)" title="Myanmar civil war (2021–present)">Civil war</a></li></ul></dd></dl>
<ul><li>Pakistan</li></ul>
<dl><dd><ul><li><a href="/wiki/Insurgency_in_Balochistan" title="Insurgency in Balochistan">Insurgency in Balochistan</a></li>
<li><a href="/wiki/Insurgency_in_Khyber_Pakhtunkhwa" title="Insurgency in Khyber Pakhtunkhwa">Insurgency in Khyber Pakhtunkhwa</a></li></ul></dd></dl>
<ul><li><a href="/wiki/Civil_conflict_in_the_Philippines" title="Civil conflict in the Philippines">Philippines</a></li></ul>
<dl><dd><ul><li><a href="/wiki/New_People%27s_Army_rebellion" title="New People's Army rebellion">NPA rebellion</a></li></ul></dd></dl>
<div class="mw-heading mw-heading3"><h3 id="Europe">Europe</h3></div>
<ul><li><a href="/wiki/Russo-Ukrainian_War" title="Russo-Ukrainian War">Russia and Ukraine</a></li></ul>
<dl><dd><ul><li><a href="/wiki/Russian_invasion_of_Ukraine" title="Russian invasion of Ukraine">Russian invasion of Ukraine</a></li></ul></dd></dl>
<div class="mw-heading mw-heading3"><h3 id="Middle_East">Middle East</h3></div>
<ul><li><a href="/wiki/Iraqi_conflict" title="Iraqi conflict">Iraq</a></li></ul>
<dl><dd><ul><li><a href="/wiki/Islamic_State_insurgency_in_Iraq_(2017%E2%80%93present)" title="Islamic State insurgency in Iraq (2017–present)">Islamic State insurgency</a></li></ul></dd></dl>
<ul><li><a href="/wiki/Middle_Eastern_crisis_(2023%E2%80%93present)" title="Middle Eastern crisis (2023–present)">Israel</a></li></ul>
<link href="mw-data:TemplateStyles:r1184024115" rel="mw-deduplicated-inline-style"/><div class="div-col" style="column-width: 8em;column-count:2">
<dl><dd><ul><li><a href="/wiki/Israel%E2%80%93Hezbollah_conflict_(2023%E2%80%93present)" title="Israel–Hezbollah conflict (2023–present)">Israel–Hezbollah conflict</a></li></ul></dd></dl>
<ul><li><a href="/wiki/Israel%E2%80%93Hamas_war" title="Israel–Hamas war">Israel–Hamas war</a></li></ul>
</div>
<ul><li><a href="/wiki/Syrian_civil_war" title="Syrian civil war">Syria</a></li></ul>
<dl><dd><ul><li><a href="/wiki/2024_Israeli_invasion_of_Syria" title="2024 Israeli invasion of Syria">Israeli invasion</a></li></ul></dd></dl>
<ul><li>Turkey</li></ul>
<dl><dd><ul><li><a href="/wiki/Kurdistan_Workers%27_Party_insurgency" title="Kurdistan Workers' Party insurgency">PKK insurgency</a></li></ul></dd></dl>
<ul><li><a href="/wiki/Yemeni_civil_war_(2014%E2%80%93present)" title="Yemeni civil war (2014–present)">Yemen</a></li></ul>
<dl><dd><ul><li><a href="/wiki/Red_Sea_crisis" title="Red Sea crisis">Red Sea crisis</a></li></ul></dd></dl>
<div style="font-weight:bold">See also – <a class="mw-redirect" href="/wiki/List_of_ongoing_proxy_wars" title="List of ongoing proxy wars">List of ongoing proxy wars</a></div>
<div class="editlink noprint plainlinks"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/Sidebar&amp;action=edit">edit section</a></div>
</div>
</div>
<link href="mw-data:TemplateStyles:r1235901060" rel="mw-deduplicated-inline-style"/>
<div aria-labelledby="Ongoing_events" class="mw-collapsible current-events-sidebar" role="region">
<div>
<div class="mw-heading mw-heading2"><h2 id="2024_events_and_developments_by_topic">
<a href="/wiki/2024" title="2024">2024</a> events and developments by topic
</h2></div>
</div>
<div class="mw-collapsible-content">
<div>
<div class="mw-heading mw-heading3"><h3 id="Arts">
<i><b><a href="/wiki/2024_in_art" title="2024 in art">Arts</a></b></i>
</h3></div>
<link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist"><ul><li><a href="/wiki/2024_in_animation" title="2024 in animation">Animation</a> (<a href="/wiki/2024_in_anime" title="2024 in anime">Anime</a>)</li><li><a href="/wiki/2024_in_architecture" title="2024 in architecture">Architecture</a></li><li><a href="/wiki/2024_in_comics" title="2024 in comics">Comics</a></li><li><a href="/wiki/2024_in_film" title="2024 in film">Film</a> (<a href="/wiki/List_of_horror_films_of_2024" title="List of horror films of 2024">Horror</a>, <a class="mw-redirect" href="/wiki/2024_in_science_fiction_film" title="2024 in science fiction film">Science fiction</a>)</li><li><a href="/wiki/2024_in_literature" title="2024 in literature">Literature</a> (<a class="new" href="/w/index.php?title=2024_in_poetry&amp;action=edit&amp;redlink=1" title="2024 in poetry (page does not exist)">Poetry</a>)</li><li><a href="/wiki/2024_in_music" title="2024 in music">Music</a> (<a href="/wiki/2024_in_classical_music" title="2024 in classical music">Classical</a>, <a href="/wiki/2024_in_country_music" title="2024 in country music">Country</a>, <a class="mw-redirect" href="/wiki/2024_in_hip_hop_music" title="2024 in hip hop music">Hip hop</a>, <a href="/wiki/2024_in_jazz" title="2024 in jazz">Jazz</a>, <a href="/wiki/2024_in_Latin_music" title="2024 in Latin music">Latin</a>, <a href="/wiki/2024_in_heavy_metal_music" title="2024 in heavy metal music">Metal</a>, <a href="/wiki/2024_in_rock_music" title="2024 in rock music">Rock</a>, <a href="/wiki/2024_in_British_music" title="2024 in British music">UK</a>, <a href="/wiki/2024_in_American_music" title="2024 in American music">US</a>, <a href="/wiki/2024_in_South_Korean_music" title="2024 in South Korean music">Korea</a>)</li><li><a href="/wiki/2024_in_radio" title="2024 in radio">Radio</a></li><li><a href="/wiki/2024_in_television" title="2024 in television">Television</a> (<a href="/wiki/2024_in_Australian_television" title="2024 in Australian television">Australia</a>, <a href="/wiki/2024_in_Canadian_television" title="2024 in Canadian television">Canada</a>, <a href="/wiki/2024_in_Irish_television" title="2024 in Irish television">Ireland</a>, <a href="/wiki/2024_in_British_television" title="2024 in British television">UK</a>, <a href="/wiki/2024_in_Scottish_television" title="2024 in Scottish television">Scotland</a>, <a href="/wiki/2024_in_American_television" title="2024 in American television">US</a>)</li><li><a href="/wiki/2024_in_video_games" title="2024 in video games">Video games</a></li></ul></div>
<div class="mw-heading mw-heading3"><h3 id="Politics_and_government">
<i><b><a class="mw-redirect" href="/wiki/2024_in_politics_and_government" title="2024 in politics and government">Politics and government</a></b></i>
</h3></div>
<link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist"><ul><li><a href="/wiki/List_of_elections_in_2024" title="List of elections in 2024">Elections</a></li><li><a class="mw-redirect" href="/wiki/List_of_state_leaders_in_2024" title="List of state leaders in 2024">International leaders</a></li><li><a class="mw-redirect" href="/wiki/List_of_sovereign_states_in_2024" title="List of sovereign states in 2024">Sovereign states</a></li><li><a href="/wiki/List_of_state_leaders_in_the_21st_century" title="List of state leaders in the 21st century">Sovereign state leaders</a></li><li><a href="/wiki/List_of_governors_of_dependent_territories_in_the_21st_century" title="List of governors of dependent territories in the 21st century">Territorial governors</a></li></ul></div>
<div class="mw-heading mw-heading3"><h3 id="Science_and_technology">
<i><b><a href="/wiki/2024_in_science" title="2024 in science">Science and technology</a></b></i>
</h3></div>
<link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist"><ul><li><a href="/wiki/2024_in_archaeology" title="2024 in archaeology">Archaeology</a></li><li><a class="mw-redirect" href="/wiki/2024_in_biotechnology" title="2024 in biotechnology">Biotechnology</a></li><li><a class="mw-redirect" href="/wiki/2024_in_computing" title="2024 in computing">Computing</a></li><li><a href="/wiki/2024_in_paleontology" title="2024 in paleontology">Palaeontology</a></li><li><a class="mw-redirect" href="/wiki/2024_in_quantum_computing_and_communication" title="2024 in quantum computing and communication">Quantum computing and communication</a></li><li><a class="mw-redirect" href="/wiki/2024_in_senescence_research" title="2024 in senescence research">Senescence research</a></li><li><a href="/wiki/Template:2024_in_space" title="Template:2024 in space">Space/Astronomy</a></li><li><a href="/wiki/2024_in_spaceflight" title="2024 in spaceflight">Spaceflight</a></li><li><a class="mw-redirect" href="/wiki/2020s_in_sustainable_energy_research" title="2020s in sustainable energy research">Sustainable energy research</a></li></ul></div>
<div class="mw-heading mw-heading3"><h3 id="Environment_and_environmental_sciences">
<i><b><a href="/wiki/2024_in_the_environment" title="2024 in the environment">Environment and environmental sciences</a></b></i>
</h3></div>
<link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist"><ul><li><a href="/wiki/2024_in_climate_change" title="2024 in climate change">Climate change</a></li><li><a href="/wiki/Weather_of_2024#Timeline" title="Weather of 2024">Weather</a> (<a class="mw-redirect" href="/wiki/2024_heat_waves" title="2024 heat waves">Heat waves</a></li><li><a href="/wiki/Tornadoes_of_2024" title="Tornadoes of 2024">Tornadoes</a></li><li><a href="/wiki/Wildfires_in_2024" title="Wildfires in 2024">Wildfires</a>)</li></ul></div>
<div class="mw-heading mw-heading3"><h3 id="Transportation">
<i><b><a href="/wiki/Category:2024_in_transport" title="Category:2024 in transport">Transportation</a></b></i>
</h3></div>
<link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist"><ul><li><a href="/wiki/2024_in_aviation" title="2024 in aviation">Aviation</a></li><li><a href="/wiki/2024_in_rail_transport" title="2024 in rail transport">Rail transport</a></li><li><a href="/wiki/Timeline_of_transportation_technology#2020s" title="Timeline of transportation technology">Transportation technology</a></li></ul></div>
<style data-mw-deduplicate="TemplateStyles:r1256386598">.mw-parser-output .cot-header-mainspace{background:#F0F2F5;color:inherit}.mw-parser-output .cot-header-other{background:#CCFFCC;color:inherit}@media screen{html.skin-theme-clientpref-night .mw-parser-output .cot-header-mainspace{background:#14181F;color:inherit}html.skin-theme-clientpref-night .mw-parser-output .cot-header-other{background:#003500;color:inherit}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .cot-header-mainspace{background:#14181F;color:inherit}html.skin-theme-clientpref-os .mw-parser-output .cot-header-other{background:#003500;color:inherit}}</style>
<div style="margin-left:0">
<table class="mw-collapsible mw-archivedtalk mw-collapsed" style="color:inherit; background: transparent; text-align: left; border: 0px solid Silver; margin: 0.2em auto auto; width:100%; clear: both; padding: 1px;">
<tbody><tr>
<th class="cot-header-other" style="background:#f5faff; font-size:87%; padding:0.2em 0.3em; text-align:left; color:#202122"><div style="font-size:115%;"><i><b><a href="/wiki/Category:2024_by_continent" title="Category:2024 by continent">By place</a></b></i></div>
</th></tr>
<tr>
<td style="color:inherit; border: solid 1px Silver; padding: 0.6em; background: var(--background-color-base, #fff);">
<link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist"><ul><li><a href="/wiki/2024_in_Afghanistan" title="2024 in Afghanistan">Afghanistan</a></li><li><a href="/wiki/2024_in_Albania" title="2024 in Albania">Albania</a></li><li><a href="/wiki/2024_in_Algeria" title="2024 in Algeria">Algeria</a></li><li><a href="/wiki/2024_in_Andorra" title="2024 in Andorra">Andorra</a></li><li><a href="/wiki/2024_in_Angola" title="2024 in Angola">Angola</a></li><li><a href="/wiki/2024_in_Antarctica" title="2024 in Antarctica">Antarctica</a></li><li><a href="/wiki/2024_in_Antigua_and_Barbuda" title="2024 in Antigua and Barbuda">Antigua and Barbuda</a></li><li><a href="/wiki/2024_in_Argentina" title="2024 in Argentina">Argentina</a></li><li><a href="/wiki/2024_in_Armenia" title="2024 in Armenia">Armenia</a></li><li><a href="/wiki/2024_in_Australia" title="2024 in Australia">Australia</a></li><li><a href="/wiki/2024_in_Austria" title="2024 in Austria">Austria</a></li><li><a href="/wiki/2024_in_Azerbaijan" title="2024 in Azerbaijan">Azerbaijan</a></li><li><a href="/wiki/2024_in_Bangladesh" title="2024 in Bangladesh">Bangladesh</a></li><li><a href="/wiki/2024_in_the_Bahamas" title="2024 in the Bahamas">The Bahamas</a></li><li><a href="/wiki/2024_in_Bahrain" title="2024 in Bahrain">Bahrain</a></li><li><a href="/wiki/2024_in_Barbados" title="2024 in Barbados">Barbados</a></li><li><a href="/wiki/2024_in_Belarus" title="2024 in Belarus">Belarus</a></li><li><a href="/wiki/2024_in_Belgium" title="2024 in Belgium">Belgium</a></li><li><a href="/wiki/2024_in_Belize" title="2024 in Belize">Belize</a></li><li><a href="/wiki/2024_in_Benin" title="2024 in Benin">Benin</a></li><li><a href="/wiki/2024_in_Bhutan" title="2024 in Bhutan">Bhutan</a></li><li><a href="/wiki/2024_in_Bolivia" title="2024 in Bolivia">Bolivia</a></li><li><a href="/wiki/2024_in_Bosnia_and_Herzegovina" title="2024 in Bosnia and Herzegovina">Bosnia and Herzegovina</a></li><li><a href="/wiki/2024_in_Botswana" title="2024 in Botswana">Botswana</a></li><li><a href="/wiki/2024_in_Brazil" title="2024 in Brazil">Brazil</a></li><li><a href="/wiki/2024_in_Brunei" title="2024 in Brunei">Brunei</a></li><li><a href="/wiki/2024_in_Bulgaria" title="2024 in Bulgaria">Bulgaria</a></li><li><a href="/wiki/2024_in_Burkina_Faso" title="2024 in Burkina Faso">Burkina Faso</a></li><li><a href="/wiki/2024_in_Burundi" title="2024 in Burundi">Burundi</a></li><li><a href="/wiki/2024_in_Cambodia" title="2024 in Cambodia">Cambodia</a></li><li><a href="/wiki/2024_in_Cameroon" title="2024 in Cameroon">Cameroon</a></li><li><a href="/wiki/2024_in_Canada" title="2024 in Canada">Canada</a></li><li><a href="/wiki/2024_in_Cape_Verde" title="2024 in Cape Verde">Cape Verde</a></li><li><a href="/wiki/2024_in_the_Central_African_Republic" title="2024 in the Central African Republic">Central African Republic</a></li><li><a href="/wiki/2024_in_Chad" title="2024 in Chad">Chad</a></li><li><a href="/wiki/2024_in_Chile" title="2024 in Chile">Chile</a></li><li><a href="/wiki/2024_in_China" title="2024 in China">China</a></li><li><a href="/wiki/2024_in_Colombia" title="2024 in Colombia">Colombia</a></li><li><a href="/wiki/2024_in_Costa_Rica" title="2024 in Costa Rica">Costa Rica</a></li><li><a href="/wiki/2024_in_the_Comoros" title="2024 in the Comoros">Comoros</a></li><li><a href="/wiki/2024_in_the_Republic_of_the_Congo" title="2024 in the Republic of the Congo">Congo</a></li><li><a href="/wiki/2024_in_the_Democratic_Republic_of_the_Congo" title="2024 in the Democratic Republic of the Congo">DR Congo</a></li><li><a href="/wiki/2024_in_Croatia" title="2024 in Croatia">Croatia</a></li><li><a href="/wiki/2024_in_Cuba" title="2024 in Cuba">Cuba</a></li><li><a href="/wiki/2024_in_Cyprus" title="2024 in Cyprus">Cyprus</a></li><li><a href="/wiki/2024_in_the_Czech_Republic" title="2024 in the Czech Republic">Czech Republic</a></li><li><a href="/wiki/2024_in_Denmark" title="2024 in Denmark">Denmark</a></li><li><a href="/wiki/2024_in_Djibouti" title="2024 in Djibouti">Djibouti</a></li><li><a href="/wiki/2024_in_Dominica" title="2024 in Dominica">Dominica</a></li><li><a href="/wiki/2024_in_the_Dominican_Republic" title="2024 in the Dominican Republic">Dominican Republic</a></li><li><a href="/wiki/2024_in_East_Timor" title="2024 in East Timor">East Timor</a></li><li><a href="/wiki/2024_in_Ecuador" title="2024 in Ecuador">Ecuador</a></li><li><a href="/wiki/2024_in_Egypt" title="2024 in Egypt">Egypt</a></li><li><a href="/wiki/2024_in_El_Salvador" title="2024 in El Salvador">El Salvador</a></li><li><a href="/wiki/2024_in_Eritrea" title="2024 in Eritrea">Eritrea</a></li><li><a href="/wiki/2024_in_Estonia" title="2024 in Estonia">Estonia</a></li><li><a href="/wiki/2024_in_Ethiopia" title="2024 in Ethiopia">Ethiopia</a></li><li><a href="/wiki/2024_in_Eswatini" title="2024 in Eswatini">Eswatini</a></li><li><a href="/wiki/2024_in_Equatorial_Guinea" title="2024 in Equatorial Guinea">Equatorial Guinea</a></li><li><a href="/wiki/2024_in_Fiji" title="2024 in Fiji">Fiji</a></li><li><a href="/wiki/2024_in_Finland" title="2024 in Finland">Finland</a></li><li><a href="/wiki/2024_in_France" title="2024 in France">France</a></li><li><a href="/wiki/2024_in_Gabon" title="2024 in Gabon">Gabon</a></li><li><a href="/wiki/2024_in_the_Gambia" title="2024 in the Gambia">The Gambia</a></li><li><a href="/wiki/2024_in_Georgia_(country)" title="2024 in Georgia (country)">Georgia</a></li><li><a href="/wiki/2024_in_Germany" title="2024 in Germany">Germany</a></li><li><a href="/wiki/2024_in_Ghana" title="2024 in Ghana">Ghana</a></li><li><a href="/wiki/2024_in_Greece" title="2024 in Greece">Greece</a></li><li><a href="/wiki/2024_in_Grenada" title="2024 in Grenada">Grenada</a></li><li><a href="/wiki/2024_in_Guatemala" title="2024 in Guatemala">Guatemala</a></li><li><a href="/wiki/2024_in_Guinea" title="2024 in Guinea">Guinea</a></li><li><a href="/wiki/2024_in_Guinea-Bissau" title="2024 in Guinea-Bissau">Guinea-Bissau</a></li><li><a href="/wiki/2024_in_Guyana" title="2024 in Guyana">Guyana</a></li><li><a href="/wiki/2024_in_Haiti" title="2024 in Haiti">Haiti</a></li><li><a href="/wiki/2024_in_Honduras" title="2024 in Honduras">Honduras</a></li><li><a href="/wiki/2024_in_Hong_Kong" title="2024 in Hong Kong">Hong Kong</a></li><li><a href="/wiki/2024_in_Hungary" title="2024 in Hungary">Hungary</a></li><li><a href="/wiki/2024_in_Iceland" title="2024 in Iceland">Iceland</a></li><li><a href="/wiki/2024_in_India" title="2024 in India">India</a></li><li><a href="/wiki/2024_in_Indonesia" title="2024 in Indonesia">Indonesia</a></li><li><a href="/wiki/2024_in_Iran" title="2024 in Iran">Iran</a></li><li><a href="/wiki/2024_in_Iraq" title="2024 in Iraq">Iraq</a></li><li><a href="/wiki/2024_in_Ireland" title="2024 in Ireland">Ireland</a></li><li><a href="/wiki/2024_in_Israel" title="2024 in Israel">Israel</a></li><li><a href="/wiki/2024_in_Italy" title="2024 in Italy">Italy</a></li><li><a href="/wiki/2024_in_Ivory_Coast" title="2024 in Ivory Coast">Ivory Coast</a></li><li><a href="/wiki/2024_in_Jamaica" title="2024 in Jamaica">Jamaica</a></li><li><a href="/wiki/2024_in_Japan" title="2024 in Japan">Japan</a></li><li><a href="/wiki/2024_in_Jordan" title="2024 in Jordan">Jordan</a></li><li><a href="/wiki/2024_in_Kazakhstan" title="2024 in Kazakhstan">Kazakhstan</a></li><li><a href="/wiki/2024_in_Kenya" title="2024 in Kenya">Kenya</a></li><li><a href="/wiki/2024_in_Kiribati" title="2024 in Kiribati">Kiribati</a></li><li><a href="/wiki/2024_in_Kosovo" title="2024 in Kosovo">Kosovo</a></li><li><a href="/wiki/2024_in_Kuwait" title="2024 in Kuwait">Kuwait</a></li><li><a href="/wiki/2024_in_Kyrgyzstan" title="2024 in Kyrgyzstan">Kyrgyzstan</a></li><li><a href="/wiki/2024_in_Laos" title="2024 in Laos">Laos</a></li><li><a href="/wiki/2024_in_Latvia" title="2024 in Latvia">Latvia</a></li><li><a href="/wiki/2024_in_Lebanon" title="2024 in Lebanon">Lebanon</a></li><li><a href="/wiki/2024_in_Lesotho" title="2024 in Lesotho">Lesotho</a></li><li><a href="/wiki/2024_in_Liberia" title="2024 in Liberia">Liberia</a></li><li><a href="/wiki/2024_in_Liechtenstein" title="2024 in Liechtenstein"> Liechtenstein</a></li><li><a href="/wiki/2024_in_Libya" title="2024 in Libya">Libya</a></li><li><a href="/wiki/2024_in_Lithuania" title="2024 in Lithuania">Lithuania</a></li><li><a href="/wiki/2024_in_Luxembourg" title="2024 in Luxembourg">Luxembourg</a></li><li><a href="/wiki/2024_in_Macau" title="2024 in Macau">Macau</a></li><li><a href="/wiki/2024_in_Madagascar" title="2024 in Madagascar">Madagascar</a></li><li><a href="/wiki/2024_in_the_Marshall_Islands" title="2024 in the Marshall Islands">Marshall Islands</a></li><li><a href="/wiki/2024_in_Malawi" title="2024 in Malawi">Malawi</a></li><li><a href="/wiki/2024_in_Malaysia" title="2024 in Malaysia">Malaysia</a></li><li><a href="/wiki/2024_in_the_Maldives" title="2024 in the Maldives">Maldives</a></li><li><a href="/wiki/2024_in_Mali" title="2024 in Mali">Mali</a></li><li><a href="/wiki/2024_in_Malta" title="2024 in Malta">Malta</a></li><li><a href="/wiki/2024_in_Mauritania" title="2024 in Mauritania">Mauritania</a></li><li><a href="/wiki/2024_in_Mauritius" title="2024 in Mauritius">Mauritius</a></li><li><a href="/wiki/2024_in_Mexico" title="2024 in Mexico">Mexico</a></li><li><a href="/wiki/2024_in_the_Federated_States_of_Micronesia" title="2024 in the Federated States of Micronesia">Micronesia</a></li><li><a href="/wiki/2024_in_Moldova" title="2024 in Moldova">Moldova</a></li><li><a href="/wiki/2024_in_Monaco" title="2024 in Monaco">Monaco</a></li><li><a href="/wiki/2024_in_Mongolia" title="2024 in Mongolia">Mongolia</a></li><li><a href="/wiki/2024_in_Montenegro" title="2024 in Montenegro">Montenegro</a></li><li><a href="/wiki/2024_in_Morocco" title="2024 in Morocco">Morocco</a></li><li><a href="/wiki/2024_in_Mozambique" title="2024 in Mozambique">Mozambique</a></li><li><a href="/wiki/2024_in_Myanmar" title="2024 in Myanmar">Myanmar</a></li><li><a href="/wiki/2024_in_Nauru" title="2024 in Nauru">Nauru</a></li><li><a href="/wiki/2024_in_Namibia" title="2024 in Namibia">Namibia</a></li><li><a href="/wiki/2024_in_Nepal" title="2024 in Nepal">Nepal</a></li><li><a href="/wiki/2024_in_the_Netherlands" title="2024 in the Netherlands">Netherlands</a></li><li><a href="/wiki/2024_in_New_Zealand" title="2024 in New Zealand">New Zealand</a></li><li><a href="/wiki/2024_in_Nicaragua" title="2024 in Nicaragua">Nicaragua</a></li><li><a href="/wiki/2024_in_Niger" title="2024 in Niger">Niger</a></li><li><a href="/wiki/2024_in_Nigeria" title="2024 in Nigeria">Nigeria</a></li><li><a href="/wiki/2024_in_North_Korea" title="2024 in North Korea">North Korea</a></li><li><a href="/wiki/2024_in_North_Macedonia" title="2024 in North Macedonia">North Macedonia</a></li><li><a href="/wiki/2024_in_Norway" title="2024 in Norway">Norway</a></li><li><a href="/wiki/2024_in_Oman" title="2024 in Oman">Oman</a></li><li><a href="/wiki/2024_in_Pakistan" title="2024 in Pakistan">Pakistan</a></li><li><a href="/wiki/2024_in_Palau" title="2024 in Palau">Palau</a></li><li><a href="/wiki/2024_in_the_State_of_Palestine" title="2024 in the State of Palestine">Palestine</a></li><li><a href="/wiki/2024_in_Panama" title="2024 in Panama">Panama</a></li><li><a href="/wiki/2024_in_Papua_New_Guinea" title="2024 in Papua New Guinea">Papua New Guinea</a></li><li><a href="/wiki/2024_in_Paraguay" title="2024 in Paraguay">Paraguay</a></li><li><a href="/wiki/2024_in_Peru" title="2024 in Peru">Peru</a></li><li><a href="/wiki/2024_in_the_Philippines" title="2024 in the Philippines">Philippines</a></li><li><a href="/wiki/2024_in_Poland" title="2024 in Poland">Poland</a></li><li><a href="/wiki/2024_in_Portugal" title="2024 in Portugal">Portugal</a></li><li><a href="/wiki/2024_in_Qatar" title="2024 in Qatar">Qatar</a></li><li><a href="/wiki/2024_in_Romania" title="2024 in Romania">Romania</a></li><li><a href="/wiki/2024_in_Russia" title="2024 in Russia">Russia</a></li><li><a href="/wiki/2024_in_Rwanda" title="2024 in Rwanda">Rwanda</a></li><li><a href="/wiki/2024_in_Saint_Kitts_and_Nevis" title="2024 in Saint Kitts and Nevis">Saint Kitts and Nevis</a></li><li><a href="/wiki/2024_in_Saint_Lucia" title="2024 in Saint Lucia">Saint Lucia</a></li><li><a href="/wiki/2024_in_Saint_Vincent_and_the_Grenadines" title="2024 in Saint Vincent and the Grenadines">Saint Vincent and the Grenadines</a></li><li><a href="/wiki/2024_in_Samoa" title="2024 in Samoa">Samoa</a></li><li><a href="/wiki/2024_in_San_Marino" title="2024 in San Marino">San Marino</a></li><li><a href="/wiki/2024_in_S%C3%A3o_Tom%C3%A9_and_Pr%C3%ADncipe" title="2024 in São Tomé and Príncipe">São Tomé and Príncipe</a></li><li><a href="/wiki/2024_in_Saudi_Arabia" title="2024 in Saudi Arabia">Saudi Arabia</a></li><li><a href="/wiki/2024_in_Senegal" title="2024 in Senegal">Senegal</a></li><li><a href="/wiki/2024_in_Serbia" title="2024 in Serbia">Serbia</a></li><li><a href="/wiki/2024_in_Seychelles" title="2024 in Seychelles">Seychelles</a></li><li><a href="/wiki/2024_in_Sierra_Leone" title="2024 in Sierra Leone">Sierra Leone</a></li><li><a href="/wiki/2024_in_Singapore" title="2024 in Singapore">Singapore</a></li><li><a href="/wiki/2024_in_Slovakia" title="2024 in Slovakia">Slovakia</a></li><li><a href="/wiki/2024_in_Slovenia" title="2024 in Slovenia">Slovenia</a></li><li><a href="/wiki/2024_in_Somalia" title="2024 in Somalia">Somalia</a></li><li><a href="/wiki/2024_in_South_Africa" title="2024 in South Africa">South Africa</a></li><li><a href="/wiki/2024_in_the_Solomon_Islands" title="2024 in the Solomon Islands">Solomon Islands</a></li><li><a href="/wiki/2024_in_South_Korea" title="2024 in South Korea">South Korea</a></li><li><a href="/wiki/2024_in_South_Sudan" title="2024 in South Sudan">South Sudan</a></li><li><a href="/wiki/2024_in_Spain" title="2024 in Spain">Spain</a></li><li><a href="/wiki/2024_in_Sri_Lanka" title="2024 in Sri Lanka">Sri Lanka</a></li><li><a href="/wiki/2024_in_Sudan" title="2024 in Sudan">Sudan</a></li><li><a href="/wiki/2024_in_Suriname" title="2024 in Suriname">Suriname</a></li><li><a href="/wiki/2024_in_Sweden" title="2024 in Sweden">Sweden</a></li><li><a href="/wiki/2024_in_Switzerland" title="2024 in Switzerland">Switzerland</a></li><li><a href="/wiki/2024_in_Syria" title="2024 in Syria">Syria</a></li><li><a href="/wiki/2024_in_Taiwan" title="2024 in Taiwan">Taiwan</a></li><li><a href="/wiki/2024_in_Tajikistan" title="2024 in Tajikistan">Tajikistan</a></li><li><a href="/wiki/2024_in_Tanzania" title="2024 in Tanzania">Tanzania</a></li><li><a href="/wiki/2024_in_Thailand" title="2024 in Thailand">Thailand</a></li><li><a href="/wiki/2024_in_Togo" title="2024 in Togo">Togo</a></li><li><a href="/wiki/2024_in_Tonga" title="2024 in Tonga">Tonga</a></li><li><a href="/wiki/2024_in_Trinidad_and_Tobago" title="2024 in Trinidad and Tobago">Trinidad and Tobago</a></li><li><a href="/wiki/2024_in_Tunisia" title="2024 in Tunisia">Tunisia</a></li><li><a href="/wiki/2024_in_Turkey" title="2024 in Turkey">Turkey</a></li><li><a href="/wiki/2024_in_Turkmenistan" title="2024 in Turkmenistan">Turkmenistan</a></li><li><a href="/wiki/2024_in_Tuvalu" title="2024 in Tuvalu">Tuvalu</a></li><li><a href="/wiki/2024_in_Uganda" title="2024 in Uganda">Uganda</a></li><li><a href="/wiki/2024_in_Ukraine" title="2024 in Ukraine">Ukraine</a></li><li><a href="/wiki/2024_in_the_United_Arab_Emirates" title="2024 in the United Arab Emirates">United Arab Emirates</a></li><li><a href="/wiki/2024_in_the_United_Kingdom" title="2024 in the United Kingdom">United Kingdom</a></li><li><a href="/wiki/2024_in_the_United_States" title="2024 in the United States">United States</a></li><li><a href="/wiki/2024_in_Uruguay" title="2024 in Uruguay">Uruguay</a></li><li><a href="/wiki/2024_in_Uzbekistan" title="2024 in Uzbekistan">Uzbekistan</a></li><li><a href="/wiki/2024_in_Vanuatu" title="2024 in Vanuatu">Vanuatu</a></li><li><a href="/wiki/2024_in_Vatican_City" title="2024 in Vatican City">Vatican City</a></li><li><a href="/wiki/2024_in_Venezuela" title="2024 in Venezuela">Venezuela</a></li><li><a href="/wiki/2024_in_Vietnam" title="2024 in Vietnam">Vietnam</a></li><li><a href="/wiki/2024_in_Yemen" title="2024 in Yemen">Yemen</a></li><li><a href="/wiki/2024_in_Zambia" title="2024 in Zambia">Zambia</a></li><li><a href="/wiki/2024_in_Zimbabwe" title="2024 in Zimbabwe">Zimbabwe</a></li></ul></div>
</td></tr></tbody></table></div>
<div class="mw-heading mw-heading3"><h3 id="Establishments_and_disestablishments_categories">
<i><b>Establishments and disestablishments categories</b></i>
</h3></div>
<link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist"><ul><li><a href="/wiki/Category:2024_establishments" title="Category:2024 establishments">Establishments</a></li><li><a href="/wiki/Category:2024_disestablishments" title="Category:2024 disestablishments">Disestablishments</a></li></ul></div>
<div class="mw-heading mw-heading3"><h3 id="Works_and_introductions_categories">
<i><b>Works and introductions categories</b></i>
</h3></div>
<link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><div class="hlist"><ul><li><a href="/wiki/Category:2024_works" title="Category:2024 works">Works</a></li><li><a href="/wiki/Category:2024_introductions" title="Category:2024 introductions">Introductions</a></li><li><a href="/wiki/2024_in_public_domain" title="2024 in public domain">Works entering the public domain</a></li></ul></div>
<style data-mw-deduplicate="TemplateStyles:r1235681985">.mw-parser-output .side-box{margin:4px 0;box-sizing:border-box;border:1px solid #aaa;font-size:88%;line-height:1.25em;background-color:var(--background-color-interactive-subtle,#f8f9fa);display:flow-root}.mw-parser-output .side-box-abovebelow,.mw-parser-output .side-box-text{padding:0.25em 0.9em}.mw-parser-output .side-box-image{padding:2px 0 2px 0.9em;text-align:center}.mw-parser-output .side-box-imageright{padding:2px 0.9em 2px 0;text-align:center}@media(min-width:500px){.mw-parser-output .side-box-flex{display:flex;align-items:center}.mw-parser-output .side-box-text{flex:1;min-width:0}}@media(min-width:720px){.mw-parser-output .side-box{width:238px}.mw-parser-output .side-box-right{clear:right;float:right;margin-left:1em}.mw-parser-output .side-box-left{margin-right:1em}}</style><style data-mw-deduplicate="TemplateStyles:r1250146164">.mw-parser-output .sister-box .side-box-abovebelow{padding:0.75em 0;text-align:center}.mw-parser-output .sister-box .side-box-abovebelow>b{display:block}.mw-parser-output .sister-box .side-box-text>ul{border-top:1px solid #aaa;padding:0.75em 0;width:217px;margin:0 auto}.mw-parser-output .sister-box .side-box-text>ul>li{min-height:31px}.mw-parser-output .sister-logo{display:inline-block;width:31px;line-height:31px;vertical-align:middle;text-align:center}.mw-parser-output .sister-link{display:inline-block;margin-left:4px;width:182px;vertical-align:middle}@media print{body.ns-0 .mw-parser-output .sistersitebox{display:none!important}}@media screen{html.skin-theme-clientpref-night .mw-parser-output .sistersitebox img[src*="Wiktionary-logo-v2.svg"]{background-color:white}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .sistersitebox img[src*="Wiktionary-logo-v2.svg"]{background-color:white}}</style><div aria-labelledby="sister-projects" class="side-box metadata side-box-right sister-box sistersitebox plainlinks" role="navigation"><style data-mw-deduplicate="TemplateStyles:r1126788409">.mw-parser-output .plainlist ol,.mw-parser-output .plainlist ul{line-height:inherit;list-style:none;margin:0;padding:0}.mw-parser-output .plainlist ol li,.mw-parser-output .plainlist ul li{margin-bottom:0}</style>
<div class="side-box-abovebelow">
<b>2024</b>  at Wikipedia's <a href="/wiki/Wikipedia:Wikimedia_sister_projects" title="Wikipedia:Wikimedia sister projects"><span id="sister-projects">sister projects</span></a></div>
<div class="side-box-flex">
<div class="side-box-text plainlist"><ul><li><span class="sister-logo"><span class="mw-valign-middle" typeof="mw:File"><span><img alt="" class="mw-file-element" data-file-height="1376" data-file-width="1024" decoding="async" height="27" src="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/20px-Commons-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/40px-Commons-logo.svg.png 2x" width="20"/></span></span></span><span class="sister-link"><a class="extiw" href="https://commons.wikimedia.org/wiki/Category:2024" title="c:Category:2024">Media</a> from Commons</span></li><li><span class="sister-logo"><span class="mw-valign-middle" typeof="mw:File"><span><img alt="" class="mw-file-element" data-file-height="415" data-file-width="759" decoding="async" height="15" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/27px-Wikinews-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/41px-Wikinews-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/54px-Wikinews-logo.svg.png 2x" width="27"/></span></span></span><span class="sister-link"><a class="extiw" href="https://en.wikinews.org/wiki/Special:Search/Category:2024" title="n:Special:Search/Category:2024">News</a> from Wikinews</span></li><li><span class="sister-logo"><span class="mw-valign-middle" typeof="mw:File"><span><img alt="" class="mw-file-element" data-file-height="355" data-file-width="300" decoding="async" height="27" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/23px-Wikiquote-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/35px-Wikiquote-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/46px-Wikiquote-logo.svg.png 2x" width="23"/></span></span></span><span class="sister-link"><a class="extiw" href="https://en.wikiquote.org/wiki/Category:2024" title="q:Category:2024">Quotations</a> from Wikiquote</span></li><li><span class="sister-logo"><span class="mw-valign-middle" typeof="mw:File"><span><img alt="" class="mw-file-element" data-file-height="430" data-file-width="410" decoding="async" height="27" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/26px-Wikisource-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/39px-Wikisource-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/51px-Wikisource-logo.svg.png 2x" width="26"/></span></span></span><span class="sister-link"><a class="extiw" href="https://en.wikisource.org/wiki/Category:2024_works" title="s:Category:2024 works">Texts</a> from Wikisource</span></li><li><span class="sister-logo"><span class="mw-valign-middle" typeof="mw:File"><span><img alt="" class="mw-file-element" data-file-height="1103" data-file-width="941" decoding="async" height="27" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/23px-Wikispecies-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/35px-Wikispecies-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/46px-Wikispecies-logo.svg.png 2x" width="23"/></span></span></span><span class="sister-link"><a class="extiw" href="https://species.wikimedia.org/wiki/Category:New_species_2024" title="species:Category:New species 2024">Taxa</a> from Wikispecies</span></li><li><span class="sister-logo"><span class="mw-valign-middle" typeof="mw:File"><span><img alt="" class="mw-file-element" data-file-height="900" data-file-width="900" decoding="async" height="27" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Logo.svg/27px-Wikimedia_Community_Logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Logo.svg/41px-Wikimedia_Community_Logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Logo.svg/54px-Wikimedia_Community_Logo.svg.png 2x" width="27"/></span></span></span><span class="sister-link"><a class="extiw" href="https://meta.wikimedia.org/wiki/Special:Search/Category:2024" title="m:Special:Search/Category:2024">Discussions</a> from Meta-Wiki</span></li></ul></div></div>
</div>
<div class="editlink noprint plainlinks"><a href="/wiki/Category:2024" title="Category:2024">...more</a></div>
</div>
<div class="editlink noprint plainlinks"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events/Sidebar&amp;action=edit">edit section</a></div>
</div>
</div>
</div>
</div>
<div class="navbox-styles"><link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><style data-mw-deduplicate="TemplateStyles:r1236075235">.mw-parser-output .navbox{box-sizing:border-box;border:1px solid #a2a9b1;width:100%;clear:both;font-size:88%;text-align:center;padding:1px;margin:1em auto 0}.mw-parser-output .navbox .navbox{margin-top:0}.mw-parser-output .navbox+.navbox,.mw-parser-output .navbox+.navbox-styles+.navbox{margin-top:-1px}.mw-parser-output .navbox-inner,.mw-parser-output .navbox-subgroup{width:100%}.mw-parser-output .navbox-group,.mw-parser-output .navbox-title,.mw-parser-output .navbox-abovebelow{padding:0.25em 1em;line-height:1.5em;text-align:center}.mw-parser-output .navbox-group{white-space:nowrap;text-align:right}.mw-parser-output .navbox,.mw-parser-output .navbox-subgroup{background-color:#fdfdfd}.mw-parser-output .navbox-list{line-height:1.5em;border-color:#fdfdfd}.mw-parser-output .navbox-list-with-group{text-align:left;border-left-width:2px;border-left-style:solid}.mw-parser-output tr+tr>.navbox-abovebelow,.mw-parser-output tr+tr>.navbox-group,.mw-parser-output tr+tr>.navbox-image,.mw-parser-output tr+tr>.navbox-list{border-top:2px solid #fdfdfd}.mw-parser-output .navbox-title{background-color:#ccf}.mw-parser-output .navbox-abovebelow,.mw-parser-output .navbox-group,.mw-parser-output .navbox-subgroup .navbox-title{background-color:#ddf}.mw-parser-output .navbox-subgroup .navbox-group,.mw-parser-output .navbox-subgroup .navbox-abovebelow{background-color:#e6e6ff}.mw-parser-output .navbox-even{background-color:#f7f7f7}.mw-parser-output .navbox-odd{background-color:transparent}.mw-parser-output .navbox .hlist td dl,.mw-parser-output .navbox .hlist td ol,.mw-parser-output .navbox .hlist td ul,.mw-parser-output .navbox td.hlist dl,.mw-parser-output .navbox td.hlist ol,.mw-parser-output .navbox td.hlist ul{padding:0.125em 0}.mw-parser-output .navbox .navbar{display:block;font-size:100%}.mw-parser-output .navbox-title .navbar{float:left;text-align:left;margin-right:0.5em}body.skin--responsive .mw-parser-output .navbox-image img{max-width:none!important}@media print{body.ns-0 .mw-parser-output .navbox{display:none!important}}</style></div><div aria-labelledby="Current_events_by_month" class="navbox" role="navigation" style="padding:3px"><table class="nowraplinks hlist mw-collapsible mw-collapsed navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th class="navbox-title" colspan="2" scope="col"><link href="mw-data:TemplateStyles:r1129693374" rel="mw-deduplicated-inline-style"/><style data-mw-deduplicate="TemplateStyles:r1239400231">.mw-parser-output .navbar{display:inline;font-size:88%;font-weight:normal}.mw-parser-output .navbar-collapse{float:left;text-align:left}.mw-parser-output .navbar-boxtext{word-spacing:0}.mw-parser-output .navbar ul{display:inline-block;white-space:nowrap;line-height:inherit}.mw-parser-output .navbar-brackets::before{margin-right:-0.125em;content:"[ "}.mw-parser-output .navbar-brackets::after{margin-left:-0.125em;content:" ]"}.mw-parser-output .navbar li{word-spacing:-0.125em}.mw-parser-output .navbar a>span,.mw-parser-output .navbar a>abbr{text-decoration:inherit}.mw-parser-output .navbar-mini abbr{font-variant:small-caps;border-bottom:none;text-decoration:none;cursor:inherit}.mw-parser-output .navbar-ct-full{font-size:114%;margin:0 7em}.mw-parser-output .navbar-ct-mini{font-size:114%;margin:0 4em}html.skin-theme-clientpref-night .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}@media(prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}}@media print{.mw-parser-output .navbar{display:none!important}}</style><div class="navbar plainlinks hlist navbar-mini"><ul><li class="nv-view"><a href="/wiki/Portal:Current_events/Events_by_month" title="Portal:Current events/Events by month"><abbr title="View this template">v</abbr></a></li><li class="nv-talk"><a href="/wiki/Portal_talk:Current_events/Events_by_month" title="Portal talk:Current events/Events by month"><abbr title="Discuss this template">t</abbr></a></li><li class="nv-edit"><a href="/wiki/Special:EditPage/Portal:Current_events/Events_by_month" title="Special:EditPage/Portal:Current events/Events by month"><abbr title="Edit this template">e</abbr></a></li></ul></div><div id="Current_events_by_month" style="font-size:114%;margin:0 4em">Current events by month</div></th></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2024" title="2024">2024</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2024" title="Portal:Current events/January 2024">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2024" title="Portal:Current events/February 2024">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2024" title="Portal:Current events/March 2024">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2024" title="Portal:Current events/April 2024">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2024" title="Portal:Current events/May 2024">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2024" title="Portal:Current events/June 2024">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2024" title="Portal:Current events/July 2024">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2024" title="Portal:Current events/August 2024">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2024" title="Portal:Current events/September 2024">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2024" title="Portal:Current events/October 2024">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2024" title="Portal:Current events/November 2024">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2024" title="Portal:Current events/December 2024">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2023" title="2023">2023</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2023" title="Portal:Current events/January 2023">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2023" title="Portal:Current events/February 2023">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2023" title="Portal:Current events/March 2023">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2023" title="Portal:Current events/April 2023">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2023" title="Portal:Current events/May 2023">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2023" title="Portal:Current events/June 2023">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2023" title="Portal:Current events/July 2023">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2023" title="Portal:Current events/August 2023">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2023" title="Portal:Current events/September 2023">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2023" title="Portal:Current events/October 2023">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2023" title="Portal:Current events/November 2023">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2023" title="Portal:Current events/December 2023">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2022" title="2022">2022</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2022" title="Portal:Current events/January 2022">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2022" title="Portal:Current events/February 2022">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2022" title="Portal:Current events/March 2022">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2022" title="Portal:Current events/April 2022">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2022" title="Portal:Current events/May 2022">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2022" title="Portal:Current events/June 2022">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2022" title="Portal:Current events/July 2022">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2022" title="Portal:Current events/August 2022">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2022" title="Portal:Current events/September 2022">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2022" title="Portal:Current events/October 2022">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2022" title="Portal:Current events/November 2022">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2022" title="Portal:Current events/December 2022">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2021" title="2021">2021</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2021" title="Portal:Current events/January 2021">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2021" title="Portal:Current events/February 2021">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2021" title="Portal:Current events/March 2021">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2021" title="Portal:Current events/April 2021">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2021" title="Portal:Current events/May 2021">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2021" title="Portal:Current events/June 2021">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2021" title="Portal:Current events/July 2021">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2021" title="Portal:Current events/August 2021">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2021" title="Portal:Current events/September 2021">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2021" title="Portal:Current events/October 2021">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2021" title="Portal:Current events/November 2021">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2021" title="Portal:Current events/December 2021">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2020" title="2020">2020</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2020" title="Portal:Current events/January 2020">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2020" title="Portal:Current events/February 2020">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2020" title="Portal:Current events/March 2020">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2020" title="Portal:Current events/April 2020">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2020" title="Portal:Current events/May 2020">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2020" title="Portal:Current events/June 2020">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2020" title="Portal:Current events/July 2020">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2020" title="Portal:Current events/August 2020">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2020" title="Portal:Current events/September 2020">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2020" title="Portal:Current events/October 2020">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2020" title="Portal:Current events/November 2020">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2020" title="Portal:Current events/December 2020">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2019" title="2019">2019</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2019" title="Portal:Current events/January 2019">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2019" title="Portal:Current events/February 2019">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2019" title="Portal:Current events/March 2019">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2019" title="Portal:Current events/April 2019">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2019" title="Portal:Current events/May 2019">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2019" title="Portal:Current events/June 2019">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2019" title="Portal:Current events/July 2019">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2019" title="Portal:Current events/August 2019">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2019" title="Portal:Current events/September 2019">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2019" title="Portal:Current events/October 2019">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2019" title="Portal:Current events/November 2019">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2019" title="Portal:Current events/December 2019">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2018" title="2018">2018</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2018" title="Portal:Current events/January 2018">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2018" title="Portal:Current events/February 2018">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2018" title="Portal:Current events/March 2018">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2018" title="Portal:Current events/April 2018">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2018" title="Portal:Current events/May 2018">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2018" title="Portal:Current events/June 2018">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2018" title="Portal:Current events/July 2018">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2018" title="Portal:Current events/August 2018">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2018" title="Portal:Current events/September 2018">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2018" title="Portal:Current events/October 2018">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2018" title="Portal:Current events/November 2018">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2018" title="Portal:Current events/December 2018">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2017" title="2017">2017</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2017" title="Portal:Current events/January 2017">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2017" title="Portal:Current events/February 2017">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2017" title="Portal:Current events/March 2017">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2017" title="Portal:Current events/April 2017">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2017" title="Portal:Current events/May 2017">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2017" title="Portal:Current events/June 2017">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2017" title="Portal:Current events/July 2017">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2017" title="Portal:Current events/August 2017">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2017" title="Portal:Current events/September 2017">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2017" title="Portal:Current events/October 2017">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2017" title="Portal:Current events/November 2017">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2017" title="Portal:Current events/December 2017">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2016" title="2016">2016</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2016" title="Portal:Current events/January 2016">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2016" title="Portal:Current events/February 2016">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2016" title="Portal:Current events/March 2016">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2016" title="Portal:Current events/April 2016">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2016" title="Portal:Current events/May 2016">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2016" title="Portal:Current events/June 2016">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2016" title="Portal:Current events/July 2016">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2016" title="Portal:Current events/August 2016">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2016" title="Portal:Current events/September 2016">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2016" title="Portal:Current events/October 2016">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2016" title="Portal:Current events/November 2016">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2016" title="Portal:Current events/December 2016">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2015" title="2015">2015</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2015" title="Portal:Current events/January 2015">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2015" title="Portal:Current events/February 2015">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2015" title="Portal:Current events/March 2015">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2015" title="Portal:Current events/April 2015">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2015" title="Portal:Current events/May 2015">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2015" title="Portal:Current events/June 2015">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2015" title="Portal:Current events/July 2015">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2015" title="Portal:Current events/August 2015">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2015" title="Portal:Current events/September 2015">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2015" title="Portal:Current events/October 2015">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2015" title="Portal:Current events/November 2015">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2015" title="Portal:Current events/December 2015">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2014" title="2014">2014</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2014" title="Portal:Current events/January 2014">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2014" title="Portal:Current events/February 2014">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2014" title="Portal:Current events/March 2014">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2014" title="Portal:Current events/April 2014">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2014" title="Portal:Current events/May 2014">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2014" title="Portal:Current events/June 2014">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2014" title="Portal:Current events/July 2014">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2014" title="Portal:Current events/August 2014">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2014" title="Portal:Current events/September 2014">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2014" title="Portal:Current events/October 2014">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2014" title="Portal:Current events/November 2014">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2014" title="Portal:Current events/December 2014">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2013" title="2013">2013</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2013" title="Portal:Current events/January 2013">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2013" title="Portal:Current events/February 2013">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2013" title="Portal:Current events/March 2013">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2013" title="Portal:Current events/April 2013">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2013" title="Portal:Current events/May 2013">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2013" title="Portal:Current events/June 2013">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2013" title="Portal:Current events/July 2013">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2013" title="Portal:Current events/August 2013">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2013" title="Portal:Current events/September 2013">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2013" title="Portal:Current events/October 2013">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2013" title="Portal:Current events/November 2013">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2013" title="Portal:Current events/December 2013">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2012" title="2012">2012</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2012" title="Portal:Current events/January 2012">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2012" title="Portal:Current events/February 2012">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2012" title="Portal:Current events/March 2012">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2012" title="Portal:Current events/April 2012">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2012" title="Portal:Current events/May 2012">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2012" title="Portal:Current events/June 2012">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2012" title="Portal:Current events/July 2012">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2012" title="Portal:Current events/August 2012">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2012" title="Portal:Current events/September 2012">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2012" title="Portal:Current events/October 2012">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2012" title="Portal:Current events/November 2012">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2012" title="Portal:Current events/December 2012">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2011" title="2011">2011</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2011" title="Portal:Current events/January 2011">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2011" title="Portal:Current events/February 2011">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2011" title="Portal:Current events/March 2011">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2011" title="Portal:Current events/April 2011">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2011" title="Portal:Current events/May 2011">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2011" title="Portal:Current events/June 2011">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2011" title="Portal:Current events/July 2011">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2011" title="Portal:Current events/August 2011">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2011" title="Portal:Current events/September 2011">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2011" title="Portal:Current events/October 2011">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2011" title="Portal:Current events/November 2011">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2011" title="Portal:Current events/December 2011">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2010" title="2010">2010</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2010" title="Portal:Current events/January 2010">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2010" title="Portal:Current events/February 2010">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2010" title="Portal:Current events/March 2010">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2010" title="Portal:Current events/April 2010">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2010" title="Portal:Current events/May 2010">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2010" title="Portal:Current events/June 2010">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2010" title="Portal:Current events/July 2010">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2010" title="Portal:Current events/August 2010">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2010" title="Portal:Current events/September 2010">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2010" title="Portal:Current events/October 2010">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2010" title="Portal:Current events/November 2010">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2010" title="Portal:Current events/December 2010">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2009" title="2009">2009</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2009" title="Portal:Current events/January 2009">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2009" title="Portal:Current events/February 2009">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2009" title="Portal:Current events/March 2009">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2009" title="Portal:Current events/April 2009">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2009" title="Portal:Current events/May 2009">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2009" title="Portal:Current events/June 2009">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2009" title="Portal:Current events/July 2009">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2009" title="Portal:Current events/August 2009">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2009" title="Portal:Current events/September 2009">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2009" title="Portal:Current events/October 2009">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2009" title="Portal:Current events/November 2009">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2009" title="Portal:Current events/December 2009">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2008" title="2008">2008</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2008" title="Portal:Current events/January 2008">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2008" title="Portal:Current events/February 2008">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2008" title="Portal:Current events/March 2008">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2008" title="Portal:Current events/April 2008">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2008" title="Portal:Current events/May 2008">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2008" title="Portal:Current events/June 2008">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2008" title="Portal:Current events/July 2008">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2008" title="Portal:Current events/August 2008">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2008" title="Portal:Current events/September 2008">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2008" title="Portal:Current events/October 2008">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2008" title="Portal:Current events/November 2008">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2008" title="Portal:Current events/December 2008">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2007" title="2007">2007</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2007" title="Portal:Current events/January 2007">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2007" title="Portal:Current events/February 2007">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2007" title="Portal:Current events/March 2007">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2007" title="Portal:Current events/April 2007">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2007" title="Portal:Current events/May 2007">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2007" title="Portal:Current events/June 2007">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2007" title="Portal:Current events/July 2007">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2007" title="Portal:Current events/August 2007">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2007" title="Portal:Current events/September 2007">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2007" title="Portal:Current events/October 2007">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2007" title="Portal:Current events/November 2007">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2007" title="Portal:Current events/December 2007">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2006" title="2006">2006</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2006" title="Portal:Current events/January 2006">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2006" title="Portal:Current events/February 2006">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2006" title="Portal:Current events/March 2006">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2006" title="Portal:Current events/April 2006">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2006" title="Portal:Current events/May 2006">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2006" title="Portal:Current events/June 2006">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2006" title="Portal:Current events/July 2006">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2006" title="Portal:Current events/August 2006">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2006" title="Portal:Current events/September 2006">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2006" title="Portal:Current events/October 2006">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2006" title="Portal:Current events/November 2006">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2006" title="Portal:Current events/December 2006">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2005" title="2005">2005</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2005" title="Portal:Current events/January 2005">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2005" title="Portal:Current events/February 2005">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2005" title="Portal:Current events/March 2005">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2005" title="Portal:Current events/April 2005">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2005" title="Portal:Current events/May 2005">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2005" title="Portal:Current events/June 2005">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2005" title="Portal:Current events/July 2005">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2005" title="Portal:Current events/August 2005">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2005" title="Portal:Current events/September 2005">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2005" title="Portal:Current events/October 2005">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2005" title="Portal:Current events/November 2005">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2005" title="Portal:Current events/December 2005">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2004" title="2004">2004</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2004" title="Portal:Current events/January 2004">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2004" title="Portal:Current events/February 2004">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2004" title="Portal:Current events/March 2004">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2004" title="Portal:Current events/April 2004">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2004" title="Portal:Current events/May 2004">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2004" title="Portal:Current events/June 2004">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2004" title="Portal:Current events/July 2004">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2004" title="Portal:Current events/August 2004">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2004" title="Portal:Current events/September 2004">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2004" title="Portal:Current events/October 2004">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2004" title="Portal:Current events/November 2004">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2004" title="Portal:Current events/December 2004">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2003" title="2003">2003</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2003" title="Portal:Current events/January 2003">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2003" title="Portal:Current events/February 2003">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2003" title="Portal:Current events/March 2003">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2003" title="Portal:Current events/April 2003">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2003" title="Portal:Current events/May 2003">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2003" title="Portal:Current events/June 2003">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2003" title="Portal:Current events/July 2003">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2003" title="Portal:Current events/August 2003">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2003" title="Portal:Current events/September 2003">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2003" title="Portal:Current events/October 2003">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2003" title="Portal:Current events/November 2003">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2003" title="Portal:Current events/December 2003">December</a></li></ul>
</div></td></tr><tr><th class="navbox-group" scope="row" style="width:1%"><a href="/wiki/2002" title="2002">2002</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Portal:Current_events/January_2002" title="Portal:Current events/January 2002">January</a></li>
<li><a href="/wiki/Portal:Current_events/February_2002" title="Portal:Current events/February 2002">February</a></li>
<li><a href="/wiki/Portal:Current_events/March_2002" title="Portal:Current events/March 2002">March</a></li>
<li><a href="/wiki/Portal:Current_events/April_2002" title="Portal:Current events/April 2002">April</a></li>
<li><a href="/wiki/Portal:Current_events/May_2002" title="Portal:Current events/May 2002">May</a></li>
<li><a href="/wiki/Portal:Current_events/June_2002" title="Portal:Current events/June 2002">June</a></li>
<li><a href="/wiki/Portal:Current_events/July_2002" title="Portal:Current events/July 2002">July</a></li>
<li><a href="/wiki/Portal:Current_events/August_2002" title="Portal:Current events/August 2002">August</a></li>
<li><a href="/wiki/Portal:Current_events/September_2002" title="Portal:Current events/September 2002">September</a></li>
<li><a href="/wiki/Portal:Current_events/October_2002" title="Portal:Current events/October 2002">October</a></li>
<li><a href="/wiki/Portal:Current_events/November_2002" title="Portal:Current events/November 2002">November</a></li>
<li><a href="/wiki/Portal:Current_events/December_2002" title="Portal:Current events/December 2002">December</a></li></ul>
</div></td></tr><tr><td class="navbox-abovebelow hlist" colspan="2"><div>
<ul><li><a class="mw-selflink selflink">Portal:Current events</a></li>
<li><a href="/wiki/Portal:Current_events/Calendars" title="Portal:Current events/Calendars">Calendars</a></li></ul>
</div></td></tr></tbody></table></div>
<style data-mw-deduplicate="TemplateStyles:r1239335380">.mw-parser-output #sister-projects-list{display:flex;flex-wrap:wrap}.mw-parser-output #sister-projects-list li{display:inline-block}.mw-parser-output #sister-projects-list li span{font-weight:bold}.mw-parser-output #sister-projects-list li>div{display:inline-block;vertical-align:middle;padding:6px 4px}.mw-parser-output #sister-projects-list li>div:first-child{text-align:center}@media screen{.mw-parser-output .sister-projects-wikt-icon-dark,html.skin-theme-clientpref-night .mw-parser-output .sister-projects-wikt-icon-light{display:none}html.skin-theme-clientpref-night .mw-parser-output .sister-projects-wikt-icon-dark{display:inline}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .sister-projects-wikt-icon-dark{display:inline}html.skin-theme-clientpref-os .mw-parser-output .sister-projects-wikt-icon-light{display:none}}@media(min-width:360px){.mw-parser-output #sister-projects-list li{width:33%;min-width:20em;white-space:nowrap;flex:1 0 25%}.mw-parser-output #sister-projects-list li>div:first-child{min-width:50px}}</style>
<div class="smallcaps" style="font-variant:small-caps;"><div class="center" style="width:auto; margin-left:auto; margin-right:auto;"><b>Discover Wikipedia using <a href="/wiki/Wikipedia:Portal" title="Wikipedia:Portal">portals</a></b></div></div>
<link href="mw-data:TemplateStyles:r1126788409" rel="mw-deduplicated-inline-style"/><div class="plainlist">
<ul id="sister-projects-list">
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><a class="mw-file-description" href="/wiki/File:Lorentzian_Wormhole.svg"><img alt="icon" class="mw-file-element" data-file-height="600" data-file-width="620" decoding="async" height="34" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Lorentzian_Wormhole.svg/35px-Lorentzian_Wormhole.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Lorentzian_Wormhole.svg/53px-Lorentzian_Wormhole.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Lorentzian_Wormhole.svg/70px-Lorentzian_Wormhole.svg.png 2x" width="35"/></a><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Wikipedia:Contents/Portals" title="Wikipedia:Contents/Portals">List of all portals</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><a class="mw-file-description" href="/wiki/File:Nuvola_apps_package_graphics.png"><img alt="icon" class="mw-file-element" data-file-height="128" data-file-width="128" decoding="async" height="35" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/22/Nuvola_apps_package_graphics.png/35px-Nuvola_apps_package_graphics.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/22/Nuvola_apps_package_graphics.png/53px-Nuvola_apps_package_graphics.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/22/Nuvola_apps_package_graphics.png/70px-Nuvola_apps_package_graphics.png 2x" width="35"/></a><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Portal:The_arts" title="Portal:The arts">The arts portal</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><span><img alt="icon" class="mw-file-element" data-file-height="1944" data-file-width="1911" decoding="async" height="36" src="//upload.wikimedia.org/wikipedia/en/thumb/6/69/P_vip.svg/35px-P_vip.svg.png" srcset="//upload.wikimedia.org/wikipedia/en/thumb/6/69/P_vip.svg/53px-P_vip.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/6/69/P_vip.svg/70px-P_vip.svg.png 2x" width="35"/></span><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Portal:Biography" title="Portal:Biography">Biography portal</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><span><img alt="icon" class="mw-file-element" data-file-height="290" data-file-width="360" decoding="async" height="28" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/53/Ambox_current_red_Americas.svg/35px-Ambox_current_red_Americas.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/53/Ambox_current_red_Americas.svg/53px-Ambox_current_red_Americas.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/53/Ambox_current_red_Americas.svg/70px-Ambox_current_red_Americas.svg.png 2x" width="35"/></span><figcaption></figcaption></figure></div>
<div><span><a class="mw-selflink selflink">Current events portal</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><span><img alt="globe" class="mw-file-element" data-file-height="600" data-file-width="600" decoding="async" height="35" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Terra.png/35px-Terra.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Terra.png/53px-Terra.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Terra.png/70px-Terra.png 2x" width="35"/></span><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Portal:Geography" title="Portal:Geography">Geography portal</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><span><img alt="icon" class="mw-file-element" data-file-height="360" data-file-width="400" decoding="async" height="32" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/48/P_history.svg/35px-P_history.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/48/P_history.svg/53px-P_history.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/48/P_history.svg/70px-P_history.svg.png 2x" width="35"/></span><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Portal:History" title="Portal:History">History portal</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><a class="mw-file-description" href="/wiki/File:Nuvola_apps_edu_mathematics_blue-p.svg"><img alt="square root of x" class="mw-file-element" data-file-height="128" data-file-width="128" decoding="async" height="35" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Nuvola_apps_edu_mathematics_blue-p.svg/35px-Nuvola_apps_edu_mathematics_blue-p.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Nuvola_apps_edu_mathematics_blue-p.svg/53px-Nuvola_apps_edu_mathematics_blue-p.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Nuvola_apps_edu_mathematics_blue-p.svg/70px-Nuvola_apps_edu_mathematics_blue-p.svg.png 2x" width="35"/></a><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Portal:Mathematics" title="Portal:Mathematics">Mathematics portal</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><a class="mw-file-description" href="/wiki/File:Nuvola_apps_kalzium.svg"><img alt="icon" class="mw-file-element" data-file-height="128" data-file-width="128" decoding="async" height="35" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/8b/Nuvola_apps_kalzium.svg/35px-Nuvola_apps_kalzium.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/8b/Nuvola_apps_kalzium.svg/53px-Nuvola_apps_kalzium.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/8b/Nuvola_apps_kalzium.svg/70px-Nuvola_apps_kalzium.svg.png 2x" width="35"/></a><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Portal:Science" title="Portal:Science">Science portal</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><a class="mw-file-description" href="/wiki/File:Social_sciences.svg"><img alt="icon" class="mw-file-element" data-file-height="122" data-file-width="139" decoding="async" height="31" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/42/Social_sciences.svg/35px-Social_sciences.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/42/Social_sciences.svg/53px-Social_sciences.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/42/Social_sciences.svg/70px-Social_sciences.svg.png 2x" width="35"/></a><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Portal:Society" title="Portal:Society">Society portal</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><a class="mw-file-description" href="/wiki/File:Noun-technology.svg"><img alt="icon" class="mw-file-element" data-file-height="88" data-file-width="90" decoding="async" height="34" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Noun-technology.svg/35px-Noun-technology.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Noun-technology.svg/53px-Noun-technology.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Noun-technology.svg/70px-Noun-technology.svg.png 2x" width="35"/></a><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Portal:Technology" title="Portal:Technology">Technology portal</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><a class="mw-file-description" href="/wiki/File:Random_font_awesome.svg"><img alt="icon" class="mw-file-element" data-file-height="512" data-file-width="512" decoding="async" height="35" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/70/Random_font_awesome.svg/35px-Random_font_awesome.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/70/Random_font_awesome.svg/53px-Random_font_awesome.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/70/Random_font_awesome.svg/70px-Random_font_awesome.svg.png 2x" width="35"/></a><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Special:RandomInCategory/All_portals" title="Special:RandomInCategory/All portals">Random portal</a></span></div>
</li>
<li>
<div><figure class="mw-halign-center" typeof="mw:File"><a class="mw-file-description" href="/wiki/File:Portal.svg"><img alt="icon" class="mw-file-element" data-file-height="32" data-file-width="36" decoding="async" height="31" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Portal.svg/35px-Portal.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Portal.svg/53px-Portal.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Portal.svg/70px-Portal.svg.png 2x" width="35"/></a><figcaption></figcaption></figure></div>
<div><span><a href="/wiki/Wikipedia:WikiProject_Portals" title="Wikipedia:WikiProject Portals">WikiProject Portals</a></span></div>
</li>
<li class="mw-empty-elt">
</li>
</ul>
</div>
</div>
<!-- 
NewPP limit report
Parsed by mw‐web.codfw.main‐7f966856f8‐qhgbz
Cached time: 20241220220855
Cache expiry: 3600
Reduced expiry: true
Complications: [vary‐revision‐sha1, no‐toc]
CPU time usage: 0.695 seconds
Real time usage: 0.967 seconds
Preprocessor visited node count: 7268/1000000
Post‐expand include size: 497922/2097152 bytes
Template argument size: 64150/2097152 bytes
Highest expansion depth: 19/100
Expensive parser function count: 4/500
Unstrip recursion depth: 0/20
Unstrip post‐expand size: 63756/5000000 bytes
Lua time usage: 0.171/10.000 seconds
Lua memory usage: 5079915/52428800 bytes
Number of Wikibase entities loaded: 1/400
-->
<!--
Transclusion expansion time report (%,ms,calls,template)
100.00%  603.405      1 -total
 26.42%  159.430      1 Portal:Current_events/Inclusion
 22.89%  138.137      1 Portal:Current_events/Sidebar
 17.71%  106.864      1 Template:C21_year_in_topic_current_events
 14.66%   88.467      7 Template:Current_events
 11.19%   67.545      1 Template:Sister_project_links
 10.46%   63.128      1 Portal:Current_events/Events_by_month
  9.47%   57.128      1 Portal:Current_events/News_Browser
  7.95%   47.997      1 Template:Portal_maintenance_status
  6.60%   39.821      4 Template:Flatlist
-->
<!-- Saved in parser cache with key enwiki:pcache:5776237:|#|:idhash:canonical and timestamp 20241220220855 and revision id 1234748158. Rendering was triggered because: page-view
 -->
</div><!--esi <esi:include src="/esitest-fa8a495983347898/content" /> --><noscript><img alt="" height="1" src="https://login.wikimedia.org/wiki/Special:CentralAutoLogin/start?useformat=desktop&amp;type=1x1&amp;usesul3=0" style="border: none; position: absolute;" width="1"/></noscript>
<div class="printfooter" data-nosnippet="">Retrieved from "<a dir="ltr" href="https://en.wikipedia.org/w/index.php?title=Portal:Current_events&amp;oldid=1234748158">https://en.wikipedia.org/w/index.php?title=Portal:Current_events&amp;oldid=1234748158</a>"</div></div>
<div class="catlinks" data-mw="interface" id="catlinks"><div class="mw-normal-catlinks" id="mw-normal-catlinks"><a href="/wiki/Help:Category" title="Help:Category">Categories</a>: <ul><li><a href="/wiki/Category:All_portals" title="Category:All portals">All portals</a></li><li><a href="/wiki/Category:2024_by_day" title="Category:2024 by day">2024 by day</a></li><li><a href="/wiki/Category:Current_events_portal" title="Category:Current events portal">Current events portal</a></li><li><a href="/wiki/Category:2024" title="Category:2024">2024</a></li><li><a href="/wiki/Category:Current_events" title="Category:Current events">Current events</a></li><li><a href="/wiki/Category:WikiProject_Current_events" title="Category:WikiProject Current events">WikiProject Current events</a></li><li><a href="/wiki/Category:History_portals" title="Category:History portals">History portals</a></li></ul></div><div class="mw-hidden-catlinks mw-hidden-cats-hidden" id="mw-hidden-catlinks">Hidden categories: <ul><li><a href="/wiki/Category:Wikipedia_pages_protected_against_vandalism" title="Category:Wikipedia pages protected against vandalism">Wikipedia pages protected against vandalism</a></li><li><a href="/wiki/Category:Portals_with_triaged_subpages_from_October_2020" title="Category:Portals with triaged subpages from October 2020">Portals with triaged subpages from October 2020</a></li><li><a href="/wiki/Category:All_portals_with_triaged_subpages" title="Category:All portals with triaged subpages">All portals with triaged subpages</a></li><li><a href="/wiki/Category:Portals_with_no_named_maintainer" title="Category:Portals with no named maintainer">Portals with no named maintainer</a></li></ul></div></div>
</div>
</main>
</div>
<div class="mw-footer-container">
<footer class="mw-footer" id="footer">
<ul id="footer-info">
<li id="footer-info-lastmod"> This page was last edited on 15 July 2024, at 23:17<span class="anonymous-show"> (UTC)</span>.</li>
<li id="footer-info-copyright">Text is available under the <a href="/wiki/Wikipedia:Text_of_the_Creative_Commons_Attribution-ShareAlike_4.0_International_License" title="Wikipedia:Text of the Creative Commons Attribution-ShareAlike 4.0 International License">Creative Commons Attribution-ShareAlike 4.0 License</a>;
additional terms may apply. By using this site, you agree to the <a class="extiw" href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Terms_of_Use" title="foundation:Special:MyLanguage/Policy:Terms of Use">Terms of Use</a> and <a class="extiw" href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy" title="foundation:Special:MyLanguage/Policy:Privacy policy">Privacy Policy</a>. Wikipedia® is a registered trademark of the <a class="external text" href="https://wikimediafoundation.org/" rel="nofollow">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
</ul>
<ul id="footer-places">
<li id="footer-places-privacy"><a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy">Privacy policy</a></li>
<li id="footer-places-about"><a href="/wiki/Wikipedia:About">About Wikipedia</a></li>
<li id="footer-places-disclaimers"><a href="/wiki/Wikipedia:General_disclaimer">Disclaimers</a></li>
<li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
<li id="footer-places-wm-codeofconduct"><a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Universal_Code_of_Conduct">Code of Conduct</a></li>
<li id="footer-places-developers"><a href="https://developer.wikimedia.org">Developers</a></li>
<li id="footer-places-statslink"><a href="https://stats.wikimedia.org/#/en.wikipedia.org">Statistics</a></li>
<li id="footer-places-cookiestatement"><a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Cookie_statement">Cookie statement</a></li>
<li id="footer-places-mobileview"><a class="noprint stopMobileRedirectToggle" href="//en.m.wikipedia.org/w/index.php?title=Portal:Current_events&amp;mobileaction=toggle_view_mobile">Mobile view</a></li>
</ul>
<ul class="noprint" id="footer-icons">
<li id="footer-copyrightico"><a class="cdx-button cdx-button--fake-button cdx-button--size-large cdx-button--fake-button--enabled" href="https://wikimediafoundation.org/"><img alt="Wikimedia Foundation" height="29" loading="lazy" src="/static/images/footer/wikimedia-button.svg" width="84"/></a></li>
<li id="footer-poweredbyico"><a class="cdx-button cdx-button--fake-button cdx-button--size-large cdx-button--fake-button--enabled" href="https://www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" loading="lazy" src="/w/resources/assets/poweredby_mediawiki.svg" width="88"/></a></li>
</ul>
</footer>
</div>
</div>
</div>
<div class="vector-settings" id="p-dock-bottom">
<ul></ul>
</div><script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgHostname":"mw-web.codfw.main-7f966856f8-jgzfl","wgBackendResponseTime":141,"wgPageParseReport":{"limitreport":{"cputime":"0.695","walltime":"0.967","ppvisitednodes":{"value":7268,"limit":1000000},"postexpandincludesize":{"value":497922,"limit":2097152},"templateargumentsize":{"value":64150,"limit":2097152},"expansiondepth":{"value":19,"limit":100},"expensivefunctioncount":{"value":4,"limit":500},"unstrip-depth":{"value":0,"limit":20},"unstrip-size":{"value":63756,"limit":5000000},"entityaccesscount":{"value":1,"limit":400},"timingprofile":["100.00%  603.405      1 -total"," 26.42%  159.430      1 Portal:Current_events/Inclusion"," 22.89%  138.137      1 Portal:Current_events/Sidebar"," 17.71%  106.864      1 Template:C21_year_in_topic_current_events"," 14.66%   88.467      7 Template:Current_events"," 11.19%   67.545      1 Template:Sister_project_links"," 10.46%   63.128      1 Portal:Current_events/Events_by_month","  9.47%   57.128      1 Portal:Current_events/News_Browser","  7.95%   47.997      1 Template:Portal_maintenance_status","  6.60%   39.821      4 Template:Flatlist"]},"scribunto":{"limitreport-timeusage":{"value":"0.171","limit":"10.000"},"limitreport-memusage":{"value":5079915,"limit":52428800}},"cachereport":{"origin":"mw-web.codfw.main-7f966856f8-qhgbz","timestamp":"20241220220855","ttl":3600,"transientcontent":true}}});});</script>
</body>
</html>
#Another way of displaying the dataframe
df
Headline Description Timestamp
0 No Headline No Description No Timestamp
1 No Headline No Description No Timestamp
2 No Headline No Description No Timestamp
3 No Headline No Description No Timestamp

Processing the Description column

# Currently only 3 rows, one for each Headline
# Next to split the clubbed values in the 'Description' Column

# Split the 'Description' column by newline character ('\n') and stack the resulting Series
split_descriptions = df['Description'].str.split('\n', expand=True).stack()

# Reset the index to match the original DataFrame's structure
split_descriptions = split_descriptions.reset_index(level=1, drop=True)

# Rename the Series to 'Description' to match the original DataFrame
split_descriptions.name = 'Description'

# Drop the original 'Description' column from the original DataFrame
df = df.drop('Description', axis=1)

# Concatenate the original DataFrame with the split 'Description' Series
df = pd.concat([df, split_descriptions], axis=1)

df
Headline Timestamp Description
0 No Headline No Timestamp No Description
1 No Headline No Timestamp No Description
2 No Headline No Timestamp No Description
3 No Headline No Timestamp No Description

Extracting start year of the events from the events description

The function below (extract_year) tries to find an event start year in the event description. It assumes that each description contains a start year i.e (the first occurrence of) a series of 4 digits, either occurring at the start of the description and followed by an empty string or separated from the other characters in the description by an empty string (if found in the middle of the description). It uses a so-called regular expression to find the start year in the description and extract it. extract_year is then applied to all rows in the Description column to create a new column Event Start Year that has all the start years associated with each event. The processing is made complete by then removing the start years from the Description column values and dropping the Timestamp column that was not fit for purpose and did not contain event dates.

# Function to extract the year from the description
def extract_year(description):
    # Use regular expressions to find a 4-digit year in the description
    year_match = re.search(r'\b\d{4}\b', description)
    if year_match:
        return year_match.group(0)
    else:
        return None

# Create a new column 'Event Year' by applying the extract_year function to the 'Description' column
df['Event Start Year'] = df['Description'].apply(extract_year)

# Remove the year value from the 'Description' column
df['Description'] = df['Description'].apply(lambda x: re.sub(r'\b\d{4}\b', '', x) if pd.notna(x) else x)

df
Headline Timestamp Description Event Start Year
0 No Headline No Timestamp No Description None
1 No Headline No Timestamp No Description None
2 No Headline No Timestamp No Description None
3 No Headline No Timestamp No Description None
# Drop the "Timestamp" column
df = df.drop(columns=["Timestamp"])
df
Headline Description Event Start Year
0 No Headline No Description None
1 No Headline No Description None
2 No Headline No Description None
3 No Headline No Description None

String manipulation in dataframe columns

# Remove leading and trailing whitespace from all columns (if any)
df = df.apply(lambda x: x.str.strip() if x.dtype == "object" else x)
df
Headline Description Event Start Year
0 No Headline No Description None
1 No Headline No Description None
2 No Headline No Description None
3 No Headline No Description None
# Remove special characters from the 'Description' column
df['Description'] = df['Description'].apply(lambda x: re.sub(r'[^A-Za-z0-9\s]+', '', x))
df
Headline Description Event Start Year
0 No Headline No Description None
1 No Headline No Description None
2 No Headline No Description None
3 No Headline No Description None

Index reset

# Reset the DataFrame index
df = df.reset_index(drop=True)
df
Headline Description Event Start Year
0 No Headline No Description None
1 No Headline No Description None
2 No Headline No Description None
3 No Headline No Description None

Extracting event location from Description

# Function to extract the event location from the description
def extract_event_location(description):
    # Use regular expressions to find the location based on keywords
    location_match = re.search(r'(?:United|Sri|South|North)\s+\w+|\b(?:United|Sri|South|North)\b', description)
    
    #Note: We have only added 4 options in location_match variable, we can add other words such as: 
    #'New' for 'New Zealand',
    #'Costa' for 'Costa Rica',
    #'El' for 'El Salvador'
    
    if location_match:
        return location_match.group(0)
    else:
        # If none of the keywords are found, fetch the first word from the description
        words = description.split()
        if words:
            return words[0]
        else:
            return None

# Apply the extract_event_location function to the 'Description' column
df['Event Location'] = df['Description'].apply(extract_event_location)

df
Headline Description Event Start Year Event Location
0 No Headline No Description None No
1 No Headline No Description None No
2 No Headline No Description None No
3 No Headline No Description None No
location_mapping = {
    'Atlantic' : 'Atlantic Ocean',
    'Pacific' : 'Pacific Ocean',
    'French': 'France',
    'Argentine' : 'Argentina',
    'Lebanese' : 'Lebanon',
    'Pakistani' : 'Pakistan',
    'Peruvian' : 'Peru',
    'Ukrainian' : 'Ukraine',
    'Venezuelan' : 'Venezuela',
    'North Kosovo' : 'Kosovo',
    'Nigerien' : 'Niger',
    'Libyan' : 'Libya',
    'Israeli' : 'Israel',
    'Haitian' : 'Haiti',
    'Armenian': 'Armenia',
    'Turkish' : 'Turkey',
    'South African' : 'South Africa',
    'Sri Lankan' : 'Sri Lanka'
}

# Function to correct event locations to country names
def correct_event_location(event_location):
    return location_mapping.get(event_location, event_location)

# Apply the correct_event_location function to the 'Event Location' column
df['Correct Location'] = df['Event Location'].apply(correct_event_location)
df
Headline Description Event Start Year Event Location Correct Location
0 No Headline No Description None No No
1 No Headline No Description None No No
2 No Headline No Description None No No
3 No Headline No Description None No No
# Convert 'Correct Location' column to sentence case
df['Correct Location'] = df['Correct Location'].apply(lambda x: x.title() if pd.notna(x) else x)
df
Headline Description Event Start Year Event Location Correct Location
0 No Headline No Description None No No
1 No Headline No Description None No No
2 No Headline No Description None No No
3 No Headline No Description None No No
#Discuss the Correct Location values
df['Correct Location'].value_counts(dropna=False)

#which one are valid values or not?
Correct Location
No    4
Name: count, dtype: int64

Note that not all ‘Correct Location’ values are valid country/city names. Values such as ‘Global’, ‘Food’, ‘Inflation’, ‘Belaruseuropean’, ‘Great’ or ‘Impeachment’ obtained by scrapping requires a more in-depth look and more cleaning and processing. Webscrapping alone is not alone in this case!

Calculating event duration

To calculate event duration, the reference point taken is the current year i.e 2023.

# Function to calculate duration and format the result
def calculate_duration(event_year):
    if pd.notna(event_year):
        current_year = datetime.datetime.now().year
        duration = current_year - int(event_year)
        if duration == 1 or duration == 0:
            return f"{duration} year"
        else:
            return f"{duration} years"
    else:
        return None
# Create a new column 'Duration' using the calculate_duration function
df['Duration'] = df['Event Start Year'].apply(calculate_duration)
df
Headline Description Event Start Year Event Location Correct Location Duration
0 No Headline No Description None No No None
1 No Headline No Description None No No None
2 No Headline No Description None No No None
3 No Headline No Description None No No None

Reordering columns

#EXTRA (Just to showcase that the placing of columns can be changed easily)

# Get the current column names
columns = df.columns.tolist()

# Move 'Duration' column next to 'Event Year' column
columns.remove('Duration')
columns.insert(columns.index('Event Start Year') + 1, 'Duration')

# Reorder the columns in the DataFrame
df = df[columns]
df
Headline Description Event Start Year Duration Event Location Correct Location
0 No Headline No Description None None No No
1 No Headline No Description None None No No
2 No Headline No Description None None No No
3 No Headline No Description None None No No