HomeTopicsLatin AmericaNicaragua Strips Citizenship of 94 Dissenters

Nicaragua Strips Citizenship of 94 Dissenters

A Nicaraguan court under President Daniel Ortega stripped the citizenship from 94 exiled dissidents and declared them to be “traitors to the fatherland,” drawing sharp criticism from a regional UN watchdog agency.

Among the dissidents is perhaps Nicaragua’s most acclaimed living author, Sergio Ramirez, who once served as vice president under Ortega, who has been widely accused of authoritarianism.

Others include a Catholic bishop, Silvio Baez, and several former comrades-in-arms of Ortega in the leftist Sandinista Front that came to power in 1979, only to lose elections in 1990.

Another writer, Gioconda Belli, and a prominent human rights activist, Vilma Nunez, also were stripped of citizenship as were former Sandinista leaders Luis Carrion and Monica Baltodano and crusading journalist Carlos Fernando Chamorro.

The chief of Managua’s court of appeals, Ernesto Rodriguez Mejia, read a resolution declaring the 94 exiled dissidents to be “fugitives from justice.”

“The accused executed and continue carrying out criminal acts to the detriment of peace, sovereignty, independence and self-determination of the Nicaraguan people,” the judge said, adding that they fomented economic sabotage of the Ortega government by calling for boycotts.

“Due to these facts, the accused can no longer be considered Nicaraguan citizens,” he said. The Central America office of the UN High Commissioner for Human Rights voiced its “alarm” over the action.

“We condemn in the strongest possible terms the new wave of violations of (human rights) and call on the state to immediately cease persecution and reprisal” against dissidents and human rights defenders, the office tweeted.

Since large-scale street protests erupted against his rule in 2018, Ortega has employed heavily armed paramilitary squads to crush opposition and jailed all major opposition figures.

The Ortega government freed and expelled a group of 222 jailed dissidents last week, yanking their citizenship after putting them on a charter flight to Washington.

Ortega came back to power after 2007 elections, and has steadily seized control over all branches of government. 

Ramirez, the writer, who is exiled in Spain, broke with the Sandinista Front in the mid-1990s, when he founded a political movement that vowed to adhere to democratic principles.

Ramirez failed in a 1996 bid for the presidency, but has had far more luck in his writing career, winning the 2017 Cervantes Prize given by the Spanish government, which is the most prestigious literary prize in the Spanish-speaking world. 

Trending Now

Costa Rica Population Could Begin Shrinking Earlier Than Expected

Costa Rica's population could begin shrinking earlier than previously expected as the number of children being born continues to fall faster than population experts...

Panama repeats China invitation to Canal Neutrality Treaty

Panama’s government again asked the People’s Republic of China to accede to the protocol of the Treaty Concerning the Permanent Neutrality and Operation of...

Jacó Beach Is Changing as New Residents and Major Brands Move In

For decades, Jacó’s economy has revolved around the beach. Surfing, hotels, restaurants, nightlife and weekend visitors from San José helped turn the Central Pacific...

Honduras Adopts El Salvador-Style Prison Measures Against Gangs

Honduras has approved stricter prison rules targeting suspected gang members and drug traffickers, adopting measures similar to those used in El Salvador’s anti-gang crackdown.

U.S. Deported More Than 25,000 People Through Secret Third-Country Deals

More than 25,000 people have been deported by the United States to countries with which they have no ties under agreements involving 35 nations and hundreds of millions of dollars, according to an investigation by Forbidden Stories.

Costa Rica’s Rebeca Grynspan retakes lead in race to head the UN

Costa Rican economist Rebeca Grynspan moved back to the front of the race to become the next secretary-general of the United Nations on Friday....

Pura Vida: Past the Point of No Return

Growing up on the Lower East Side of New York certainly didn’t prepare me for the culture shock of moving to a sleepy little...

More Than 50 Earthquakes Shake Area Around Costa Rica’s Irazú Volcano

More than 50 small earthquakes struck the area around Irazú Volcano this morning, but seismologists say the activity points to movement along a shallow...

Costa Rica’s Juan Santamaría Airport Keeps Highest Passenger Experience Accreditation

Costa Rica’s Juan Santamaría International Airport has renewed the highest level of an international passenger experience accreditation, placing the country’s main airport among just...
🌴 The Weekly Pura Vida

Costa Rica, Once a Week

The week's top stories, weather & insider tips — delivered every Sunday. One email, zero clutter.

🔒 Free. No spam. Unsubscribe anytime.

Loading…
Feels like Humidity Wind
Full Costa Rica Forecast →
Data: OpenWeatherMap
(function(){ var apiKey = '9e9319f5829bcece983394a6b8a5cc80'; var gradients = { clear: 'linear-gradient(135deg,#f5a623 0%,#e67e22 100%)', clouds: 'linear-gradient(135deg,#6b8cae 0%,#4a6b8a 100%)', rain: 'linear-gradient(135deg,#4a6b8a 0%,#2c3e50 100%)', drizzle: 'linear-gradient(135deg,#5b8bb0 0%,#3a6384 100%)', thunderstorm: 'linear-gradient(135deg,#3a3a5c 0%,#1a1a2e 100%)', mist: 'linear-gradient(135deg,#8ca5b8 0%,#607888 100%)', fog: 'linear-gradient(135deg,#8ca5b8 0%,#607888 100%)', default: 'linear-gradient(135deg,#4a90d9 0%,#2c5f9e 100%)' }; function loadCity(city, label){ var body = document.getElementById('tt-weather-body'); var loading = document.getElementById('tt-weather-loading'); var content = document.getElementById('tt-weather-content'); loading.style.display = 'block'; loading.textContent = 'Loading…'; content.style.display = 'none'; var url = 'https://api.openweathermap.org/data/2.5/weather?q=' + encodeURIComponent(city) + '&units=imperial&appid=' + apiKey; fetch(url).then(function(r){return r.json();}).then(function(d){ if(d.cod && d.cod !== 200){ loading.textContent = 'Weather unavailable.'; return; } var main = d.weather[0].main.toLowerCase(); body.style.background = gradients[main] || gradients.default; document.getElementById('tt-weather-location').textContent = label + ', Costa Rica'; document.getElementById('tt-weather-temp').textContent = Math.round(d.main.temp) + '°'; document.getElementById('tt-weather-desc').textContent = d.weather[0].description; document.getElementById('tt-weather-feels').textContent = Math.round(d.main.feels_like) + '°'; document.getElementById('tt-weather-humidity').textContent = d.main.humidity + '%'; document.getElementById('tt-weather-wind').textContent = Math.round(d.wind.speed) + ' mph'; document.getElementById('tt-weather-icon').src = 'https://openweathermap.org/img/wn/' + d.weather[0].icon + '@2x.png'; loading.style.display = 'none'; content.style.display = 'block'; }).catch(function(){ loading.textContent = 'Weather temporarily unavailable.'; }); } var tabs = document.querySelectorAll('.tt-tab'); tabs.forEach(function(tab){ tab.addEventListener('click', function(){ tabs.forEach(function(t){ t.style.opacity='0.6'; t.style.borderBottom='3px solid transparent'; t.style.fontWeight='400'; }); tab.style.opacity='1'; tab.style.borderBottom='3px solid #ffb300'; tab.style.fontWeight='600'; loadCity(tab.getAttribute('data-city'), tab.getAttribute('data-label')); }); }); loadCity('San Jose,CR', 'San José'); })();

Latest News from Costa Rica

Costa Rica Coffee Maker Chorreador
Costa Rica Car Rentals
Costa Rica Travel Insurance
Costa Rica Travel