Add GDPR cookie-consent banner (Consent Mode v2)

- consent.js: self-contained, non-blocking bottom banner in EN/MK/SI,
  remembers the choice in localStorage, links to the per-language cookie
  policy. Accept -> gtag consent 'update' granted; Decline stays denied.
- Head GA snippet restores a returning visitor's prior "granted" choice
  before the first hit; loads /consent.js on every page.
- Re-openable via window.msosOpenConsent() for a "manage cookies" link.

Verified in-browser: shows for new visitors, Accept grants + remembers,
reload keeps consent without re-prompting, Slovene text + /si/ policy link.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
popovskik 2026-08-02 18:30:35 +02:00
parent 9a6d2c335c
commit f24fc704d6
203 changed files with 1100 additions and 0 deletions

90
consent.js Normal file
View File

@ -0,0 +1,90 @@
/* MSOS cookie-consent banner (GDPR / Google Consent Mode v2).
* Non-blocking bottom card. Remembers the choice in localStorage. On "Accept"
* it grants analytics consent so GA4 (loaded denied-by-default in <head>) can
* set cookies; on "Decline" it stays denied. Trilingual, self-contained,
* no dependencies. Re-open anytime via window.msosOpenConsent(). */
(function () {
var KEY = 'msos-consent';
// Language from <html lang> (Slovene folder /si/ uses lang="sl").
var docLang = (document.documentElement.getAttribute('lang') || 'en').toLowerCase();
var lang = docLang === 'sl' ? 'si' : (['en', 'mk', 'si'].indexOf(docLang) === -1 ? 'en' : docLang);
var T = {
en: { text: 'We use cookies to measure how the site is used and improve it. You can accept or decline analytics cookies.',
accept: 'Accept', decline: 'Decline', policy: 'Cookie policy', aria: 'Cookie consent' },
mk: { text: 'Користиме колачиња за да измериме како се користи страницата и да ја подобриме. Можете да ги прифатите или одбиете аналитичките колачиња.',
accept: 'Прифати', decline: 'Одбиј', policy: 'Политика за колачиња', aria: 'Согласност за колачиња' },
si: { text: 'Uporabljamo piškotke, da izmerimo, kako se stran uporablja, in jo izboljšamo. Analitične piškotke lahko sprejmete ali zavrnete.',
accept: 'Sprejmi', decline: 'Zavrni', policy: 'Politika piškotkov', aria: 'Soglasje za piškotke' }
};
var t = T[lang];
var policyHref = '/' + lang + '/cookie-policy/';
function gtagSafe() { window.dataLayer = window.dataLayer || []; window.gtag = window.gtag || function () { window.dataLayer.push(arguments); }; }
function grant() {
gtagSafe();
window.gtag('consent', 'update', {
ad_storage: 'granted', ad_user_data: 'granted',
ad_personalization: 'granted', analytics_storage: 'granted'
});
}
function injectStyles() {
if (document.getElementById('msos-cc-style')) return;
var css = '' +
'.msos-cc{position:fixed;left:16px;right:16px;bottom:16px;z-index:9999;max-width:560px;margin:0 auto;' +
'background:#fff;border:1px solid #EAECF0;border-radius:14px;box-shadow:0 12px 32px rgba(16,24,40,.14);' +
"padding:18px 20px;font-family:'Inter',system-ui,sans-serif;animation:msosccin .25s ease-out}" +
'@keyframes msosccin{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}' +
'.msos-cc p{margin:0 0 14px;font-size:14px;line-height:21px;color:#475467}' +
'.msos-cc a{color:#2D738C;font-weight:600;text-decoration:none}.msos-cc a:hover{text-decoration:underline}' +
'.msos-cc-row{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap}' +
'.msos-cc button{font-family:inherit;font-size:14px;font-weight:600;border-radius:8px;padding:9px 18px;' +
'cursor:pointer;border:1px solid transparent;transition:background .15s,color .15s,border-color .15s}' +
'.msos-cc-accept{background:#2D738C;color:#fff}.msos-cc-accept:hover{background:#255f74}' +
'.msos-cc-decline{background:#fff;border-color:#D0D5DD;color:#344054}.msos-cc-decline:hover{background:#F9FAFB}' +
'@media(max-width:520px){.msos-cc-row{justify-content:stretch}.msos-cc button{flex:1}}';
var s = document.createElement('style');
s.id = 'msos-cc-style';
s.textContent = css;
document.head.appendChild(s);
}
function close(el) { if (el && el.parentNode) el.parentNode.removeChild(el); }
function show() {
injectStyles();
var box = document.createElement('div');
box.className = 'msos-cc';
box.setAttribute('role', 'dialog');
box.setAttribute('aria-label', t.aria);
box.innerHTML =
'<p>' + t.text + ' <a href="' + policyHref + '">' + t.policy + '</a></p>' +
'<div class="msos-cc-row">' +
'<button type="button" class="msos-cc-decline">' + t.decline + '</button>' +
'<button type="button" class="msos-cc-accept">' + t.accept + '</button>' +
'</div>';
box.querySelector('.msos-cc-accept').addEventListener('click', function () {
try { localStorage.setItem(KEY, 'granted'); } catch (e) {}
grant();
close(box);
});
box.querySelector('.msos-cc-decline').addEventListener('click', function () {
try { localStorage.setItem(KEY, 'denied'); } catch (e) {}
close(box);
});
document.body.appendChild(box);
}
// Let a "manage cookies" link re-open the banner: <a onclick="msosOpenConsent()">
window.msosOpenConsent = function () { if (!document.querySelector('.msos-cc')) show(); };
var choice = null;
try { choice = localStorage.getItem(KEY); } catch (e) {}
if (choice !== 'granted' && choice !== 'denied') {
if (document.body) show();
else document.addEventListener('DOMContentLoaded', show);
}
})();

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="MSOS is more than an organization - it is the energy of the team behind it. Our members are the heart and driving force that inspires us, writing this story…"> <meta name="description" content="MSOS is more than an organization - it is the energy of the team behind it. Our members are the heart and driving force that inspires us, writing this story…">
<link rel="canonical" href="https://msosorg.com/en/about-us/"> <link rel="canonical" href="https://msosorg.com/en/about-us/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/about-us/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/about-us/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Join MSOS and find your people in Slovenia. Meet students, attend events, get support and help create projects across the Macedonian student community."> <meta name="description" content="Join MSOS and find your people in Slovenia. Meet students, attend events, get support and help create projects across the Macedonian student community.">
<link rel="canonical" href="https://msosorg.com/en/become-a-member/"> <link rel="canonical" href="https://msosorg.com/en/become-a-member/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/become-a-member/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/become-a-member/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="A practical guide for Macedonian students: the documents you need, how to choose a bank, using Flik, and keeping your details up to date after you open the account."> <meta name="description" content="A practical guide for Macedonian students: the documents you need, how to choose a bank, using Flik, and keeping your details up to date after you open the account.">
<link rel="canonical" href="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/"> <link rel="canonical" href="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Real experiences and practical advice from Macedonian students in Slovenia. New stories are on the way."> <meta name="description" content="Real experiences and practical advice from Macedonian students in Slovenia. New stories are on the way.">
<link rel="canonical" href="https://msosorg.com/en/blog/"> <link rel="canonical" href="https://msosorg.com/en/blog/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="How this website uses cookies and similar technologies, and how you can control them."> <meta name="description" content="How this website uses cookies and similar technologies, and how you can control them.">
<link rel="canonical" href="https://msosorg.com/en/cookie-policy/"> <link rel="canonical" href="https://msosorg.com/en/cookie-policy/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/cookie-policy/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/cookie-policy/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Short answers to the questions Macedonian students ask most about studying and living in Slovenia — applications, residence, work, housing and more."> <meta name="description" content="Short answers to the questions Macedonian students ask most about studying and living in Slovenia — applications, residence, work, housing and more.">
<link rel="canonical" href="https://msosorg.com/en/faq/"> <link rel="canonical" href="https://msosorg.com/en/faq/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/faq/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/faq/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The food matters, but so do the order of the plates, the people around them, and the fact that nobody leaves after the first course."> <meta name="description" content="The food matters, but so do the order of the plates, the people around them, and the fact that nobody leaves after the first course.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Stobi, Heraclea, Kokino, and Krusevo do not belong to the same century or tell the same story. That is exactly why they belong in the same journey."> <meta name="description" content="Stobi, Heraclea, Kokino, and Krusevo do not belong to the same century or tell the same story. That is exactly why they belong in the same journey.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Macedonia is not only a place on the map. It is a table that always has room for one more person, music that brings everyone closer, mountains on the horizon…"> <meta name="description" content="Macedonia is not only a place on the map. It is a table that always has room for one more person, music that brings everyone closer, mountains on the horizon…">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="In Macedonia, music is often not something performed in front of a room. It is what changes the room and brings people into the same rhythm."> <meta name="description" content="In Macedonia, music is often not something performed in front of a room. It is what changes the room and brings people into the same rhythm.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The lake attracts the first look. The old streets, wooden houses, churches, neighbourhoods, and evening conversations are what make people return."> <meta name="description" content="The lake attracts the first look. The old streets, wooden houses, churches, neighbourhoods, and evening conversations are what make people return.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="A city best understood by crossing the river, changing neighbourhoods, and noticing what each period left behind."> <meta name="description" content="A city best understood by crossing the river, changing neighbourhoods, and noticing what each period left behind.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="A country of mountains, open tables, long conversations, and stories that remain close wherever we go."> <meta name="description" content="A country of mountains, open tables, long conversations, and stories that remain close wherever we go.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Start with štruklji, jota, žlikrofi, frika, bograč, and potica. Together they reveal a cuisine shaped by regions rather than one fixed menu."> <meta name="description" content="Start with štruklji, jota, žlikrofi, frika, bograč, and potica. Together they reveal a cuisine shaped by regions rather than one fixed menu.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Slovenia may be small on the map, but there is a lot to discover between the Alps, the Adriatic coast, green rivers, old towns, and quiet places that quickly…"> <meta name="description" content="Slovenia may be small on the map, but there is a lot to discover between the Alps, the Adriatic coast, green rivers, old towns, and quiet places that quickly…">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The island is the image everyone knows. The full character of Bled appears when you walk around the lake and let the view keep changing."> <meta name="description" content="The island is the image everyone knows. The full character of Bled appears when you walk around the lake and let the view keep changing.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Not a complete guide to the city, but a collection of places and routines through which many of us began to feel at home."> <meta name="description" content="Not a complete guide to the city, but a collection of places and routines through which many of us began to feel at home.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Not rules that describe every person, but small patterns many of us noticed while learning how everyday life works."> <meta name="description" content="Not rules that describe every person, but small patterns many of us noticed while learning how everyday life works.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Heritage is not one castle or museum. It can be a bridge used every day, a river disappearing underground, a mining town shaped by mercury, or knowledge passed…"> <meta name="description" content="Heritage is not one castle or museum. It can be a bridge used every day, a river disappearing underground, a mining town shaped by mercury, or knowledge passed…">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="A small country of many landscapes, quiet discoveries, and places that slowly begin to feel like home."> <meta name="description" content="A small country of many landscapes, quiet discoveries, and places that slowly begin to feel like home.">
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/"> <link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The first official Macedonian student organisation in Slovenia — support, events, community and a voice for Macedonian students from application to graduation."> <meta name="description" content="The first official Macedonian student organisation in Slovenia — support, events, community and a voice for Macedonian students from application to graduation.">
<link rel="canonical" href="https://msosorg.com/en/"> <link rel="canonical" href="https://msosorg.com/en/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Everything new at MSOS in one place — events and projects, blog stories, announcements and official updates for Macedonian students in Slovenia."> <meta name="description" content="Everything new at MSOS in one place — events and projects, blog stories, announcements and official updates for Macedonian students in Slovenia.">
<link rel="canonical" href="https://msosorg.com/en/news/"> <link rel="canonical" href="https://msosorg.com/en/news/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="If you are applying for or renewing a student residence permit in Slovenia, you must prove you have enough money to support yourself. That requirement is tied…"> <meta name="description" content="If you are applying for or renewing a student residence permit in Slovenia, you must prove you have enough money to support yourself. That requirement is tied…">
<link rel="canonical" href="https://msosorg.com/en/news/proof-of-means-updated-2026/"> <link rel="canonical" href="https://msosorg.com/en/news/proof-of-means-updated-2026/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/proof-of-means-updated-2026/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/proof-of-means-updated-2026/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="How the Macedonian Student Organisation in Slovenia collects, uses, and protects your personal data."> <meta name="description" content="How the Macedonian Student Organisation in Slovenia collects, uses, and protects your personal data.">
<link rel="canonical" href="https://msosorg.com/en/privacy-policy/"> <link rel="canonical" href="https://msosorg.com/en/privacy-policy/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/privacy-policy/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/privacy-policy/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Over 200 students gathered in Maribor, raising €1.000 through sport to support families hit by the Kočani tragedy."> <meta name="description" content="Over 200 students gathered in Maribor, raising €1.000 through sport to support families hit by the Kočani tragedy.">
<link rel="canonical" href="https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/"> <link rel="canonical" href="https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="On February 8, 2025, Macedonian students in Ljubljana gathered for a peaceful public event to honor the memory of Frosina Kulakova, who tragically lost her…"> <meta name="description" content="On February 8, 2025, Macedonian students in Ljubljana gathered for a peaceful public event to honor the memory of Frosina Kulakova, who tragically lost her…">
<link rel="canonical" href="https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/"> <link rel="canonical" href="https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="On March 21, 2025, more than 600 people gathered at Kongresni trg in Ljubljana for a peaceful public gathering to honor the victims of the tragic fire in Kochani."> <meta name="description" content="On March 21, 2025, more than 600 people gathered at Kongresni trg in Ljubljana for a peaceful public gathering to honor the victims of the tragic fire in Kochani.">
<link rel="canonical" href="https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/"> <link rel="canonical" href="https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The events, projects and moments that bring the Macedonian student community in Slovenia together."> <meta name="description" content="The events, projects and moments that bring the Macedonian student community in Slovenia together.">
<link rel="canonical" href="https://msosorg.com/en/projects/"> <link rel="canonical" href="https://msosorg.com/en/projects/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="From an idea to a party with 500 students, that&#x27;s how our story began!"> <meta name="description" content="From an idea to a party with 500 students, that&#x27;s how our story began!">
<link rel="canonical" href="https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/"> <link rel="canonical" href="https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Through honest first-hand stories, future students received support for their first step towards their new home."> <meta name="description" content="Through honest first-hand stories, future students received support for their first step towards their new home.">
<link rel="canonical" href="https://msosorg.com/en/projects/meet-student-slovenia-2023/"> <link rel="canonical" href="https://msosorg.com/en/projects/meet-student-slovenia-2023/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/meet-student-slovenia-2023/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/meet-student-slovenia-2023/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="When student stories turn into the first step towards a new home."> <meta name="description" content="When student stories turn into the first step towards a new home.">
<link rel="canonical" href="https://msosorg.com/en/projects/meet-student-slovenia-2024/"> <link rel="canonical" href="https://msosorg.com/en/projects/meet-student-slovenia-2024/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/meet-student-slovenia-2024/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/meet-student-slovenia-2024/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="When exams somehow become easier with Saturday morning coffee, burek, and good company in at CTK!"> <meta name="description" content="When exams somehow become easier with Saturday morning coffee, burek, and good company in at CTK!">
<link rel="canonical" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/"> <link rel="canonical" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Paint, wine, and music brought students together in Gorizia to celebrate Womens Day and mark the first MSOS Nova Gorica event."> <meta name="description" content="Paint, wine, and music brought students together in Gorizia to celebrate Womens Day and mark the first MSOS Nova Gorica event.">
<link rel="canonical" href="https://msosorg.com/en/projects/paint-and-wine-at-sunset/"> <link rel="canonical" href="https://msosorg.com/en/projects/paint-and-wine-at-sunset/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/paint-and-wine-at-sunset/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/paint-and-wine-at-sunset/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="From Ljubljana to Maribor, Macedonian students filled cafés with chants, flags, and laughter while watching the national handball team."> <meta name="description" content="From Ljubljana to Maribor, Macedonian students filled cafés with chants, flags, and laughter while watching the national handball team.">
<link rel="canonical" href="https://msosorg.com/en/projects/watching-handball-together-in-slovenia/"> <link rel="canonical" href="https://msosorg.com/en/projects/watching-handball-together-in-slovenia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/watching-handball-together-in-slovenia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/watching-handball-together-in-slovenia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The academic year, ECTS, grades, exam registration, the referat, learning Slovenian, tutoring, and extracurricular ECTS."> <meta name="description" content="The academic year, ECTS, grades, exam registration, the referat, learning Slovenian, tutoring, and extracurricular ECTS.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/academic-life/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/academic-life/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/academic-life/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/academic-life/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="EMŠO, a tax number, SI-PASS, a bank account, and a phone plan unlock almost every other service."> <meta name="description" content="EMŠO, a tax number, SI-PASS, a bank account, and a phone plan unlock almost every other service.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/administrative-basics/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/administrative-basics/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/administrative-basics/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/administrative-basics/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Admission is not always enrolment. Read the decision, complete enrolment, get your certificate of enrolment, and check any charges."> <meta name="description" content="Admission is not always enrolment. Read the decision, complete enrolment, get your certificate of enrolment, and check any charges.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/admission-and-enrolment/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/admission-and-enrolment/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/admission-and-enrolment/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/admission-and-enrolment/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The 2026/2027 bachelor and master periods for Macedonian citizens, by university. Always open the exact current call."> <meta name="description" content="The 2026/2027 bachelor and master periods for Macedonian citizens, by university. Always open the exact current call.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/application-deadlines/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/application-deadlines/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/application-deadlines/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/application-deadlines/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="What to do in the first 72 hours, the first week, and the first month after you reach Slovenia."> <meta name="description" content="What to do in the first 72 hours, the first week, and the first month after you reach Slovenia.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/arrival-checklist/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/arrival-checklist/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/arrival-checklist/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/arrival-checklist/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The eVŠ process, the document package, the 2026/2027 rounds by university, and why you should apply early."> <meta name="description" content="The eVŠ process, the document package, the 2026/2027 rounds by university, and why you should apply early.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/bachelor-application/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/bachelor-application/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/bachelor-application/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/bachelor-application/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Compare the programme first, then the city. Use information days well, and confirm language and aptitude-test requirements early."> <meta name="description" content="Compare the programme first, then the city. Use information days well, and confirm language and aptitude-test requirements early.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/choose-a-programme/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/choose-a-programme/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/choose-a-programme/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/choose-a-programme/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Nine stages from researching a programme to your first year, with residence, health, and housing handled in parallel."> <meta name="description" content="Nine stages from researching a programme to your first year, with residence, health, and housing handled in parallel.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/complete-student-journey/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/complete-student-journey/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/complete-student-journey/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/complete-student-journey/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="One master folder, clear filenames, the difference between original, copy, translation, and legalisation, and basic data protection."> <meta name="description" content="One master folder, clear filenames, the difference between original, copy, translation, and legalisation, and basic data protection.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/document-preparation/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/document-preparation/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/document-preparation/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/document-preparation/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Prepare, log in, enter your previous education, order preferences, upload, and press Submit. A draft is not an application."> <meta name="description" content="Prepare, log in, enter your previous education, order preferences, upload, and press Submit. A draft is not an application.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/evs-application-guide/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/evs-application-guide/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/evs-application-guide/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/evs-application-guide/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Emergency numbers, what to bring, and student health contacts city by city."> <meta name="description" content="Emergency numbers, what to bring, and student health contacts city by city.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/healthcare-in-slovenia/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/healthcare-in-slovenia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/healthcare-in-slovenia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/healthcare-in-slovenia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Your complete route from a Macedonian secondary school or first degree to enrolled student life in Slovenia."> <meta name="description" content="Your complete route from a Macedonian secondary school or first degree to enrolled student life in Slovenia.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Master admission is faculty-driven. Check field compatibility early, and remember there is no single national deadline."> <meta name="description" content="Master admission is faculty-driven. Check field compatibility early, and remember there is no single national deadline.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/master-application/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/master-application/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/master-application/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/master-application/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="How to prove sufficient means, accommodation, and a registered address for your residence permit."> <meta name="description" content="How to prove sufficient means, accommodation, and a registered address for your residence permit.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/means-accommodation-address/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/means-accommodation-address/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/means-accommodation-address/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/means-accommodation-address/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Your personal study route to Slovenia — follow the Student Welcome Guide steps for Macedonian students, from choosing a programme to enrolment and residence."> <meta name="description" content="Your personal study route to Slovenia — follow the Student Welcome Guide steps for Macedonian students, from choosing a programme to enrolment and residence.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/my-route/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/my-route/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/my-route/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/my-route/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The primary official links behind this guide, grouped by topic, plus the checklists to build and how to manage sources."> <meta name="description" content="The primary official links behind this guide, grouped by topic, plus the checklists to build and how to manage sources.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/official-sources-and-checklists/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/official-sources-and-checklists/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/official-sources-and-checklists/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/official-sources-and-checklists/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="A month-by-month plan, the documents to keep in your hand luggage, how to travel, and a detailed packing list."> <meta name="description" content="A month-by-month plan, the documents to keep in your hand luggage, how to travel, and a detailed packing list.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/prepare-to-move/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/prepare-to-move/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/prepare-to-move/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/prepare-to-move/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Recognition decides whether your prior education gives access to the Slovenian programme. For applicants educated abroad, it is part of admission."> <meta name="description" content="Recognition decides whether your prior education gives access to the Slovenian programme. For applicants educated abroad, it is part of admission.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/recognition-of-education/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/recognition-of-education/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/recognition-of-education/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/recognition-of-education/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Annual renewal, repeat and transfer rights, losing status, the post-study route, and leaving Slovenia are all connected."> <meta name="description" content="Annual renewal, repeat and transfer rights, losing status, the post-study route, and leaving Slovenia are all connected.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/renew-change-graduate/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/renew-change-graduate/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/renew-change-graduate/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/renew-change-graduate/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="How the bilateral RM/SI 3 route gives you healthcare access in Slovenia, and what it does not cover."> <meta name="description" content="How the bilateral RM/SI 3 route gives you healthcare access in Slovenia, and what it does not cover.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/rm-si-3-health-insurance/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/rm-si-3-health-insurance/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/rm-si-3-health-insurance/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/rm-si-3-health-insurance/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Subsidised public dorms are usually closed to you on temporary residence. Plan for economic-rate or private housing, and avoid scams."> <meta name="description" content="Subsidised public dorms are usually closed to you on temporary residence. Plan for economic-rate or private housing, and avoid scams.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-accommodation/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-accommodation/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-accommodation/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-accommodation/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="There is no single national figure. Build a city-based budget, plan for a much larger first month, and use student discounts."> <meta name="description" content="There is no single national figure. Build a city-based budget, plan for a much larger first month, and use student discounts.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-budget/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-budget/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-budget/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-budget/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Subsidised meals are open to eligible foreign degree students and exist across Slovenian study centres, not only in Ljubljana."> <meta name="description" content="Subsidised meals are open to eligible foreign degree students and exist across Slovenian study centres, not only in Ljubljana.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-meals/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-meals/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-meals/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-meals/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Student organisations, student councils, local clubs, professional societies, university extracurricular programmes, ESN, and communities from home."> <meta name="description" content="Student organisations, student councils, local clubs, professional societies, university extracurricular programmes, ESN, and communities from home.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-organisations-and-extracurriculars/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-organisations-and-extracurriculars/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-organisations-and-extracurriculars/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-organisations-and-extracurriculars/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The documents, the six steps, the one-year validity, and how to renew the temporary residence permit for study."> <meta name="description" content="The documents, the six steps, the one-year validity, and how to renew the temporary residence permit for study.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-residence-permit/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-residence-permit/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-residence-permit/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-residence-permit/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="National IJPP tickets, city transport, and bicycle sharing. Eligibility does not depend on the distance to your faculty."> <meta name="description" content="National IJPP tickets, city transport, and bicycle sharing. Eligibility does not depend on the distance to your faculty.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-transport/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-transport/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-transport/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-transport/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Student work is allowed on the student permit through a napotnica. Regular employment is a different route that needs a work permit."> <meta name="description" content="Student work is allowed on the student permit through a napotnica. Regular employment is a different route that needs a work permit.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-work/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-work/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-work/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-work/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Ljubljana is not the only option. Compare each Slovenian study centre and build your life around the real teaching location."> <meta name="description" content="Ljubljana is not the only option. Compare each Slovenian study centre and build your life around the real teaching location.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/study-cities/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/study-cities/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/study-cities/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/study-cities/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Full-time public study is generally tuition-free for Macedonian citizens, but this is not a promise that every programme is free."> <meta name="description" content="Full-time public study is generally tuition-free for Macedonian citizens, but this is not a promise that every programme is free.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/tuition-and-scholarships/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/tuition-and-scholarships/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/tuition-and-scholarships/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/tuition-and-scholarships/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Short visa-free entry, visa D, and the study residence permit are three different things. Know which one keeps you here legally."> <meta name="description" content="Short visa-free entry, visa D, and the study residence permit are three different things. Know which one keeps you here legally.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/visa-and-residence-explained/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/visa-and-residence-explained/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/visa-and-residence-explained/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/visa-and-residence-explained/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Culture shock is normal. Build support in several places, use university counselling, and know your emergency numbers."> <meta name="description" content="Culture shock is normal. Build support in several places, use university counselling, and know your emergency numbers.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/wellbeing-and-community/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/wellbeing-and-community/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/wellbeing-and-community/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/wellbeing-and-community/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="The embassy in Skopje or a Slovenian administrative unit: where to submit, and the lawful-stay risk to manage."> <meta name="description" content="The embassy in Skopje or a Slovenian administrative unit: where to submit, and the lawful-stay risk to manage.">
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/where-to-apply-for-residence/"> <link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/where-to-apply-for-residence/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/where-to-apply-for-residence/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/where-to-apply-for-residence/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Learn more about the company and the team behind it."> <meta name="description" content="Learn more about the company and the team behind it.">
<link rel="canonical" href="https://msosorg.com/en/timeline-and-milestones/"> <link rel="canonical" href="https://msosorg.com/en/timeline-and-milestones/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/timeline-and-milestones/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/timeline-and-milestones/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="МСОС е повеќе од организација - тоа е енергијата на тимот зад неа. Нашите членови се срцето и движечката сила што нè инспирира, пишувајќи ја оваа приказна и…"> <meta name="description" content="МСОС е повеќе од организација - тоа е енергијата на тимот зад неа. Нашите членови се срцето и движечката сила што нè инспирира, пишувајќи ја оваа приказна и…">
<link rel="canonical" href="https://msosorg.com/mk/about-us/"> <link rel="canonical" href="https://msosorg.com/mk/about-us/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/about-us/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/about-us/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Придружете се на МСОС и најдете ги вашите луѓе во Словенија. Запознајте студенти, посетувајте настани, добијте поддршка и создавајте проекти во македонската студентска заедница."> <meta name="description" content="Придружете се на МСОС и најдете ги вашите луѓе во Словенија. Запознајте студенти, посетувајте настани, добијте поддршка и создавајте проекти во македонската студентска заедница.">
<link rel="canonical" href="https://msosorg.com/mk/become-a-member/"> <link rel="canonical" href="https://msosorg.com/mk/become-a-member/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/become-a-member/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/become-a-member/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Практичен водич за македонските студенти: документите што ви требаат, како да изберете банка, користење на Flik и ажурирање на вашите податоци откако ќе ја отворите сметката."> <meta name="description" content="Практичен водич за македонските студенти: документите што ви требаат, како да изберете банка, користење на Flik и ажурирање на вашите податоци откако ќе ја отворите сметката.">
<link rel="canonical" href="https://msosorg.com/mk/blog/how-to-open-slovenian-bank-account/"> <link rel="canonical" href="https://msosorg.com/mk/blog/how-to-open-slovenian-bank-account/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Вистински искуства и практични совети од македонски студенти во Словенија. Нови приказни се на пат."> <meta name="description" content="Вистински искуства и практични совети од македонски студенти во Словенија. Нови приказни се на пат.">
<link rel="canonical" href="https://msosorg.com/mk/blog/"> <link rel="canonical" href="https://msosorg.com/mk/blog/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Како оваа веб-страница користи колачиња и слични технологии и како можете да ги контролирате."> <meta name="description" content="Како оваа веб-страница користи колачиња и слични технологии и како можете да ги контролирате.">
<link rel="canonical" href="https://msosorg.com/mk/cookie-policy/"> <link rel="canonical" href="https://msosorg.com/mk/cookie-policy/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/cookie-policy/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/cookie-policy/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија — пријави, престој, работа, сместување и повеќе."> <meta name="description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија — пријави, престој, работа, сместување и повеќе.">
<link rel="canonical" href="https://msosorg.com/mk/faq/"> <link rel="canonical" href="https://msosorg.com/mk/faq/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/faq/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/faq/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Храната е важна, но важни се и редоследот на чиниите, луѓето околу нив и фактот дека никој не си оди по првото јадење."> <meta name="description" content="Храната е важна, но важни се и редоследот на чиниите, луѓето околу нив и фактот дека никој не си оди по првото јадење.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/a-table-full-of-macedonia/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/a-table-full-of-macedonia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Стоби, Хераклеа, Кокино и Крушево не му припаѓаат на истиот век и не ја раскажуваат истата приказна. Токму затоа припаѓаат на исто патување."> <meta name="description" content="Стоби, Хераклеа, Кокино и Крушево не му припаѓаат на истиот век и не ја раскажуваат истата приказна. Токму затоа припаѓаат на исто патување.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/history-you-can-still-walk-through/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/history-you-can-still-walk-through/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Македонија не е само место на картата. Таа е трпеза на која секогаш има место за уште еден човек, музика што нè зближува, планини на хоризонтот и разговори што…"> <meta name="description" content="Македонија не е само место на картата. Таа е трпеза на која секогаш има место за уште еден човек, музика што нè зближува, планини на хоризонтот и разговори што…">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Во Македонија, музиката често не е нешто што се изведува пред просторијата. Таа е она што ја менува просторијата и ги внесува луѓето во ист ритам."> <meta name="description" content="Во Македонија, музиката често не е нешто што се изведува пред просторијата. Таа е она што ја менува просторијата и ги внесува луѓето во ист ритам.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Езерото го привлекува првиот поглед. Старите улици, куќите, црквите, маалата и вечерните разговори се причината луѓето повторно да се враќаат."> <meta name="description" content="Езерото го привлекува првиот поглед. Старите улици, куќите, црквите, маалата и вечерните разговори се причината луѓето повторно да се враќаат.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Град што најдобро се разбира кога ќе ја преминеме реката, ќе смениме маало и ќе забележиме што оставил зад себе секој период."> <meta name="description" content="Град што најдобро се разбира кога ќе ја преминеме реката, ќе смениме маало и ќе забележиме што оставил зад себе секој период.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Земја на планини, отворени трпези, долги разговори и приказни што остануваат блиску каде и да одиме."> <meta name="description" content="Земја на планини, отворени трпези, долги разговори и приказни што остануваат блиску каде и да одиме.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/welcome-to-macedonia/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-macedonia/welcome-to-macedonia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Започнете со штрукљи, јота, жликрофи, фрика, бограч и потица. Заедно тие покажуваат кујна обликувана од региони, а не од едно фиксно мени."> <meta name="description" content="Започнете со штрукљи, јота, жликрофи, фрика, бограч и потица. Заедно тие покажуваат кујна обликувана од региони, а не од едно фиксно мени.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Словенија можеби е мала на картата, но меѓу Алпите, Јадранското Море, зелените реки, старите градови и мирните места има многу што да се открие. Преку овие…"> <meta name="description" content="Словенија можеби е мала на картата, но меѓу Алпите, Јадранското Море, зелените реки, старите градови и мирните места има многу што да се открие. Преку овие…">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Островот е сликата што сите ја знаат. Вистинскиот карактер на Блед се појавува кога ќе го обиколиме езерото и ќе дозволиме погледот постојано да се менува."> <meta name="description" content="Островот е сликата што сите ја знаат. Вистинскиот карактер на Блед се појавува кога ќе го обиколиме езерото и ќе дозволиме погледот постојано да се менува.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Не целосен водич низ градот, туку збирка од места и навики преку кои многумина од нас почнаа да се чувствуваат како дома."> <meta name="description" content="Не целосен водич низ градот, туку збирка од места и навики преку кои многумина од нас почнаа да се чувствуваат како дома.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/ljubljana-through-our-eyes/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/ljubljana-through-our-eyes/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Не правила што го опишуваат секој човек, туку мали обрасци што многумина од нас ги забележаа додека го учеа секојдневниот ритам."> <meta name="description" content="Не правила што го опишуваат секој човек, туку мали обрасци што многумина од нас ги забележаа додека го учеа секојдневниот ритам.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Наследството не е само замок или музеј. Може да биде мост што се користи секој ден, река што исчезнува под земја, рударски град обликуван од жива или знаење…"> <meta name="description" content="Наследството не е само замок или музеј. Може да биде мост што се користи секој ден, река што исчезнува под земја, рударски град обликуван од жива или знаење…">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Мала земја со многу различни предели, тивки откритија и места што полека почнуваат да се чувствуваат како дом."> <meta name="description" content="Мала земја со многу различни предели, тивки откритија и места што полека почнуваат да се чувствуваат како дом.">
<link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/welcome-to-slovenia/"> <link rel="canonical" href="https://msosorg.com/mk/get-to-know-slovenia/welcome-to-slovenia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Првата официјална македонска студентска организација во Словенија — поддршка, настани, заедница и глас за македонските студенти од пријава до дипломирање."> <meta name="description" content="Првата официјална македонска студентска организација во Словенија — поддршка, настани, заедница и глас за македонските студенти од пријава до дипломирање.">
<link rel="canonical" href="https://msosorg.com/mk/"> <link rel="canonical" href="https://msosorg.com/mk/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Сè ново кај МСОС на едно место — настани и проекти, блог приказни, соопштенија и официјални новости за македонските студенти во Словенија."> <meta name="description" content="Сè ново кај МСОС на едно место — настани и проекти, блог приказни, соопштенија и официјални новости за македонските студенти во Словенија.">
<link rel="canonical" href="https://msosorg.com/mk/news/"> <link rel="canonical" href="https://msosorg.com/mk/news/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Ако аплицирате за студентска дозвола за престој во Словенија или ја продолжувате, мора да докажете дека имате доволно средства за издршка. Тој услов е врзан за…"> <meta name="description" content="Ако аплицирате за студентска дозвола за престој во Словенија или ја продолжувате, мора да докажете дека имате доволно средства за издршка. Тој услов е врзан за…">
<link rel="canonical" href="https://msosorg.com/mk/news/proof-of-means-updated-2026/"> <link rel="canonical" href="https://msosorg.com/mk/news/proof-of-means-updated-2026/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/proof-of-means-updated-2026/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/proof-of-means-updated-2026/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Како Македонската студентска организација во Словенија ги собира, користи и штити вашите лични податоци."> <meta name="description" content="Како Македонската студентска организација во Словенија ги собира, користи и штити вашите лични податоци.">
<link rel="canonical" href="https://msosorg.com/mk/privacy-policy/"> <link rel="canonical" href="https://msosorg.com/mk/privacy-policy/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/privacy-policy/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/privacy-policy/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Повеќе од 200 студенти се собраа во Марибор и преку спорт собраа 1.000 € за поддршка на семејствата погодени од трагедијата во Кочани."> <meta name="description" content="Повеќе од 200 студенти се собраа во Марибор и преку спорт собраа 1.000 € за поддршка на семејствата погодени од трагедијата во Кочани.">
<link rel="canonical" href="https://msosorg.com/mk/projects/humanitarian-tournament-in-maribor/"> <link rel="canonical" href="https://msosorg.com/mk/projects/humanitarian-tournament-in-maribor/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="На 8 февруари 2025 година, македонските студенти во Љубљана се собраа на мирен јавен настан за да ја почестат меморијата на Фросина Кулакова, која трагично го…"> <meta name="description" content="На 8 февруари 2025 година, македонските студенти во Љубљана се собраа на мирен јавен настан за да ја почестат меморијата на Фросина Кулакова, која трагично го…">
<link rel="canonical" href="https://msosorg.com/mk/projects/in-memory-of-frosina-kulakova/"> <link rel="canonical" href="https://msosorg.com/mk/projects/in-memory-of-frosina-kulakova/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="На 21 март 2025 година, повеќе од 600 луѓе се собраа на Конгресниот плоштад во Љубљана на мирен јавен собир за да ги почестат жртвите од трагичниот пожар во Кочани."> <meta name="description" content="На 21 март 2025 година, повеќе од 600 луѓе се собраа на Конгресниот плоштад во Љубљана на мирен јавен собир за да ги почестат жртвите од трагичниот пожар во Кочани.">
<link rel="canonical" href="https://msosorg.com/mk/projects/in-memory-of-the-kochani-victims/"> <link rel="canonical" href="https://msosorg.com/mk/projects/in-memory-of-the-kochani-victims/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Настаните, проектите и моментите што ја зближуваат македонската студентска заедница во Словенија."> <meta name="description" content="Настаните, проектите и моментите што ја зближуваат македонската студентска заедница во Словенија.">
<link rel="canonical" href="https://msosorg.com/mk/projects/"> <link rel="canonical" href="https://msosorg.com/mk/projects/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Од идеја до журка со 500 студенти, вака започна нашата приказна!"> <meta name="description" content="Од идеја до журка со 500 студенти, вака започна нашата приказна!">
<link rel="canonical" href="https://msosorg.com/mk/projects/macedonian-student-night-in-ljubljana/"> <link rel="canonical" href="https://msosorg.com/mk/projects/macedonian-student-night-in-ljubljana/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Преку искрени приказни од прва рака, идните студентите добија поддршка за првиот чекор кон нивниот нов дом."> <meta name="description" content="Преку искрени приказни од прва рака, идните студентите добија поддршка за првиот чекор кон нивниот нов дом.">
<link rel="canonical" href="https://msosorg.com/mk/projects/meet-student-slovenia-2023/"> <link rel="canonical" href="https://msosorg.com/mk/projects/meet-student-slovenia-2023/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/meet-student-slovenia-2023/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/meet-student-slovenia-2023/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Кога студентските приказни се претвораат во првиот чекор кон новиот дом."> <meta name="description" content="Кога студентските приказни се претвораат во првиот чекор кон новиот дом.">
<link rel="canonical" href="https://msosorg.com/mk/projects/meet-student-slovenia-2024/"> <link rel="canonical" href="https://msosorg.com/mk/projects/meet-student-slovenia-2024/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/meet-student-slovenia-2024/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/meet-student-slovenia-2024/">

View File

@ -14,9 +14,14 @@
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500 analytics_storage: 'denied', wait_for_update: 500
}); });
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script>
<meta name="description" content="Кога испитите некако ти стануваат полесни со саботно утринско кафе, бурек и добро друштво пред ЦТК!"> <meta name="description" content="Кога испитите некако ти стануваат полесни со саботно утринско кафе, бурек и добро друштво пред ЦТК!">
<link rel="canonical" href="https://msosorg.com/mk/projects/morning-coffee-in-front-of-ctk/"> <link rel="canonical" href="https://msosorg.com/mk/projects/morning-coffee-in-front-of-ctk/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/">

Some files were not shown because too many files have changed in this diff Show More