Bryan Lanza, a strategist who worked on Trump’s recent election campaign, told the BBC that the incoming administration would ask Ukrainian President Zelensky for his acceptance of a “realistic vision for peace”.
“And if President Zelensky comes to the table and says, well, we can only have peace if we have Crimea, it shows us that he’s not serious,” he said. “Crimea is lost.”
Russia annexed the Crimean peninsula in 2014. Eight years later, it launched a full-scale invasion of Ukraine and has seized territory in the east of the country.
The president-elect has repeatedly said his priority is to end the war and stop what he describes as a drain on US resources in the form of military aid to Ukraine.
However, he has yet to reveal how he plans to do it – and will likely hear different… visions for the future of Ukraine from his various advisers.
Lanza, a political adviser to Trump during his 2016 and 2024 campaigns, did not mention areas of eastern Ukraine, but said Russia’s recapture of Crimea was unrealistic and “not the goal of the United States.”
“When Zelensky says we will only stop this fighting, there will be peace only when Crimea is returned, we have news for President Zelensky: Crimea is gone,” he told the BBC World Service weekend programme.
“And if that’s your priority to get Crimea back and have American soldiers fighting to take Crimea back, you’re on your own.”
The US has never deployed US troops to fight in Ukraine, nor has Kiev asked US troops to fight on its behalf. Ukraine has only requested US military assistance to equip its own soldiers.
Mr. Lanza said he has enormous respect for the Ukrainian people, whose “hearts are made like lions.” However, he said the US priority is “peace and to stop the killing”.
“What we’re going to say in Ukraine is, do you know what you’re seeing? What do you see as a realistic vision for peace? It is not a vision of victory, but it is a vision of peace. And let’s start having an honest conversation,” he said.
Trump is expected to handle peace talks with a close circle of aides once he takes office.
An unnamed National Security Council aide who previously served under Trump told the Wall Street Journal on Wednesday: “Anyone — no matter how senior in Trump’s circle — who claims to have a different view or a more detailed window into his plans for Ukraine, it just doesn’t. you know what he’s talking about.”
They said the former president “makes his own calls on national security issues” and had done so “many times at this point.”
Trump spoke with Zelensky after his election victory, with billionaire Elon Musk also on the call.
Trump’s Democratic opponents have accused him of cozying up to Russian President Vladimir Putin and say his approach to the war amounts to a surrender on Ukraine that would endanger all of Europe.
Last month, Zelensky presented a “victory plan” to the Ukrainian parliament that included refusing to cede Ukraine’s territories and sovereignty.
During his campaign, Trump repeatedly said he could end the war between Russia and Ukraine “in one day,” but never elaborated.
#Senior #Trump #adviser #advises #Zelensky #realistic #Crimea #lost
It seems you're working with a JavaScript snippet that interacts with various advertisement platforms and asynchronous script loading. Below is a cleaned-up version of the provided code snippet, with proper structure and comments. I've filled in some missing or placeholder parts, assuming they would be completed appropriately based on your application's needs.
```javascript
// Remove adsense ads for mobile if necessary
if (/* condition for mobile */) {
document.querySelectorAll('.adsense-for-mobile').forEach(function(e) {
e.querySelector('.adsbygoogle').remove();
});
}
const adSenseSlots = document.querySelectorAll('.adsbygoogle');
const adSenseSlotCount = adSenseSlots.length;
if (adSenseSlotCount > 0) {
// Load AdSense scripts asynchronously
adSenseSlots.forEach(function(slot) {
// asyncLoadScript('URL_TO_ADSENSE_SCRIPT');
});
}
// Phaistos Adman
window.AdmanQueue = window.AdmanQueue || [];
AdmanQueue.push(function() {
Adman.adunit({ id: 338, h: /* height in px */ });
});
// OneSignal initialization
window.OneSignalDeferred = window.OneSignalDeferred || [];
OneSignalDeferred.push(function(OneSignal) {
OneSignal.init({
appId: "487cc53b-3b66-4f84-8803-3a3a133043ab",
});
});
// Disqus configuration
var disqus_config = function() {
this.page.url = "/* page URL */";
this.page.identifier = 1562610; // unique identifier for this page
};
setTimeout(function() {
(function() {
var d = document,
s = d.createElement('script');
s.src = "/* URL TO DISQUS SCRIPT */";
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
}, 3000);
// Completion event handler
function cmpActionCompleted() {
// Load additional scripts here
// CleverCore commented out
/*
(function(document, window) {
var a, c = document.createElement("script");
c.id = "CleverCoreLoader57097";
c.src = "/* URL TO CLEVERCORE SCRIPT */";
c.async = true;
c.type = "text/javascript";
c.setAttribute("data-target", window.name);
c.setAttribute("data-callback", "put-your-callback-macro-here");
try {
a = parent.document.getElementsByTagName("script")[0] || document.getElementsByTagName("script")[0];
} catch (e) {
a = false;
}
a || (a = document.getElementsByTagName("head")[0] || document.getElementsByTagName("body")[0]);
a.parentNode.insertBefore(c, a);
})(document, window);
*/
// Taboola/Project Agora
// asyncLoadScript('/* URL */');
// Google AdSense loading
if (document.querySelectorAll('.adsbygoogle').length) {
// asyncLoadScript('/* URL TO AD SENSE SCRIPT */');
}
// Glomex integration
if (document.querySelectorAll('glomex-integration').length) {
setTimeout(function() {
asyncLoadModule('/* URL TO GLOMEX MODULE */');
}, 2000);
}
// Dalecta
setTimeout(() => asyncLoadScript('/* URL TO DALECTA SCRIPT */'), 800);
// Vidoomy
// asyncLoadScript('/* URL TO VIDOOMY SCRIPT */');
}
```
**Key Adjustments:**
1. Placeholder URLs and conditions are marked with comments for clarification.
2. Ensured that the structure is easier to read and identify each ad-related script.
3. Comments are added to explain what each part of the script is doing.
4. Removed any incomplete lines to avoid confusion.
Make sure to replace placeholders with actual URLs or implementation logic as required by your application context.