diff --git a/Server/app/layouts/main.jl.html b/Server/app/layouts/main.jl.html
index ea10148..6d54157 100644
--- a/Server/app/layouts/main.jl.html
+++ b/Server/app/layouts/main.jl.html
@@ -12,6 +12,8 @@
+
+
diff --git a/Server/app/resources/basic/BasicController.jl b/Server/app/resources/basic/BasicController.jl
index e950849..c926db4 100644
--- a/Server/app/resources/basic/BasicController.jl
+++ b/Server/app/resources/basic/BasicController.jl
@@ -13,7 +13,7 @@ dict_layouts = Dict(
:groups => generate_layout_html("main",controller,"groups",libraries=["Leaflet"]),
:cooperatives => generate_layout_html("main",controller,"cooperatives",libraries=["Leaflet"]),
:communities => generate_layout_html("main",controller,"communities",libraries=["Leaflet"]),
- :affiliates => generate_layout_html("main",controller,"affiliates",libraries=["Leaflet"]),
+ :partners => generate_layout_html("main",controller,"partners",libraries=["Leaflet"]),
)
#---General-----------------------------------------------------
@@ -61,9 +61,9 @@ function communities()
)
end
-function affiliates()
- html(:basic,:affiliates, layout = dict_layouts[:affiliates], context = @__MODULE__,
- title = "LibSoc - Affiliates",
+function partners()
+ html(:basic,:partners, layout = dict_layouts[:partners], context = @__MODULE__,
+ title = "LibSoc - Partners",
description = ""
)
end
diff --git a/Server/app/resources/basic/views/affiliates.jl.html b/Server/app/resources/basic/views/affiliates.jl.html
deleted file mode 100644
index 2de7130..0000000
--- a/Server/app/resources/basic/views/affiliates.jl.html
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/Server/app/resources/basic/views/partners.jl.html b/Server/app/resources/basic/views/partners.jl.html
new file mode 100644
index 0000000..5b80dbc
--- /dev/null
+++ b/Server/app/resources/basic/views/partners.jl.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/Server/app/svelte/public/css/common.css b/Server/app/svelte/public/css/common.css
index 6828e60..701c69b 100644
--- a/Server/app/svelte/public/css/common.css
+++ b/Server/app/svelte/public/css/common.css
@@ -16,8 +16,8 @@
--grey-blue:hsl(223, 13%, 22%);
--cream:hsl(34, 43%, 90%);
--dark-cream:hsl(33, 26%, 84%);
- --sans-serif: "Space Grotesk";
- --serif: "DejaVu";
+ --sans-serif: "OpenSans";
+ --serif: "Lora";
}
svg {
@@ -59,27 +59,25 @@ body {
/*---Fonts---------------------------------------------------------*/
@font-face {
- font-family: 'Space Grotesk';
+ font-family: 'OpenSans';
font-weight: 400;
font-style: normal;
font-display: swap;
src: /*local('Space Grotesk Light'),
local('SpaceGroteskLight-Regular'),
local('Space Grotesk Light Regular'), */
- url('/fonts/SpaceGrotesk/SpaceGrotesk.woff2') format('woff2'),
- url('/fonts/SpaceGrotesk/SpaceGrotesk.woff') format('woff');
+ url('/fonts/OpenSans/opensans.woff2') format('woff2'),
+ url('/fonts/OpenSans/opensans.woff') format('woff');
}
@font-face {
- font-family: 'DejaVu';
+ font-family: 'Lora';
font-weight: 400;
font-style: normal;
font-display: swap;
- src: /*local('DejaVuLGCSerif'),
- local('DejaVu LGC Serif'), */
- /*url('/fonts/DejaVu/DejaVuLGCSerif.woff2') format('woff2'), */
- url('/fonts/DejaVu/solitasserifnormregular.woff2') format('woff2'),
- url('/fonts/DejaVu/DejaVuLGCSerif.woff') format('woff');
+ src:
+ url('/fonts/Lora/Lora-Regular.ttf') format('ttf'),
+ url('/fonts/lora/Lora-Regular.woff') format('woff');
}
.serif {
@@ -124,7 +122,7 @@ h4 {
span {
font-family: var(--serif, serif);
- font-size: 1.25rem;
+ font-size: 1.15rem;
height: auto;
width: auto;
color: #222222;
@@ -132,20 +130,20 @@ span {
p {
font-family: var(--serif, serif);
- font-size: 1.25rem;
- line-height: 150%;
+ font-size: 1.15rem;
+ line-height: 160%;
color: #222222;
}
a {
font-family: var(--serif, serif);
- font-size: 1.25rem;
+ font-size: 1.15rem;
color: #222222;
}
li {
font-family: var(--serif, serif);
- font-size: 1.25rem;
+ font-size: 1.15rem;
color: #222222;
text-align: justify;
}
diff --git a/Server/app/svelte/public/css/navbar.css b/Server/app/svelte/public/css/navbar.css
deleted file mode 100644
index edb7355..0000000
--- a/Server/app/svelte/public/css/navbar.css
+++ /dev/null
@@ -1,219 +0,0 @@
-
-/* Header */
-#navbar{
- position: relative;
- top: 0;
- width: min(100%,116rem);
- z-index: 1000;
- height: 5.26rem;
-}
-
-#navbar * {
- font-family: var(--sans-serif, sans-serif);
-}
-
-/* Logo */
-#logo-container {
- display: flex;
- position: absolute;
- margin-left: 1rem;
- height: 100%;
- max-height: 5.26rem;
- color: black;
- z-index: 1;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: center;
-}
-
-#navbar-logo {
- height: 3.5rem;
- width: 3.5rem;
- object-fit: contain;
- border-radius: 10rem;
-}
-
-#navbar-logo-text {
- position: relative;
- width: auto;
- height: 100%;
- line-height: 400%;
- white-space: nowrap;
- text-align: center;
- font-size: 1.4rem;
- color: #292222;
- font-family: var(--sans-serif, sans-serif);
- font-weight: 400;
- padding-left: 1.2rem;
-}
-
-/* Nav menu */
-#nav {
- position: fixed;
- width: 100%;
- height: 100%;
- background-color: white;
- overflow: hidden;
- z-index: 0;
-}
-#menu a {
- display: block;
- padding: 1.9rem;
- padding-top: 1rem;
- padding-bottom: 1rem;
- color: black;
- font-size: 1.4rem;
-}
-#menu a:hover {
- background-color: rgb(220, 220, 220);
-}
-
-#menu a:active{
- background-color: #f7aec0;
-}
-
-#menu li {
- list-style-type: none;
-}
-
-#nav{
- max-height: 0;
- /*transition: max-height .5s ease-out;*/
-}
-
-/* Menu Icon */
-#hamb{
- position: absolute;
- cursor: pointer;
- right: 0rem;
- padding: 2.8rem 2rem;
- z-index: 9999;
-}/* Style label tag */
-
-#hamb-line {
- background: black;
- display: block;
- height: 2px;
- position: relative;
- width: 24px;
-
-} /* Style span tag */
-
-#hamb-line::before,
-#hamb-line::after{
- background: black;
- content: '';
- display: block;
- height: 100%;
- position: absolute;
- transition: all .2s ease-out;
- width: 100%;
-}
-#hamb-line::before{
- top: 5px;
-}
-#hamb-line::after{
- top: -5px;
-}
-
-#side-menu {
- display: none;
-} /* Hide checkbox */
-
-/* Toggle menu icon */
-#side-menu:checked ~ nav {
- display: block;
- max-height: 100%;
- padding-top: 5.625rem;
-}
-
-#side-menu:checked ~ #logo-container {
- position: fixed;
-}
-
-#side-menu:checked ~ #hamb {
- position: fixed;
-}
-
-#side-menu:checked ~ #logo-container {
- position: fixed;
-}
-
-#side-menu:checked ~ #hamb #hamb-line {
- background: transparent;
-}
-
-#side-menu:checked ~ #hamb #hamb-line::before {
- transform: rotate(-45deg);
- top:0;
-}
-
-#side-menu:checked ~ #hamb #hamb-line::after {
- transform: rotate(45deg);
- top:0;
-}
-
-#cart-icon {
- height: 1.8rem;
- pointer-events: none;
-}
-
-#menu a:hover div {
- filter: saturate(50%) brightness(140%);
-}
-
-#menu a:hover svg {
- stroke: rgb(127, 127, 127);;
-}
-
-#cart-counter {
- position: relative;
- top: -2.8rem;
- left: 1.6rem;
- width: 1.3rem;
- height: 1.3rem;
- border-radius: 3.4rem;
- font-family: var(--sans-serif, sans-serif);
- font-size: 1rem;
- text-align: center;
- color: white;
- background: var(--pink);
-}
-
-
-/* Responsiveness */
-@media only screen and (min-width: 1500px) {
-
- #navbar {
- left: 50%;
- -ms-transform: translateX(-50%);
- transform: translateX(-50%);
- }
-
- #nav {
- max-height: none;
- top: 0;
- position: relative;
- float: right;
- width: fit-content;
- background-color: transparent;
- }
- #menu li {
- float: left;
- }
-
- #menu a:hover {
- background-color: transparent;
- color: rgb(127, 127, 127);
- }
-
- #menu a {
- padding: 1.9rem;
- }
-
-
-
- #hamb {
- display: none;
- }
-}
\ No newline at end of file
diff --git a/Server/app/svelte/public/js/communities.js b/Server/app/svelte/public/js/communities.js
index b8897be..4ffb183 100644
--- a/Server/app/svelte/public/js/communities.js
+++ b/Server/app/svelte/public/js/communities.js
@@ -1,26 +1,40 @@
export let communities = [
{
- location: ["Estonia, Kohtla-Järve",[59.409521829709504, 27.288415912535914]],
- status: "forming",
+ location: [{
+ en: "Estonia, Kohtla-Järve",
+ ru: "Эстония, Кохтла-Ярве"
+ },
+ [59.409521829709504, 27.288415912535914]],
+ status: {
+ en: "forming",
+ ru: "формируется"
+ },
members: 2,
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"]
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }]
}
]
-export function addMarkersCommunities(map) {
+export function addMarkersCommunities(map,content,locale) {
for (let g of communities) {
let coordinates
let text = ""
for (let field in g) {
- let fieldText = field[0].toUpperCase() + field.slice(1) + ": "
+ let fieldText = content[field] + ": "
if (field=="contact") {
- text += fieldText + "" + g.contact[1] + ""
+ text += fieldText + "" + g.contact[1][locale[0]] + ""
}
else if (field=="location") {
- text += fieldText + g[field][0] + " "
+ text += fieldText + g[field][0][locale[0]] + " "
coordinates = g[field][1]
}
+ else if (field=="status") {
+ text += fieldText + g[field][locale[0]] + " "
+ }
else {
text += fieldText + g[field] + " "
}
diff --git a/Server/app/svelte/public/js/coops.js b/Server/app/svelte/public/js/coops.js
index e437090..8fd8d9e 100644
--- a/Server/app/svelte/public/js/coops.js
+++ b/Server/app/svelte/public/js/coops.js
@@ -2,46 +2,88 @@ export let coops = [
{
logo: "chiron_logo",
name: "Chiron Health",
- location: ["Estonia, Kohtla-Järve",[59.40338782864918, 27.286240058760324]],
- market: "wellness and health",
+ location: [
+ {
+ en: "Estonia, Kohtla-Järve",
+ ru: "Эстония, Кохтла-Ярве"
+ },
+ [59.40338782864918, 27.286240058760324]],
+ market: {
+ en: "wellness and health",
+ ru: "благополучие и здоровье"
+ },
workers: 2,
- status: "launch in 2 months",
+ status: {
+ en: "launch in 2 months",
+ ru: "запуск через 2 месяца"
+ },
website: "chrn.health",
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"],
- description: "Chiron Health is a health platform providing courses and services on the topics of nutrition, exercise, sleep and mental wellbeing.",
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }],
+ description: {
+ en: "Chiron Health is a health platform providing courses and services on the topics of nutrition, exercise, sleep and mental wellbeing.",
+ ru: "Chiron Health — это платформа о здоровье, предлагающая курсы и услуги по вопросам питания, физических упражнений, сна и психического благополучия"
+ }
},
{
logo: "kuusk_logo",
name: "Kuusk",
- location: ["Estonia, Kohtla-Järve",[59.405466538976185, 27.289104862336302]],
- market: "herbal teas",
+ location: [
+ {
+ en: "Estonia, Kohtla-Järve",
+ ru: "Эстония, Кохтла-Ярве"
+ },
+ [59.405466538976185, 27.289104862336302]],
+ market: {
+ en: "herbal teas",
+ ru: "травяные чаи"
+ },
workers: 1,
- status: "launch in TBD months",
+ status: {
+ en: "launch in TBD months",
+ ru: "запуск через X месяцев"
+ },
website: "-",
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"],
- description: "Kuusk is an online store that sells herbal teas from exclusively local wild plants, as well as an online gathering course.",
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }],
+ description: {
+ en: "Kuusk is an online store that sells herbal teas from exclusively local wild plants, as well as an online gathering course.",
+ ru: "Kuusk — интернет-магазин, в котором продаются травяные чаи исключительно из местных дикорастущих растений, а также онлайн-курс по собирательству."
+ }
}
]
-export function addMarkersCoops(map) {
+export function addMarkersCoops(map,content,locale) {
for (let g of coops) {
let coordinates
let text = ""
for (let field in g) {
- let fieldText = "" + field[0].toUpperCase() + field.slice(1) + ": " + ""
+ let fieldText
+ if (field!="logo") {
+ fieldText = content[field] + ": "
+ }
if (field=="logo") {
text += "" + " "
}
else if (field=="contact") {
- text += fieldText + "" + g.contact[1] + "" + " "
+ text += fieldText + "" + g.contact[1][locale[0]] + "" + " "
}
else if (field=="website") {
text += fieldText + "" + g.website + "" + " "
}
else if (field=="location") {
- text += fieldText + g[field][0] + " "
+ text += fieldText + g[field][0][locale[0]] + " "
coordinates = g[field][1]
}
+ else if (field=="market" || field=="status" || field=="description") {
+ text += fieldText + g[field][locale[0]] + " "
+ }
else {
text += fieldText + g[field] + " "
}
diff --git a/Server/app/svelte/public/js/groups.js b/Server/app/svelte/public/js/groups.js
index 80140b5..f80af0c 100644
--- a/Server/app/svelte/public/js/groups.js
+++ b/Server/app/svelte/public/js/groups.js
@@ -1,37 +1,73 @@
export let groups = [
{
- location: ["Denmark, Copenhagen",[55.6840661150132, 12.557133959514688]],
+ location: [
+ {
+ en: "Denmark, Copenhagen",
+ ru: "Дания, Копенгаген"
+ },
+ [55.6840661150132, 12.557133959514688]],
members: 1,
- contact: ["https://discord.gg/xAPZmyr8B6","Discord invite link"]
+ contact: ["https://discord.gg/xAPZmyr8B6",
+ {
+ en: "WhatsApp invite link",
+ ru: "Discord ссылка"
+ }]
},
{
- location: ["Estonia, Kohtla-Järve",[59.40629447076191, 27.280605339416322]],
+ location: [
+ {
+ en: "Estonia, Kohtla-Järve",
+ ru: "Эстония, Кохтла-Ярве"
+ },
+ [59.40629447076191, 27.280605339416322]],
members: 3,
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"]
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }]
},
{
- location: ["Greece, Athens",[37.94877252621736, 23.677622972996158]],
+ location: [
+ {
+ en: "Greece, Athens",
+ ru: "Греция, Афины"
+ },
+ [37.94877252621736, 23.677622972996158]],
members: 1,
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"]
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }]
},
{
- location: ["Latvia, Riga",[56.94748425529816, 24.003027136431925]],
+ location: [
+ {
+ en: "Latvia, Riga",
+ ru: "Латвия, Рига"
+ },
+ [56.94748425529816, 24.003027136431925]],
members: 2,
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"]
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }]
},
]
-export function addMarkersGroups(map) {
+export function addMarkersGroups(map,content,locale) {
for (let g of groups) {
let coordinates
let text = ""
for (let field in g) {
- let fieldText = field[0].toUpperCase() + field.slice(1) + ": "
+ let fieldText = content[field] + ": "
if (field=="contact") {
- text += fieldText + "" + g.contact[1] + ""
+ text += fieldText + "" + g.contact[1][locale[0]] + ""
}
else if (field=="location") {
- text += fieldText + g[field][0] + " "
+ text += fieldText + g[field][0][locale[0]] + " "
coordinates = g[field][1]
}
else {
diff --git a/Server/app/svelte/public/js/libraries/serverTools.js b/Server/app/svelte/public/js/libraries/serverTools.js
index 65c2ae3..72037f0 100644
--- a/Server/app/svelte/public/js/libraries/serverTools.js
+++ b/Server/app/svelte/public/js/libraries/serverTools.js
@@ -62,3 +62,47 @@ export function sendText(route,data,callback) {
xhr.send(data)
}
+function onlyUnique(value, index, array) {
+ return array.indexOf(value) === index;
+}
+
+export function loadLocaleContent(content,componentName,loaded,callback) {
+ let langs
+ let localesAvailable
+ let locale = localStorage.getItem("locale")
+ if (locale==null) {
+ langs = navigator.languages.map(x => x.split("-")[0]).filter(onlyUnique)
+ }
+ getData("/locales/available.json",function(response) {
+ if (locale!=null) {
+ getData("/locales/" + locale + "/" + componentName + ".json" ,function(response) {
+ let parsed = JSON.parse(response)
+ content.set(parsed)
+ if (callback!=undefined) {
+ callback(locale)
+ }
+ loaded = 1
+ })
+ }
+ else {
+ localesAvailable = JSON.parse(response)
+ for (let lang of langs) {
+ if (localesAvailable.includes(lang)) {
+ getData("/locales/" + lang + "/" + componentName + ".json" ,function(response) {
+ let parsed = JSON.parse(response)
+ content.set(parsed)
+ if (callback!=undefined) {
+ callback(locale)
+ }
+ loaded = 1
+ })
+ }
+ break
+ }
+ }
+ })
+}
+
+export function getLocale(locale,lang) {
+ locale[0] = lang
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/available.json b/Server/app/svelte/public/locales/available.json
new file mode 100644
index 0000000..29b6e3b
--- /dev/null
+++ b/Server/app/svelte/public/locales/available.json
@@ -0,0 +1 @@
+["en","ru"]
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/en/communities-component.json b/Server/app/svelte/public/locales/en/communities-component.json
new file mode 100644
index 0000000..9f43b00
--- /dev/null
+++ b/Server/app/svelte/public/locales/en/communities-component.json
@@ -0,0 +1,10 @@
+{
+ "heading": "Communities",
+ "p1": "We establish libertarian socialist communities by buying land, housing and the means of production which are then owned by the members of these communities. There is no private property within the communities and, therefore, exploitation and suffering that comes with it. Decisions are made using direct democracy with a focus on consensus, ensuring that each community member has power over decisions that affect their life. Communities try to establish their own cooperatives in order to finance their development becoming financially independent and sustainable, which allows for their survival and growth. Within communities the gift economy is utilized whenever possible. Each community is a small beacon of socialism within the dark capitalist world showing us how good life can be if only we achieve our goal.",
+ "subheading1": "Our Communities",
+ "subheading2": "Europe",
+ "location": "Location",
+ "status": "Status",
+ "members": "Members",
+ "contact": "Contact"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/en/cooperatives-component.json b/Server/app/svelte/public/locales/en/cooperatives-component.json
new file mode 100644
index 0000000..b4641c1
--- /dev/null
+++ b/Server/app/svelte/public/locales/en/cooperatives-component.json
@@ -0,0 +1,15 @@
+{
+ "heading": "Cooperatives",
+ "p1": "We establish worker cooperatives, which is a business model where employees own and control the enterprise. Each worker has a voice in decision-making, and profits are distributed based on individual contributions. This participatory structure fosters ownership, motivation, and job satisfaction, creating a more fulfilling work experience as well as challenging the wealth concentration in traditional capitalist businesses.",
+ "p2": "By focusing on employees' needs, our cooperatives create supportive and sustainable work environments that foster social cohesion and job security. We also prioritize the interests of local communities, taking a long-term perspective. With workers making decisions, we avoid harmful short-term profit-driven strategies and instead reinvest our profits, contributing to community development and resilience.",
+ "subheading1": "Our Cooperatives",
+ "subheading2": "Europe",
+ "name": "Name",
+ "location": "Location",
+ "market": "Market",
+ "status": "Status",
+ "workers": "Workers",
+ "contact": "Contact",
+ "description": "Description",
+ "website": "Website"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/en/footer-component.json b/Server/app/svelte/public/locales/en/footer-component.json
new file mode 100644
index 0000000..62fe3cb
--- /dev/null
+++ b/Server/app/svelte/public/locales/en/footer-component.json
@@ -0,0 +1,5 @@
+{
+ "contactUs": "Contact Us",
+ "inviteLink": "invite link",
+ "libertarianSocialists": "Libertarian Socialists"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/en/groups-component.json b/Server/app/svelte/public/locales/en/groups-component.json
new file mode 100644
index 0000000..6477a45
--- /dev/null
+++ b/Server/app/svelte/public/locales/en/groups-component.json
@@ -0,0 +1,10 @@
+{
+ "heading": "Groups",
+ "p1": "We aim to raise awareness about the negative impact of current politico-economic systems on our well-being. By highlighting these issues, we empower people to question the status quo and imagine fairer and more sustainable alternatives.",
+ "p2": "But our mission goes beyond theory. We engage in mutual aid and collective action to address immediate challenges within capitalism. Through mutual aid, we support each other by sharing resources, knowledge, and skills, fostering solidarity and resilience. Whether it's community gardens, food cooperatives, or support networks, our goal is to make life under capitalism more bearable and create pockets of resistance and alternatives within the system.",
+ "subheading1": "Our Groups",
+ "subheading2": "Europe",
+ "location": "Location",
+ "members": "Members",
+ "contact": "Contact"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/en/join-us-component.json b/Server/app/svelte/public/locales/en/join-us-component.json
new file mode 100644
index 0000000..f1ce788
--- /dev/null
+++ b/Server/app/svelte/public/locales/en/join-us-component.json
@@ -0,0 +1,24 @@
+{
+ "heading": "Join Us",
+ "condition1": "Are you against dictatorship and in favor of democracy?",
+ "condition2": "Are you against exploitation of one human being by another?",
+ "condition3": "Do you agree that we should work with each other and not against each other?",
+ "conditionsOutcome": "If the answer is YES, then you are already a libertarian socialist. JOIN US!",
+ "subheading1": "What You Will Get",
+ "valueProposition1": "A community that is always ready to help with all your troubles;",
+ "valueProposition2": "Access to the means of production of our cooperatives;",
+ "valueProposition3": "Products and services at the cost of production or even for free;",
+ "valueProposition4": "Monetary and non-monetary help with opening your own cooperative;",
+ "valueProposition5": "and much more!",
+ "subheading2": "Find Us",
+ "findOur": "Find our",
+ "group": "group",
+ "community": "community",
+ "or": "or",
+ "cooperative": "cooperative",
+ "nearYou": "near you and join to help make a world we both envision a reality.",
+ "noneNear": "None of them near you? Not a problem! Join our",
+ "WhatsAppGroup": "WhatsApp group",
+ "DiscordServer": "Discord server",
+ "helpStart": " and we will help you start your own."
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/en/landing-component.json b/Server/app/svelte/public/locales/en/landing-component.json
new file mode 100644
index 0000000..9e2d2e7
--- /dev/null
+++ b/Server/app/svelte/public/locales/en/landing-component.json
@@ -0,0 +1,9 @@
+{
+ "top": "We are people united around a singular cause: bringing down authoritarian exploitative systems represented by various forms of capitalism and replacing them with libertarian socialist systems, with the goal of creating a more equitable and democratic world.",
+ "groupsTitle": "GROUPS",
+ "groupsText": "We organize groups for the purposes of education, advocacy, and mutual aid. Our objective is to demonstrate to people how the current politico-economic systems detrimentally impact our well-being, present them with alternative approaches, and engage in mutual aid to alleviate the challenges of living under capitalism.",
+ "communitiesTitle": "COMMUNITIES",
+ "communitiesText": "We establish communities based on libertarian socialist principles, where communities have ownership of their land, houses, and the means of production as well as make decisions using direct democracy. We are gradually expanding our socialist world, one community at a time.",
+ "cooperativesTitle": "COOPERATIVES",
+ "cooperativesText": "We form worker cooperatives to finance the operations of our groups and communities. Recognizing that economic power influences political power, we consider the establishment of cooperatives to be one of the initial steps towards achieving socialism."
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/en/navbar-component.json b/Server/app/svelte/public/locales/en/navbar-component.json
new file mode 100644
index 0000000..275329b
--- /dev/null
+++ b/Server/app/svelte/public/locales/en/navbar-component.json
@@ -0,0 +1,9 @@
+{
+ "orgName": "Libertarian socialists",
+ "manifesto": "Manifesto",
+ "joinUs": "Join Us",
+ "groups": "Groups",
+ "communities": "Communities",
+ "cooperatives": "Cooperatives",
+ "partners": "Partners"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/en/partners-component.json b/Server/app/svelte/public/locales/en/partners-component.json
new file mode 100644
index 0000000..0914fee
--- /dev/null
+++ b/Server/app/svelte/public/locales/en/partners-component.json
@@ -0,0 +1,11 @@
+{
+ "heading": "Partners",
+ "p1": "We partner with organizations and initiatives that align with our mission. Together, we are a united force driven by a shared worldview where there is no place for authoritarian exploitative systems, but where systems promoting equity and democracy thrive.",
+ "subheading1": "Our Partners",
+ "subheading2": "Online",
+ "name": "Name",
+ "location": "Location",
+ "type": "Type",
+ "link": "Link",
+ "description": "Description"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/ru/communities-component.json b/Server/app/svelte/public/locales/ru/communities-component.json
new file mode 100644
index 0000000..e3d413c
--- /dev/null
+++ b/Server/app/svelte/public/locales/ru/communities-component.json
@@ -0,0 +1,10 @@
+{
+ "heading": "Коммуны",
+ "p1": "Мы создаем либертарные социалистические коммуны, покупая землю, жилье и средства производства, которые затем принадлежат членам этих коммун. В коммунах нет частной собственности и, следовательно, эксплуатации и страданий, которые с ней связаны. Решения принимаются с использованием прямой демократии с упором на консенсус, гарантируя, что каждый член сообщества имеет право принимать решения, влияющие на его жизнь. Сообщества пытаются создавать свои собственные кооперативы, чтобы финансировать свое развитие, становясь финансово независимыми и устойчивыми, что позволяет им выживать и расти. В сообществах по возможности используется экономика дарения. Каждая коммуна — это маленький маяк социализма в темном капиталистическом мире, показывающий нам, насколько хорошей может быть жизнь, если мы только достигнем своей цели.",
+ "subheading1": "Наши коммуны",
+ "subheading2": "Европа",
+ "location": "Локация",
+ "status": "Статус",
+ "members": "Участники",
+ "contact": "Контакт"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/ru/cooperatives-component.json b/Server/app/svelte/public/locales/ru/cooperatives-component.json
new file mode 100644
index 0000000..5363c0c
--- /dev/null
+++ b/Server/app/svelte/public/locales/ru/cooperatives-component.json
@@ -0,0 +1,15 @@
+{
+ "heading": "Кооперативы",
+ "p1": "Мы создаем рабочие кооперативы, которые представляют собой бизнес-модель, в которой работники владеют предприятием и контролируют его. Каждый работник имеет право голоса при принятии решений, а прибыль распределяется на основе индивидуальных вкладов. Эта структура способствует мотивации и удовлетворенности работой, создавая более приятные условия труда, а также бросает вызов концентрации богатства в традиционных капиталистических предприятиях.",
+ "p2": "Сосредоточив внимание на потребностях сотрудников, наши кооперативы создают благоприятную и устойчивую рабочую среду, которая способствует социальной сплоченности и гарантиям занятости. Мы также уделяем первостепенное внимание интересам местных сообществ, ориентируясь на долгосрочную перспективу. Когда решения принимают работники, мы избегаем вредных краткосрочных стратегий, ориентированных на получение прибыли, и вместо этого реинвестируем нашу прибыль, способствуя развитию и устойчивости сообщества.",
+ "subheading1": "Наши кооперативы",
+ "subheading2": "Европа",
+ "name": "Название",
+ "location": "Локация",
+ "market": "Рынок",
+ "status": "Статус",
+ "workers": "Работники",
+ "contact": "Контакт",
+ "description": "Описание",
+ "website": "Вебсайт"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/ru/footer-component.json b/Server/app/svelte/public/locales/ru/footer-component.json
new file mode 100644
index 0000000..bb20acd
--- /dev/null
+++ b/Server/app/svelte/public/locales/ru/footer-component.json
@@ -0,0 +1,5 @@
+{
+ "contactUs": "Напиши нам",
+ "inviteLink": "ссылка",
+ "libertarianSocialists": "Либертарные Социалисты"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/ru/groups-component.json b/Server/app/svelte/public/locales/ru/groups-component.json
new file mode 100644
index 0000000..3670abb
--- /dev/null
+++ b/Server/app/svelte/public/locales/ru/groups-component.json
@@ -0,0 +1,10 @@
+{
+ "heading": "Группы",
+ "p1": "Мы стремимся повышать осведомленность о негативном влиянии нынешних политико-экономических систем на наше благополучие. Выдвигая на первый план эти проблемы, мы даем людям возможность поставить под сомнение статус-кво и представить себе более справедливые и устойчивые альтернативы.",
+ "p2": "Однако, наша миссия выходит за рамки теории. Мы участвуем во взаимопомощи и коллективных действиях для решения насущных проблем. Посредством взаимопомощи мы поддерживаем друг друга, делясь ресурсами, знаниями и навыками, укрепляя солидарность и устойчивость к негодам. Будь то общественные сады, продовольственные кооперативы или сети поддержки, наша цель — сделать жизнь при капитализме более терпимой и создать очаги сопротивления и альтернативы внутри системы.",
+ "subheading1": "Наши группы",
+ "subheading2": "Европа",
+ "location": "Локация",
+ "members": "Участники",
+ "contact": "Контакт"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/ru/join-us-component.json b/Server/app/svelte/public/locales/ru/join-us-component.json
new file mode 100644
index 0000000..991286d
--- /dev/null
+++ b/Server/app/svelte/public/locales/ru/join-us-component.json
@@ -0,0 +1,24 @@
+{
+ "heading": "Присоединяйся",
+ "condition1": "Ты против диктатуры и за демократию?",
+ "condition2": "Ты против эксплуатации одного человека другим?",
+ "condition3": "Ты согласен, что мы должны работать с друг другом, а не против друг друга?",
+ "conditionsOutcome": "Если твой ответ ДА, то ты уже лебиртарный социалист. Присоединяйся!",
+ "subheading1": "Что ты получишь",
+ "valueProposition1": "Сообщество, которое всегда готово прийти к тебе на помощь;",
+ "valueProposition2": "Доступ к средствам производства наших кооперативов;",
+ "valueProposition3": "Продукты и сервис за стоимость производства или бесплатно;",
+ "valueProposition4": "Денежная и другая помощь для открытия кооператива;",
+ "valueProposition5": "и многое другое!",
+ "subheading2": "Найди нас",
+ "findOur": "Найди нашу",
+ "group": "группу",
+ "community": "коммуну",
+ "or": "или",
+ "cooperative": "кооператив",
+ "nearYou": "около тебя и присоединяйся для того, чтобы сделать тот мир, о котором мы все мечтаем, реальностью.",
+ "noneNear": "Ни одного из них около тебя нет? Не проблема! Присоединяйся к нашей",
+ "WhatsAppGroup": "WhatsApp группе",
+ "DiscordServer": "Discord серверу",
+ "helpStart": " и мы поможем тебе создать создать свои."
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/ru/landing-component.json b/Server/app/svelte/public/locales/ru/landing-component.json
new file mode 100644
index 0000000..57c1662
--- /dev/null
+++ b/Server/app/svelte/public/locales/ru/landing-component.json
@@ -0,0 +1,9 @@
+{
+ "top": "Мы люди, объединенные одной целью: свержение авторитарных эксплуататорских систем, представленных различными формами капитализма, и замена их либертарными социалистическими системами с целью создания более справедливого и демократического мира.",
+ "groupsTitle": "ГРУППЫ",
+ "groupsText": "Мы организуем группы в целях образования, защиты наших интересов и взаимопомощи. Наша цель — продемонстрировать людям, как нынешние политико-экономические системы пагубно влияют на наше благополучие, представить им альтернативные варианты и заниматься взаимопомощью, чтобы сделать жизнь при капитализме легче.",
+ "communitiesTitle": "КОММУНЫ",
+ "communitiesText": "Мы создаем коммуны на основе либертарных социалистических принципов, где члены коммун владеют своей землей, домами и средствами производства, а также принимают решения, используя прямую демократию. Мы постепенно, по одной коммуне, расширяем наш социалистический мир.",
+ "cooperativesTitle": "КООПЕРАТИВЫ",
+ "cooperativesText": "Мы формируем рабочие кооперативы для финансирования операций наших групп и коммун. Признавая, что экономическая власть влияет на политическую власть, мы считаем создание кооперативов одним из первых шагов на пути к социализму."
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/ru/navbar-component.json b/Server/app/svelte/public/locales/ru/navbar-component.json
new file mode 100644
index 0000000..b8a1c54
--- /dev/null
+++ b/Server/app/svelte/public/locales/ru/navbar-component.json
@@ -0,0 +1,9 @@
+{
+ "orgName": "Либертарные социалисты",
+ "manifesto": "Манифест",
+ "joinUs": "Присоединяйся",
+ "groups": "Группы",
+ "communities": "Сообщества",
+ "cooperatives": "Кооперативы",
+ "partners": "Партнеры"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/public/locales/ru/partners-component.json b/Server/app/svelte/public/locales/ru/partners-component.json
new file mode 100644
index 0000000..033efcc
--- /dev/null
+++ b/Server/app/svelte/public/locales/ru/partners-component.json
@@ -0,0 +1,11 @@
+{
+ "heading": "Партнеры",
+ "p1": "Мы сотрудничаем с организациями и инициативами, которые соответствуют нашей миссии. Вместе мы являемся единой силой, движимой общим мировоззрением, где нет места авторитарным эксплуататорским системам, но где процветают системы, продвигающие справедливость и демократию.",
+ "subheading1": "Наши партнеры",
+ "subheading2": "Онлайн",
+ "name": "Название",
+ "location": "Локация",
+ "type": "Тип",
+ "link": "Ссылка",
+ "description": "Описание"
+}
\ No newline at end of file
diff --git a/Server/app/svelte/rollup.config.js b/Server/app/svelte/rollup.config.js
index 72c9b3c..230492a 100644
--- a/Server/app/svelte/rollup.config.js
+++ b/Server/app/svelte/rollup.config.js
@@ -30,7 +30,8 @@ function serve() {
}
};
}
-
+
+
const walkSync = require("walk-sync");
const paths = walkSync("./src", {globs: ["**/*.svelte"]}).map(x => "src/"+x)
diff --git a/Server/app/svelte/src/affiliates-component.svelte b/Server/app/svelte/src/affiliates-component.svelte
deleted file mode 100644
index 0228a72..0000000
--- a/Server/app/svelte/src/affiliates-component.svelte
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
-
-
-
-
-
-
Affiliates
-
-
We affiliate with organizations and initiatives that align with our mission. Together, we are a united force driven by a shared worldview where there is no place for authoritarian exploitative systems, but where systems promoting equity and democracy thrive.
-
-
\ No newline at end of file
diff --git a/Server/app/svelte/src/communities-component.svelte b/Server/app/svelte/src/communities-component.svelte
index a42c41f..6ad934f 100644
--- a/Server/app/svelte/src/communities-component.svelte
+++ b/Server/app/svelte/src/communities-component.svelte
@@ -3,16 +3,23 @@
-
-
-
-
Communities
-
-
We establish libertarian socialist communities by buying land, housing and the means of production which are then owned by the members of these communities. There is no private property within the communities and, therefore, exploitation and suffering that comes with it. Decisions are made using direct democracy with a focus on consensus, ensuring that each community member has power over decisions that affect their life. Communities try to establish their own cooperatives in order to finance their development becoming financially independent and sustainable, which allows for their survival and growth. Within communities the gift economy is utilized whenever possible. Each community is a small beacon of socialism within the dark capitalist world showing us how good life can be if only we achieve our goal.
+ {/if}
+{/key}
+
+
\ No newline at end of file
diff --git a/Server/public/css/common.css b/Server/public/css/common.css
index 6828e60..701c69b 100644
--- a/Server/public/css/common.css
+++ b/Server/public/css/common.css
@@ -16,8 +16,8 @@
--grey-blue:hsl(223, 13%, 22%);
--cream:hsl(34, 43%, 90%);
--dark-cream:hsl(33, 26%, 84%);
- --sans-serif: "Space Grotesk";
- --serif: "DejaVu";
+ --sans-serif: "OpenSans";
+ --serif: "Lora";
}
svg {
@@ -59,27 +59,25 @@ body {
/*---Fonts---------------------------------------------------------*/
@font-face {
- font-family: 'Space Grotesk';
+ font-family: 'OpenSans';
font-weight: 400;
font-style: normal;
font-display: swap;
src: /*local('Space Grotesk Light'),
local('SpaceGroteskLight-Regular'),
local('Space Grotesk Light Regular'), */
- url('/fonts/SpaceGrotesk/SpaceGrotesk.woff2') format('woff2'),
- url('/fonts/SpaceGrotesk/SpaceGrotesk.woff') format('woff');
+ url('/fonts/OpenSans/opensans.woff2') format('woff2'),
+ url('/fonts/OpenSans/opensans.woff') format('woff');
}
@font-face {
- font-family: 'DejaVu';
+ font-family: 'Lora';
font-weight: 400;
font-style: normal;
font-display: swap;
- src: /*local('DejaVuLGCSerif'),
- local('DejaVu LGC Serif'), */
- /*url('/fonts/DejaVu/DejaVuLGCSerif.woff2') format('woff2'), */
- url('/fonts/DejaVu/solitasserifnormregular.woff2') format('woff2'),
- url('/fonts/DejaVu/DejaVuLGCSerif.woff') format('woff');
+ src:
+ url('/fonts/Lora/Lora-Regular.ttf') format('ttf'),
+ url('/fonts/lora/Lora-Regular.woff') format('woff');
}
.serif {
@@ -124,7 +122,7 @@ h4 {
span {
font-family: var(--serif, serif);
- font-size: 1.25rem;
+ font-size: 1.15rem;
height: auto;
width: auto;
color: #222222;
@@ -132,20 +130,20 @@ span {
p {
font-family: var(--serif, serif);
- font-size: 1.25rem;
- line-height: 150%;
+ font-size: 1.15rem;
+ line-height: 160%;
color: #222222;
}
a {
font-family: var(--serif, serif);
- font-size: 1.25rem;
+ font-size: 1.15rem;
color: #222222;
}
li {
font-family: var(--serif, serif);
- font-size: 1.25rem;
+ font-size: 1.15rem;
color: #222222;
text-align: justify;
}
diff --git a/Server/public/fonts/Lora/Lora-Regular.ttf b/Server/public/fonts/Lora/Lora-Regular.ttf
new file mode 100644
index 0000000..5306a94
Binary files /dev/null and b/Server/public/fonts/Lora/Lora-Regular.ttf differ
diff --git a/Server/public/fonts/Lora/Lora-Regular.woff b/Server/public/fonts/Lora/Lora-Regular.woff
new file mode 100644
index 0000000..c248ca2
Binary files /dev/null and b/Server/public/fonts/Lora/Lora-Regular.woff differ
diff --git a/Server/public/fonts/Lora/Lora-Regular.woff2 b/Server/public/fonts/Lora/Lora-Regular.woff2
new file mode 100644
index 0000000..bf51a83
Binary files /dev/null and b/Server/public/fonts/Lora/Lora-Regular.woff2 differ
diff --git a/Server/public/fonts/NotoSerif/NotoSerif-Light.ttf b/Server/public/fonts/NotoSerif/NotoSerif-Light.ttf
new file mode 100644
index 0000000..96b7c22
Binary files /dev/null and b/Server/public/fonts/NotoSerif/NotoSerif-Light.ttf differ
diff --git a/Server/public/fonts/NotoSerif/NotoSerif-Regular.ttf b/Server/public/fonts/NotoSerif/NotoSerif-Regular.ttf
new file mode 100644
index 0000000..3aa8999
Binary files /dev/null and b/Server/public/fonts/NotoSerif/NotoSerif-Regular.ttf differ
diff --git a/Server/public/fonts/NotoSerif/NotoSerif-Regular.woff b/Server/public/fonts/NotoSerif/NotoSerif-Regular.woff
new file mode 100644
index 0000000..abd15ad
Binary files /dev/null and b/Server/public/fonts/NotoSerif/NotoSerif-Regular.woff differ
diff --git a/Server/public/fonts/NotoSerif/NotoSerif-Regular.woff2 b/Server/public/fonts/NotoSerif/NotoSerif-Regular.woff2
new file mode 100644
index 0000000..e2e1f3d
Binary files /dev/null and b/Server/public/fonts/NotoSerif/NotoSerif-Regular.woff2 differ
diff --git a/Server/public/fonts/OpenSans/opensans.ttf b/Server/public/fonts/OpenSans/opensans.ttf
new file mode 100644
index 0000000..29e9e60
Binary files /dev/null and b/Server/public/fonts/OpenSans/opensans.ttf differ
diff --git a/Server/public/fonts/OpenSans/opensans.woff b/Server/public/fonts/OpenSans/opensans.woff
new file mode 100644
index 0000000..d28b141
Binary files /dev/null and b/Server/public/fonts/OpenSans/opensans.woff differ
diff --git a/Server/public/fonts/OpenSans/opensans.woff2 b/Server/public/fonts/OpenSans/opensans.woff2
new file mode 100644
index 0000000..6b00eaa
Binary files /dev/null and b/Server/public/fonts/OpenSans/opensans.woff2 differ
diff --git a/Server/public/img/common/globe.png b/Server/public/img/common/globe.png
index 91e93e7..cd8e4df 100644
Binary files a/Server/public/img/common/globe.png and b/Server/public/img/common/globe.png differ
diff --git a/Server/public/img/common/globe.webp b/Server/public/img/common/globe.webp
new file mode 100644
index 0000000..00d4608
Binary files /dev/null and b/Server/public/img/common/globe.webp differ
diff --git a/Server/public/img/common/globe2.png b/Server/public/img/common/globe2.png
new file mode 100644
index 0000000..91e93e7
Binary files /dev/null and b/Server/public/img/common/globe2.png differ
diff --git a/Server/public/img/affiliates/gaias_fall.jpg b/Server/public/img/partners/gaias_fall.jpg
similarity index 100%
rename from Server/public/img/affiliates/gaias_fall.jpg
rename to Server/public/img/partners/gaias_fall.jpg
diff --git a/Server/public/img/affiliates/gaias_fall.webp b/Server/public/img/partners/gaias_fall.webp
similarity index 100%
rename from Server/public/img/affiliates/gaias_fall.webp
rename to Server/public/img/partners/gaias_fall.webp
diff --git a/Server/public/js/communities.js b/Server/public/js/communities.js
index b8897be..4ffb183 100644
--- a/Server/public/js/communities.js
+++ b/Server/public/js/communities.js
@@ -1,26 +1,40 @@
export let communities = [
{
- location: ["Estonia, Kohtla-Järve",[59.409521829709504, 27.288415912535914]],
- status: "forming",
+ location: [{
+ en: "Estonia, Kohtla-Järve",
+ ru: "Эстония, Кохтла-Ярве"
+ },
+ [59.409521829709504, 27.288415912535914]],
+ status: {
+ en: "forming",
+ ru: "формируется"
+ },
members: 2,
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"]
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }]
}
]
-export function addMarkersCommunities(map) {
+export function addMarkersCommunities(map,content,locale) {
for (let g of communities) {
let coordinates
let text = ""
for (let field in g) {
- let fieldText = field[0].toUpperCase() + field.slice(1) + ": "
+ let fieldText = content[field] + ": "
if (field=="contact") {
- text += fieldText + "" + g.contact[1] + ""
+ text += fieldText + "" + g.contact[1][locale[0]] + ""
}
else if (field=="location") {
- text += fieldText + g[field][0] + " "
+ text += fieldText + g[field][0][locale[0]] + " "
coordinates = g[field][1]
}
+ else if (field=="status") {
+ text += fieldText + g[field][locale[0]] + " "
+ }
else {
text += fieldText + g[field] + " "
}
diff --git a/Server/public/js/components/affiliates-component.js b/Server/public/js/components/affiliates-component.js
index f2d8d73..c0d9a50 100644
--- a/Server/public/js/components/affiliates-component.js
+++ b/Server/public/js/components/affiliates-component.js
@@ -1 +1,345 @@
-import{S as t,i as e,a as i,b as n,s as a,e as o,c as r,n as s,d as l,f as m,g as c,h as g,j as d,o as h,t as f}from"./index-95aedb1a.js";import"../../../../../../../../../js/components/map-component.js";function p(t,e,i){const n=t.slice();return n[1]=e[i],n}function u(t){let e,i,a,m,d,h,p,u,x,b,w,v,y,k,C,j,z,D,T,A,E,F,G,L,O,R,S,W=t[1].name+"",_=t[1].type+"",q=t[1].link+"",H=t[1].description+"";return{c(){e=o("div"),i=o("div"),a=o("picture"),m=o("source"),d=r(),h=o("source"),p=r(),u=o("img"),x=r(),b=o("div"),w=o("p"),v=o("b"),v.textContent="Name: ",y=f(W),k=r(),C=o("p"),j=o("b"),j.textContent="Type: ",z=f(_),D=r(),T=o("p"),A=o("b"),A.textContent="Link: ",E=o("a"),F=f(q),G=r(),L=o("p"),O=o("b"),O.textContent="Description: ",R=f(H),S=r(),l(m,"srcset","/img/affiliates/"+t[1].logo+".webp"),l(h,"srcset","/img/affiliates/"+t[1].logo+".jpg"),l(u,"class","affiliate-logo"),l(u,"alt","logo"),l(E,"href",t[1].link),l(E,"target",";_blank;"),l(E,"rel","noreferrer"),l(i,"class","img-general-info"),l(e,"class","location-info")},m(t,o){n(t,e,o),c(e,i),c(i,a),c(a,m),c(a,d),c(a,h),c(a,p),c(a,u),c(i,x),c(i,b),c(b,w),c(w,v),c(w,y),c(b,k),c(b,C),c(C,j),c(C,z),c(b,D),c(b,T),c(T,A),c(T,E),c(E,F),c(e,G),c(e,L),c(L,O),c(L,R),c(e,S)},p:s,d(t){t&&g(e)}}}function x(t){let e,i,a,h,f,x,b,w,v,y,k,C,j,z=t[0],D=[];for(let e=0;e{})),[[{name:"Gaia's Fall",type:"a place to discuss and organize",link:"https://discord.libsoc.org",description:"Gaia's Fall is a server that promotes Solarpunk ideals, environmentalism, anarchism, and anti-capitalism. We encourage civil debates, discussions of theories and possibilities, and the creation of communities focused on shaping a better world. It is our official Discord server where we organize and work together.",logo:"gaias_fall"}]]}class w extends t{constructor(t){super(),this.shadowRoot.innerHTML="",e(this,{target:this.shadowRoot,props:i(this.attributes),customElement:!0},b,x,a,{},null),t&&t.target&&n(t.target,this,t.anchor)}}customElements.define("affiliates-component",w);export{w as default};
+
+(function(l, r) { if (!l || l.getElementById('livereloadscript')) return; r = l.createElement('script'); r.async = 1; r.src = '//' + (self.location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1'; r.id = 'livereloadscript'; l.getElementsByTagName('head')[0].appendChild(r) })(self.document);
+import { S as SvelteElement, i as init, a as attribute_to_object, b as insert_dev, s as safe_not_equal, v as validate_each_argument, d as dispatch_dev, c as validate_slots, o as onMount, e as element, f as space, n as noop, g as add_location, h as attr_dev, j as src_url_equal, k as append_dev, l as detach_dev, m as destroy_each, t as text } from './index-ab5c14c8.js';
+import '../../../../../../../../../js/components/map-component.js';
+
+/* src\affiliates-component.svelte generated by Svelte v3.52.0 */
+
+const file = "src\\affiliates-component.svelte";
+
+function get_each_context(ctx, list, i) {
+ const child_ctx = ctx.slice();
+ child_ctx[1] = list[i];
+ return child_ctx;
+}
+
+// (36:8) {#each affiliates as affiliate}
+function create_each_block(ctx) {
+ let div2;
+ let div1;
+ let picture;
+ let source0;
+ let t0;
+ let source1;
+ let t1;
+ let img;
+ let t2;
+ let div0;
+ let p0;
+ let b0;
+ let t4_value = /*affiliate*/ ctx[1].name + "";
+ let t4;
+ let t5;
+ let p1;
+ let b1;
+ let t7_value = /*affiliate*/ ctx[1].type + "";
+ let t7;
+ let t8;
+ let p2;
+ let b2;
+ let a;
+ let t10_value = /*affiliate*/ ctx[1].link + "";
+ let t10;
+ let t11;
+ let p3;
+ let b3;
+ let t13_value = /*affiliate*/ ctx[1].description + "";
+ let t13;
+ let t14;
+
+ const block = {
+ c: function create() {
+ div2 = element("div");
+ div1 = element("div");
+ picture = element("picture");
+ source0 = element("source");
+ t0 = space();
+ source1 = element("source");
+ t1 = space();
+ img = element("img");
+ t2 = space();
+ div0 = element("div");
+ p0 = element("p");
+ b0 = element("b");
+ b0.textContent = "Name: ";
+ t4 = text(t4_value);
+ t5 = space();
+ p1 = element("p");
+ b1 = element("b");
+ b1.textContent = "Type: ";
+ t7 = text(t7_value);
+ t8 = space();
+ p2 = element("p");
+ b2 = element("b");
+ b2.textContent = "Link: ";
+ a = element("a");
+ t10 = text(t10_value);
+ t11 = space();
+ p3 = element("p");
+ b3 = element("b");
+ b3.textContent = "Description: ";
+ t13 = text(t13_value);
+ t14 = space();
+ attr_dev(source0, "srcset", "/img/affiliates/" + /*affiliate*/ ctx[1].logo + ".webp");
+ add_location(source0, file, 39, 24, 1619);
+ attr_dev(source1, "srcset", "/img/affiliates/" + /*affiliate*/ ctx[1].logo + ".jpg");
+ add_location(source1, file, 40, 24, 1704);
+ attr_dev(img, "class", "affiliate-logo");
+ attr_dev(img, "alt", "logo");
+ add_location(img, file, 41, 24, 1788);
+ add_location(picture, file, 38, 20, 1584);
+ add_location(b0, file, 44, 27, 1915);
+ add_location(p0, file, 44, 24, 1912);
+ add_location(b1, file, 45, 27, 1977);
+ add_location(p1, file, 45, 24, 1974);
+ add_location(b2, file, 46, 27, 2039);
+ attr_dev(a, "href", /*affiliate*/ ctx[1].link);
+ attr_dev(a, "target", ";_blank;");
+ attr_dev(a, "rel", "noreferrer");
+ add_location(a, file, 46, 40, 2052);
+ add_location(p2, file, 46, 24, 2036);
+ add_location(div0, file, 43, 20, 1881);
+ attr_dev(div1, "class", "img-general-info");
+ add_location(div1, file, 37, 16, 1532);
+ add_location(b3, file, 49, 19, 2205);
+ add_location(p3, file, 49, 16, 2202);
+ attr_dev(div2, "class", "location-info");
+ add_location(div2, file, 36, 12, 1487);
+ },
+ m: function mount(target, anchor) {
+ insert_dev(target, div2, anchor);
+ append_dev(div2, div1);
+ append_dev(div1, picture);
+ append_dev(picture, source0);
+ append_dev(picture, t0);
+ append_dev(picture, source1);
+ append_dev(picture, t1);
+ append_dev(picture, img);
+ append_dev(div1, t2);
+ append_dev(div1, div0);
+ append_dev(div0, p0);
+ append_dev(p0, b0);
+ append_dev(p0, t4);
+ append_dev(div0, t5);
+ append_dev(div0, p1);
+ append_dev(p1, b1);
+ append_dev(p1, t7);
+ append_dev(div0, t8);
+ append_dev(div0, p2);
+ append_dev(p2, b2);
+ append_dev(p2, a);
+ append_dev(a, t10);
+ append_dev(div2, t11);
+ append_dev(div2, p3);
+ append_dev(p3, b3);
+ append_dev(p3, t13);
+ append_dev(div2, t14);
+ },
+ p: noop,
+ d: function destroy(detaching) {
+ if (detaching) detach_dev(div2);
+ }
+ };
+
+ dispatch_dev("SvelteRegisterBlock", {
+ block,
+ id: create_each_block.name,
+ type: "each",
+ source: "(36:8) {#each affiliates as affiliate}",
+ ctx
+ });
+
+ return block;
+}
+
+function create_fragment(ctx) {
+ let div1;
+ let div0;
+ let h1;
+ let t1;
+ let img;
+ let img_src_value;
+ let t2;
+ let p;
+ let t4;
+ let h3;
+ let t6;
+ let h4;
+ let t8;
+ let each_value = /*affiliates*/ ctx[0];
+ validate_each_argument(each_value);
+ let each_blocks = [];
+
+ for (let i = 0; i < each_value.length; i += 1) {
+ each_blocks[i] = create_each_block(get_each_context(ctx, each_value, i));
+ }
+
+ const block = {
+ c: function create() {
+ div1 = element("div");
+ div0 = element("div");
+ h1 = element("h1");
+ h1.textContent = "Affiliates";
+ t1 = space();
+ img = element("img");
+ t2 = space();
+ p = element("p");
+ p.textContent = "We affiliate with organizations and initiatives that align with our mission. Together, we are a united force driven by a shared worldview where there is no place for authoritarian exploitative systems, but where systems promoting equity and democracy thrive.";
+ t4 = space();
+ h3 = element("h3");
+ h3.textContent = "Our affiliates";
+ t6 = space();
+ h4 = element("h4");
+ h4.textContent = "Online";
+ t8 = space();
+
+ for (let i = 0; i < each_blocks.length; i += 1) {
+ each_blocks[i].c();
+ }
+
+ this.c = noop;
+ add_location(h1, file, 30, 8, 1006);
+ attr_dev(img, "id", "hands-img");
+ if (!src_url_equal(img.src, img_src_value = "/img/common/handshake.svg")) attr_dev(img, "src", img_src_value);
+ attr_dev(img, "alt", "hands");
+ add_location(img, file, 31, 8, 1035);
+ add_location(p, file, 32, 8, 1109);
+ add_location(h3, file, 33, 8, 1384);
+ add_location(h4, file, 34, 8, 1417);
+ attr_dev(div0, "id", "text-container");
+ add_location(div0, file, 29, 4, 971);
+ attr_dev(div1, "id", "container");
+ add_location(div1, file, 27, 0, 884);
+ },
+ l: function claim(nodes) {
+ throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option");
+ },
+ m: function mount(target, anchor) {
+ insert_dev(target, div1, anchor);
+ append_dev(div1, div0);
+ append_dev(div0, h1);
+ append_dev(div0, t1);
+ append_dev(div0, img);
+ append_dev(div0, t2);
+ append_dev(div0, p);
+ append_dev(div0, t4);
+ append_dev(div0, h3);
+ append_dev(div0, t6);
+ append_dev(div0, h4);
+ append_dev(div0, t8);
+
+ for (let i = 0; i < each_blocks.length; i += 1) {
+ each_blocks[i].m(div0, null);
+ }
+ },
+ p: function update(ctx, [dirty]) {
+ if (dirty & /*affiliates*/ 1) {
+ each_value = /*affiliates*/ ctx[0];
+ validate_each_argument(each_value);
+ let i;
+
+ for (i = 0; i < each_value.length; i += 1) {
+ const child_ctx = get_each_context(ctx, each_value, i);
+
+ if (each_blocks[i]) {
+ each_blocks[i].p(child_ctx, dirty);
+ } else {
+ each_blocks[i] = create_each_block(child_ctx);
+ each_blocks[i].c();
+ each_blocks[i].m(div0, null);
+ }
+ }
+
+ for (; i < each_blocks.length; i += 1) {
+ each_blocks[i].d(1);
+ }
+
+ each_blocks.length = each_value.length;
+ }
+ },
+ i: noop,
+ o: noop,
+ d: function destroy(detaching) {
+ if (detaching) detach_dev(div1);
+ destroy_each(each_blocks, detaching);
+ }
+ };
+
+ dispatch_dev("SvelteRegisterBlock", {
+ block,
+ id: create_fragment.name,
+ type: "component",
+ source: "",
+ ctx
+ });
+
+ return block;
+}
+
+function instance($$self, $$props, $$invalidate) {
+ let { $$slots: slots = {}, $$scope } = $$props;
+ validate_slots('affiliates-component', slots, []);
+
+ let affiliates = [
+ {
+ name: "Gaia's Fall",
+ type: "a place to discuss and organize",
+ link: "https://discord.libsoc.org",
+ description: "Gaia's Fall is a server that promotes Solarpunk ideals, environmentalism, anarchism, and anti-capitalism. We encourage civil debates, discussions of theories and possibilities, and the creation of communities focused on shaping a better world. It is our official Discord server where we organize and work together.",
+ logo: "gaias_fall"
+ }
+ ];
+
+ onMount(() => {
+
+ });
+
+ const writable_props = [];
+
+ Object.keys($$props).forEach(key => {
+ if (!~writable_props.indexOf(key) && key.slice(0, 2) !== '$$' && key !== 'slot') console.warn(` was created with unknown prop '${key}'`);
+ });
+
+ $$self.$capture_state = () => ({ onMount, affiliates });
+
+ $$self.$inject_state = $$props => {
+ if ('affiliates' in $$props) $$invalidate(0, affiliates = $$props.affiliates);
+ };
+
+ if ($$props && "$$inject" in $$props) {
+ $$self.$inject_state($$props.$$inject);
+ }
+
+ return [affiliates];
+}
+
+class Affiliates_component extends SvelteElement {
+ constructor(options) {
+ super();
+ this.shadowRoot.innerHTML = ``;
+
+ init(
+ this,
+ {
+ target: this.shadowRoot,
+ props: attribute_to_object(this.attributes),
+ customElement: true
+ },
+ instance,
+ create_fragment,
+ safe_not_equal,
+ {},
+ null
+ );
+
+ if (options) {
+ if (options.target) {
+ insert_dev(options.target, this, options.anchor);
+ }
+ }
+ }
+}
+
+customElements.define("affiliates-component", Affiliates_component);
+
+export { Affiliates_component as default };
diff --git a/Server/public/js/components/communities-component.js b/Server/public/js/components/communities-component.js
index 60d74b6..0bb9466 100644
--- a/Server/public/js/components/communities-component.js
+++ b/Server/public/js/components/communities-component.js
@@ -1 +1 @@
-import{S as t,i as e,a as n,b as o,s as i,e as a,c as s,n as m,d as r,f as c,k as l,g as h,h as u,j as d,o as g,t as p}from"./index-95aedb1a.js";import{communities as f,addMarkersCommunities as b}from"../../../../../../../../../js/communities.js";import"../../../../../../../../../js/components/map-component.js";function w(t,e,n){const o=t.slice();return o[1]=e[n],o}function x(t){let e,n,i,c,l,d,g,f,b,w,x,v,y,C,j,k,E,z,D=t[1].location[0]+"",L=t[1].status+"",M=t[1].members+"",R=t[1].contact[1]+"";return{c(){e=a("div"),n=a("p"),i=a("b"),i.textContent="Location: ",c=p(D),l=s(),d=a("p"),g=a("b"),g.textContent="Status: ",f=p(L),b=s(),w=a("p"),x=a("b"),x.textContent="Members: ",v=p(M),y=s(),C=a("p"),j=a("b"),j.textContent="Contact: ",k=a("a"),E=p(R),z=s(),r(k,"href",t[1].contact[0]),r(k,"target",";_blank;"),r(k,"rel","noreferrer"),r(e,"class","location-info")},m(t,a){o(t,e,a),h(e,n),h(n,i),h(n,c),h(e,l),h(e,d),h(d,g),h(d,f),h(e,b),h(e,w),h(w,x),h(w,v),h(e,y),h(e,C),h(C,j),h(C,k),h(k,E),h(e,z)},p:m,d(t){t&&u(e)}}}function v(t){let e,n,i,g,p,b,v,y,C,j,k,E,z,D,L,M=f,R=[];for(let e=0;e{})),[function(t){let e=t([51.505,-.09],3);b(e)}]}class C extends t{constructor(t){super(),this.shadowRoot.innerHTML="",e(this,{target:this.shadowRoot,props:n(this.attributes),customElement:!0},y,v,i,{},null),t&&t.target&&o(t.target,this,t.anchor)}}customElements.define("communities-component",C);export{C as default};
+import{S as t,i as n,a as o,b as e,s as i,e as m,n as a,d as s,c as r,o as c,f as l,t as g,g as p,h,j as u,k as d,l as f,m as b,p as x}from"./index-ce8c147b.js";import{w as j}from"./index-f2dbf8ff.js";import{communities as v,addMarkersCommunities as w}from"../../../../../../../../../js/communities.js";import{loadLocaleContent as k,getLocale as y}from"../../../../../../../../../js/libraries/serverTools.js";import"../../../../../../../../../js/components/map-component.js";function z(t,n,o){const e=t.slice();return e[6]=n[o],e}function D(t){let n,o,i,m,a,r,c,j,w,k,y,D,O,R,T,A,C,H,L,M,N=t[0].heading+"",S=t[0].p1+"",_=t[0].subheading1+"",q=t[0].subheading2+"",B=v,F=[];for(let n=0;no(0,e=t))),k(a,"communities-component",i,(t=>y(m,t))),c((()=>{}));return[e,i,m,a,s,t=>s(t,e,m)]}class T extends t{constructor(t){super(),this.shadowRoot.innerHTML="",n(this,{target:this.shadowRoot,props:o(this.attributes),customElement:!0},R,O,i,{},null),t&&t.target&&e(t.target,this,t.anchor)}}customElements.define("communities-component",T);export{T as default};
diff --git a/Server/public/js/components/cookies-dialog.js b/Server/public/js/components/cookies-dialog.js
index 3cd1ef2..ad6ed7a 100644
--- a/Server/public/js/components/cookies-dialog.js
+++ b/Server/public/js/components/cookies-dialog.js
@@ -1 +1 @@
-import{S as e,i as s,a as t,b as o,s as i,e as a,n as r,d as n,h as c,o as d}from"./index-95aedb1a.js";function p(e){let s;return{c(){s=a("div"),s.innerHTML="
We use cookies to improve your experience, personalise your content and analyse site usage. By clicking “OK”, you agree to the use of cookies.
",this.c=r,n(s,"id","wrapper")},m(e,t){o(e,s,t)},p:r,i:r,o:r,d(e){e&&c(s)}}}function u(e){return d((()=>{})),[]}class h extends e{constructor(e){super(),this.shadowRoot.innerHTML="",s(this,{target:this.shadowRoot,props:t(this.attributes),customElement:!0},u,p,i,{},null),e&&e.target&&o(e.target,this,e.anchor)}}customElements.define("cookies-dialog",h);export{h as default};
+import{S as e,i as s,a as t,b as o,s as i,f as a,n as r,h as n,d as c,o as d}from"./index-ce8c147b.js";function p(e){let s;return{c(){s=a("div"),s.innerHTML="
We use cookies to improve your experience, personalise your content and analyse site usage. By clicking “OK”, you agree to the use of cookies.
",this.c=r,n(s,"id","wrapper")},m(e,t){o(e,s,t)},p:r,i:r,o:r,d(e){e&&c(s)}}}function u(e){return d((()=>{})),[]}class h extends e{constructor(e){super(),this.shadowRoot.innerHTML="",s(this,{target:this.shadowRoot,props:t(this.attributes),customElement:!0},u,p,i,{},null),e&&e.target&&o(e.target,this,e.anchor)}}customElements.define("cookies-dialog",h);export{h as default};
diff --git a/Server/public/js/components/cooperatives-component.js b/Server/public/js/components/cooperatives-component.js
index 92559e1..f2bdeb7 100644
--- a/Server/public/js/components/cooperatives-component.js
+++ b/Server/public/js/components/cooperatives-component.js
@@ -1 +1 @@
-import{S as t,i as e,a as o,b as n,s as i,e as r,c as a,n as s,d as c,f as m,k as l,g as p,h as g,j as h,o as d,t as f}from"./index-95aedb1a.js";import{coops as u,addMarkersCoops as b}from"../../../../../../../../../js/coops.js";import"../../../../../../../../../js/components/map-component.js";function x(t,e,o){const n=t.slice();return n[1]=e[o],n}function w(t){let e,o,i,m,l,h,d,u,b,x,w,v,k,C,y,j,W,E,z,D,L,M,R,S,T,_,A,B,H,N,O,q,F,G,I,J,K,P,Q,U,V,X,Y,Z,$=t[1].name+"",tt=t[1].location[0]+"",et=t[1].market+"",ot=t[1].workers+"",nt=t[1].status+"",it=t[1].website+"",rt=t[1].contact[1]+"",at=t[1].description+"";return{c(){e=r("div"),o=r("div"),i=r("div"),m=r("p"),l=r("b"),l.textContent="Name: ",h=f($),d=a(),u=r("p"),b=r("b"),b.textContent="Location: ",x=f(tt),w=a(),v=r("p"),k=r("b"),k.textContent="Market: ",C=f(et),y=a(),j=r("p"),W=r("b"),W.textContent="Workers: ",E=f(ot),z=a(),D=r("p"),L=r("b"),L.textContent="Status: ",M=f(nt),R=a(),S=r("p"),T=r("b"),T.textContent="Website: ",_=r("a"),A=f(it),B=a(),H=r("p"),N=r("b"),N.textContent="Contact: ",O=r("a"),q=f(rt),F=a(),G=r("picture"),I=r("source"),J=a(),K=r("source"),P=a(),Q=r("img"),U=a(),V=r("p"),X=r("b"),X.textContent="Description: ",Y=f(at),Z=a(),c(_,"href","https://www."+t[1].website),c(_,"target","_blank"),c(_,"rel","noreferrer"),c(O,"href",t[1].contact[0]),c(O,"target",";_blank;"),c(O,"rel","noreferrer"),c(I,"srcset","/img/coops/"+t[1].logo+".webp"),c(K,"srcset","/img/coops/"+t[1].logo+".png"),c(Q,"class","coop-logo"),c(Q,"alt","logo"),c(o,"class","img-general-info"),c(e,"class","location-info")},m(t,r){n(t,e,r),p(e,o),p(o,i),p(i,m),p(m,l),p(m,h),p(i,d),p(i,u),p(u,b),p(u,x),p(i,w),p(i,v),p(v,k),p(v,C),p(i,y),p(i,j),p(j,W),p(j,E),p(i,z),p(i,D),p(D,L),p(D,M),p(i,R),p(i,S),p(S,T),p(S,_),p(_,A),p(i,B),p(i,H),p(H,N),p(H,O),p(O,q),p(o,F),p(o,G),p(G,I),p(G,J),p(G,K),p(G,P),p(G,Q),p(e,U),p(e,V),p(V,X),p(V,Y),p(e,Z)},p:s,d(t){t&&g(e)}}}function v(t){let e,o,i,d,f,b,v,k,C,y,j,W,E,z,D,L,M,R=u,S=[];for(let e=0;e{})),[function(t){let e=t([51.505,-.09],3);b(e)}]}class C extends t{constructor(t){super(),this.shadowRoot.innerHTML="",e(this,{target:this.shadowRoot,props:o(this.attributes),customElement:!0},k,v,i,{},null),t&&t.target&&n(t.target,this,t.anchor)}}customElements.define("cooperatives-component",C);export{C as default};
+import{S as t,i as e,a as o,b as n,s as i,e as a,n as r,d as s,c,o as m,f as l,t as p,g,h,j as d,k as f,l as b,m as u,p as w}from"./index-ce8c147b.js";import{w as x}from"./index-f2dbf8ff.js";import{coops as v,addMarkersCoops as j}from"../../../../../../../../../js/coops.js";import{loadLocaleContent as k,getLocale as y}from"../../../../../../../../../js/libraries/serverTools.js";import"../../../../../../../../../js/components/map-component.js";function z(t,e,o){const n=t.slice();return n[6]=e[o],n}function D(t){let e,o,i,a,r,c,m,x,j,k,y,D,O,R,T,_,A,C,H,L,M,N,S,q=t[0].heading+"",B=t[0].p1+"",F=t[0].p2+"",G=t[0].subheading1+"",I=t[0].subheading2+"",J=v,K=[];for(let e=0;eo(0,n=t))),k(r,"cooperatives-component",i,(t=>y(a,t))),m((()=>{}));return[n,i,a,r,s,t=>s(t,n,a)]}class T extends t{constructor(t){super(),this.shadowRoot.innerHTML="",e(this,{target:this.shadowRoot,props:o(this.attributes),customElement:!0},R,O,i,{},null),t&&t.target&&n(t.target,this,t.anchor)}}customElements.define("cooperatives-component",T);export{T as default};
diff --git a/Server/public/js/components/footer-component.js b/Server/public/js/components/footer-component.js
index 28abfbc..9a4db39 100644
--- a/Server/public/js/components/footer-component.js
+++ b/Server/public/js/components/footer-component.js
@@ -1 +1 @@
-import{S as t,i as e,a,b as r,s as n,e as s,c as o,n as i,d as c,g as l,p as h,h as d}from"./index-95aedb1a.js";function p(t){let e,a,n,p,g,m,f,u,w;return{c(){e=s("footer"),a=s("div"),n=s("div"),n.innerHTML='
near you and join to help make a world we both envision a reality.
',M=l(),N=s("p"),N.innerHTML='None of them near you? Not a problem! Join our WhatsApp group or Discord server and we will help you start your own.',T=l(),U=s("map-component"),this.c=m,p(f.src,b="/img/common/join-group.svg")||c(f,"src","/img/common/join-group.svg"),c(f,"id","join-group"),c(f,"alt","join group"),c(w,"id","condition-list"),c(A,"id","value-proposition-list"),c(J,"id","call-to-action-list"),h(U,"id","map"),h(U,"callback",o[0]),c(r,"id","text-container"),c(i,"id","container")},m(o,n){e(o,t,n),e(o,i,n),u(i,r),u(r,a),u(r,g),u(r,f),u(r,y),u(r,w),u(r,v),u(r,j),u(r,x),u(r,A),u(r,k),u(r,C),u(r,H),u(r,J),u(r,M),u(r,N),u(r,T),u(r,U)},p:m,i:m,o:m,d(o){o&&d(t),o&&d(i)}}}function v(o,t,i){return g((()=>{})),[function(o){let t=o([51.505,-.09],3);f(t),b(t),y(t)}]}class j extends o{constructor(o){super(),this.shadowRoot.innerHTML="",t(this,{target:this.shadowRoot,props:i(this.attributes),customElement:!0},v,w,a,{mapCallback:0},null),o&&(o.target&&e(o.target,this,o.anchor),o.props&&(this.$set(o.props),r()))}static get observedAttributes(){return["mapCallback"]}get mapCallback(){return this.$$.ctx[0]}}customElements.define("join-us-component",j);export{j as default};
+import{S as o,i as t,a as i,b as r,s as n,e,n as a,d as s,c as m,o as l,f as c,t as p,g as u,j as d,h as g,k as h,l as f,m as v}from"./index-ce8c147b.js";import{addMarkersGroups as b}from"../../../../../../../../../js/groups.js";import{addMarkersCoops as j}from"../../../../../../../../../js/coops.js";import{addMarkersCommunities as x}from"../../../../../../../../../js/communities.js";import{loadLocaleContent as y}from"../../../../../../../../../js/libraries/serverTools.js";import{w as P}from"./index-f2dbf8ff.js";import"../../../../../../../../../js/components/map-component.js";function w(o){let t,i,n,e,a,m,l,b,j,x,y,P,w,k,O,A,S,T,D,H,N,L,M,U,z,B,E,G,R,W,Y,_,C,J,K,Z,q,F,I,Q,V,X,$,oo,to,io,ro,no,eo,ao,so,mo,lo,co,po,uo,go,ho,fo,vo,bo,jo,xo,yo,Po,wo,ko,Oo,Ao,So,To,Do,Ho,No,Lo,Mo,Uo,zo,Bo=o[0].heading+"",Eo=o[0].condition1+"",Go=o[0].condition2+"",Ro=o[0].condition3+"",Wo=o[0].conditionsOutcome+"",Yo=o[0].subheading1+"",_o=o[0].valueProposition1+"",Co=o[0].valueProposition2+"",Jo=o[0].valueProposition3+"",Ko=o[0].valueProposition4+"",Zo=o[0].valueProposition5+"",qo=o[0].subheading2+"",Fo=o[0].findOur+"",Io=o[0].group+"",Qo=o[0].community+"",Vo=o[0].or+"",Xo=o[0].cooperative+"",$o=o[0].nearYou+"",ot=o[0].noneNear+"",tt=o[0].WhatsAppGroup+"",it=o[0].or+"",rt=o[0].DiscordServer+"",nt=o[0].helpStart+"";return{c(){t=c("div"),i=c("div"),n=c("h1"),e=p(Bo),a=u(),m=c("img"),b=u(),j=c("ol"),x=c("li"),y=p(Eo),P=u(),w=c("li"),k=p(Go),O=u(),A=c("li"),S=p(Ro),T=u(),D=c("p"),H=u(),N=c("h2"),L=p(Yo),M=u(),U=c("ol"),z=c("li"),B=p(_o),E=u(),G=c("li"),R=p(Co),W=u(),Y=c("li"),_=p(Jo),C=u(),J=c("li"),K=p(Ko),Z=u(),q=c("p"),F=p(Zo),I=u(),Q=c("h2"),V=p(qo),X=u(),$=c("div"),oo=c("p"),to=p(Fo),io=u(),ro=c("ol"),no=c("li"),eo=c("a"),ao=p(Io),so=p(","),mo=u(),lo=c("li"),co=c("a"),po=p(Qo),uo=u(),go=p(Vo),ho=u(),fo=c("li"),vo=c("a"),bo=p(Xo),jo=u(),xo=c("p"),yo=p($o),Po=u(),wo=c("p"),ko=p(ot),Oo=u(),Ao=c("a"),So=p(tt),To=u(),Do=p(it),Ho=u(),No=c("a"),Lo=p(rt),Mo=p(nt),Uo=u(),zo=c("map-component"),d(m.src,l="/img/common/join-group.svg")||g(m,"src","/img/common/join-group.svg"),g(m,"id","join-group"),g(m,"alt","join group"),g(j,"id","condition-list"),g(U,"id","value-proposition-list"),g(eo,"href","/groups"),g(co,"href","/communities"),g(vo,"href","/cooperatives"),g($,"id","call-to-action-list"),g(Ao,"href","https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh"),g(Ao,"target","_blank"),g(Ao,"rel","noreferrer"),g(No,"href","https://discord.gg/xAPZmyr8B6"),g(No,"target","_blank"),g(No,"rel","noreferrer"),h(zo,"id","map"),h(zo,"callback",o[3]),g(i,"id","text-container"),g(t,"id","container")},m(o,s){r(o,t,s),f(t,i),f(i,n),f(n,e),f(i,a),f(i,m),f(i,b),f(i,j),f(j,x),f(x,y),f(j,P),f(j,w),f(w,k),f(j,O),f(j,A),f(A,S),f(j,T),f(j,D),D.innerHTML=Wo,f(i,H),f(i,N),f(N,L),f(i,M),f(i,U),f(U,z),f(z,B),f(U,E),f(U,G),f(G,R),f(U,W),f(U,Y),f(Y,_),f(U,C),f(U,J),f(J,K),f(U,Z),f(U,q),f(q,F),f(i,I),f(i,Q),f(Q,V),f(i,X),f(i,$),f($,oo),f(oo,to),f($,io),f($,ro),f(ro,no),f(no,eo),f(eo,ao),f(no,so),f(ro,mo),f(ro,lo),f(lo,co),f(co,po),f(lo,uo),f(lo,go),f(ro,ho),f(ro,fo),f(fo,vo),f(vo,bo),f($,jo),f($,xo),f(xo,yo),f(i,Po),f(i,wo),f(wo,ko),f(wo,Oo),f(wo,Ao),f(Ao,So),f(wo,To),f(wo,Do),f(wo,Ho),f(wo,No),f(No,Lo),f(wo,Mo),f(i,Uo),f(i,zo)},p(o,t){1&t&&Bo!==(Bo=o[0].heading+"")&&v(e,Bo),1&t&&Eo!==(Eo=o[0].condition1+"")&&v(y,Eo),1&t&&Go!==(Go=o[0].condition2+"")&&v(k,Go),1&t&&Ro!==(Ro=o[0].condition3+"")&&v(S,Ro),1&t&&Wo!==(Wo=o[0].conditionsOutcome+"")&&(D.innerHTML=Wo),1&t&&Yo!==(Yo=o[0].subheading1+"")&&v(L,Yo),1&t&&_o!==(_o=o[0].valueProposition1+"")&&v(B,_o),1&t&&Co!==(Co=o[0].valueProposition2+"")&&v(R,Co),1&t&&Jo!==(Jo=o[0].valueProposition3+"")&&v(_,Jo),1&t&&Ko!==(Ko=o[0].valueProposition4+"")&&v(K,Ko),1&t&&Zo!==(Zo=o[0].valueProposition5+"")&&v(F,Zo),1&t&&qo!==(qo=o[0].subheading2+"")&&v(V,qo),1&t&&Fo!==(Fo=o[0].findOur+"")&&v(to,Fo),1&t&&Io!==(Io=o[0].group+"")&&v(ao,Io),1&t&&Qo!==(Qo=o[0].community+"")&&v(po,Qo),1&t&&Vo!==(Vo=o[0].or+"")&&v(go,Vo),1&t&&Xo!==(Xo=o[0].cooperative+"")&&v(bo,Xo),1&t&&$o!==($o=o[0].nearYou+"")&&v(yo,$o),1&t&&ot!==(ot=o[0].noneNear+"")&&v(ko,ot),1&t&&tt!==(tt=o[0].WhatsAppGroup+"")&&v(So,tt),1&t&&it!==(it=o[0].or+"")&&v(Do,it),1&t&&rt!==(rt=o[0].DiscordServer+"")&&v(Lo,rt),1&t&&nt!==(nt=o[0].helpStart+"")&&v(Mo,nt)},d(o){o&&s(t)}}}function k(o){let t,i=0!=Object.keys(o[0]).length,n=i&&w(o);return{c(){n&&n.c(),t=e(),this.c=a},m(o,i){n&&n.m(o,i),r(o,t,i)},p(o,[r]){1&r&&(i=0!=Object.keys(o[0]).length),i?n?n.p(o,r):(n=w(o),n.c(),n.m(t.parentNode,t)):n&&(n.d(1),n=null)},i:a,o:a,d(o){n&&n.d(o),o&&s(t)}}}function O(o,t,i){let r,n,e=P({});return m(o,e,(o=>i(0,r=o))),y(e,"join-us-component",n),l((()=>{})),[r,n,e,function(o){let t=o([51.505,-.09],3);b(t),j(t),x(t)}]}class A extends o{constructor(o){super(),this.shadowRoot.innerHTML="",t(this,{target:this.shadowRoot,props:i(this.attributes),customElement:!0},O,k,n,{},null),o&&o.target&&r(o.target,this,o.anchor)}}customElements.define("join-us-component",A);export{A as default};
diff --git a/Server/public/js/components/landing-component.js b/Server/public/js/components/landing-component.js
index 3d0914d..12c321b 100644
--- a/Server/public/js/components/landing-component.js
+++ b/Server/public/js/components/landing-component.js
@@ -1 +1 @@
-import{S as i,i as e,a as t,b as o,s as n,e as a,n as r,d as s,h as m,o as c}from"./index-95aedb1a.js";function d(i){let e;return{c(){e=a("div"),e.innerHTML=' \n \n
We are people united around a singular cause: bringing down authoritarian exploitative systems represented by various forms of capitalism and replacing them with libertarian socialist systems, with the goal of creating a more equitable and democratic world.
\n
GROUPS
\n \n
We organize groups for the purposes of education, advocacy, and mutual aid. Our objective is to demonstrate to people how the current politico-economic systems detrimentally impact our well-being, present them with alternative approaches, and engage in mutual aid to alleviate the challenges of living under capitalism.
\n
COMMUNITIES
\n \n
We establish communities based on libertarian socialist principles, where communities have ownership of their land, houses, and the means of production as well as make decisions using direct democracy. We are gradually expanding our socialist world, one community at a time.
\n
COOPERATIVES
\n \n
We form worker cooperatives to finance the operations of our groups and communities. Recognizing that economic power influences political power, we consider the establishment of cooperatives to be one of the initial steps towards achieving socialism.
',this.c=r,l(s,"type","checkbox"),l(s,"id","side-menu"),l(m,"id","hamb"),l(m,"for","side-menu"),l(f,"id","logo-container"),l(f,"href","/"),l(b,"id","nav"),l(i,"id","navbar")},m(t,o){n(t,i,o),c(i,s),a[3](s),c(i,e),c(i,m),c(i,d),c(i,f),c(i,p),c(i,b),a[4](i),g||(v=u(s,"click",a[2]),g=!0)},p:r,i:r,o:r,d(s){s&&h(i),a[3](null),a[4](null),g=!1,v()}}}function p(a,i,s){let n,e;return m((()=>{})),[n,e,function(){n.checked?s(1,e.style.background="white",e):setTimeout((()=>{s(1,e.style.position="relative",e),s(1,e.style.background="",e),s(1,e.style.boxShadow="",e)}),510)},function(a){d[a?"unshift":"push"]((()=>{n=a,s(0,n)}))},function(a){d[a?"unshift":"push"]((()=>{e=a,s(1,e)}))}]}class b extends a{constructor(a){super(),this.shadowRoot.innerHTML="",i(this,{target:this.shadowRoot,props:s(this.attributes),customElement:!0},p,f,e,{},null),a&&a.target&&n(a.target,this,a.anchor)}}customElements.define("navbar-component",b);export{b as default};
+import{S as e,i as o,a as t,b as i,s as n,e as a,n as r,d as s,c as l,o as c,f as d,g as m,t as p,h,j as g,l as u,u as b,m as f,x as v,v as k}from"./index-ce8c147b.js";import{loadLocaleContent as w}from"../../../../../../../../../js/libraries/serverTools.js";import{w as x}from"./index-f2dbf8ff.js";function y(e){let o,t,n,a,r,l,c,k,w,x,y,j,z,T,E,H,L,M,N,S,C,O,R,U,I,X,q,A,B,D,F,G,J,K,P,Q,V,W,Y,Z,$,_,ee,oe,te,ie,ne,ae=e[3].orgName+"",re=e[3].manifesto+"",se=e[3].joinUs+"",le=e[3].groups+"",ce=e[3].communities+"",de=e[3].cooperatives+"",me=e[3].partners+"";return{c(){o=d("header"),t=d("input"),n=m(),a=d("label"),a.innerHTML='',r=m(),l=d("a"),c=d("img"),w=m(),x=d("span"),y=p(ae),j=m(),z=d("nav"),T=d("ul"),E=d("li"),H=d("a"),L=p(re),M=m(),N=d("li"),S=d("a"),C=p(se),O=m(),R=d("li"),U=d("a"),I=p(le),X=m(),q=d("li"),A=d("a"),B=p(ce),D=m(),F=d("li"),G=d("a"),J=p(de),K=m(),P=d("li"),Q=d("a"),V=p(me),W=m(),Y=d("li"),Z=d("button"),Z.innerHTML='',$=m(),_=d("div"),ee=d("button"),ee.textContent="English",oe=m(),te=d("button"),te.textContent="Русский",h(t,"type","checkbox"),h(t,"id","side-menu"),h(a,"id","hamb"),h(a,"for","side-menu"),g(c.src,k="img/common/flag.png")||h(c,"src","img/common/flag.png"),h(c,"id","navbar-logo"),h(c,"alt","logo"),h(x,"id","navbar-logo-text"),h(l,"id","logo-container"),h(l,"href","/"),h(H,"href","/manifesto"),h(S,"href","/join-us"),h(U,"href","/groups"),h(A,"href","/communities"),h(G,"href","/cooperatives"),h(Q,"href","/partners"),h(Y,"id","locales"),h(_,"id","locales-dropdown"),h(T,"id","menu"),h(z,"id","nav"),h(o,"id","navbar")},m(s,d){i(s,o,d),u(o,t),e[8](t),u(o,n),u(o,a),u(o,r),u(o,l),u(l,c),u(l,w),u(l,x),u(x,y),u(o,j),u(o,z),u(z,T),u(T,E),u(E,H),u(H,L),u(T,M),u(T,N),u(N,S),u(S,C),u(T,O),u(T,R),u(R,U),u(U,I),u(T,X),u(T,q),u(q,A),u(A,B),u(T,D),u(T,F),u(F,G),u(G,J),u(T,K),u(T,P),u(P,Q),u(Q,V),u(T,W),u(T,Y),u(Y,Z),u(T,$),u(T,_),u(_,ee),u(_,oe),u(_,te),e[11](_),e[12](o),ie||(ne=[b(t,"click",e[6]),b(Z,"click",e[7]),b(ee,"click",e[9]),b(te,"click",e[10])],ie=!0)},p(e,o){8&o&&ae!==(ae=e[3].orgName+"")&&f(y,ae),8&o&&re!==(re=e[3].manifesto+"")&&f(L,re),8&o&&se!==(se=e[3].joinUs+"")&&f(C,se),8&o&&le!==(le=e[3].groups+"")&&f(I,le),8&o&&ce!==(ce=e[3].communities+"")&&f(B,ce),8&o&&de!==(de=e[3].cooperatives+"")&&f(J,de),8&o&&me!==(me=e[3].partners+"")&&f(V,me)},d(t){t&&s(o),e[8](null),e[11](null),e[12](null),ie=!1,v(ne)}}}function j(e){let o,t=0!=Object.keys(e[3]).length,n=t&&y(e);return{c(){n&&n.c(),o=a(),this.c=r},m(e,t){n&&n.m(e,t),i(e,o,t)},p(e,[i]){8&i&&(t=0!=Object.keys(e[3]).length),t?n?n.p(e,i):(n=y(e),n.c(),n.m(o.parentNode,o)):n&&(n.d(1),n=null)},i:r,o:r,d(e){n&&n.d(e),e&&s(o)}}}function z(e){localStorage.setItem("locale",e),location.reload()}function T(e,o,t){let i,n,a,r,s,d=x({});l(e,d,(e=>t(3,i=e))),w(d,"navbar-component",s),c((()=>{}));return[n,a,r,i,s,d,function(){n.checked?t(1,a.style.background="white",a):setTimeout((()=>{t(1,a.style.position="relative",a),t(1,a.style.background="",a),t(1,a.style.boxShadow="",a)}),510)},function(){"block"==r.style.display?t(2,r.style.display="none",r):t(2,r.style.display="block",r)},function(e){k[e?"unshift":"push"]((()=>{n=e,t(0,n)}))},()=>z("en"),()=>z("ru"),function(e){k[e?"unshift":"push"]((()=>{r=e,t(2,r)}))},function(e){k[e?"unshift":"push"]((()=>{a=e,t(1,a)}))}]}class E extends e{constructor(e){super(),this.shadowRoot.innerHTML="",o(this,{target:this.shadowRoot,props:t(this.attributes),customElement:!0},T,j,n,{},null),e&&e.target&&i(e.target,this,e.anchor)}}customElements.define("navbar-component",E);export{E as default};
diff --git a/Server/public/js/components/pane-aligner.js b/Server/public/js/components/pane-aligner.js
index 4d1fb3a..21e615e 100644
--- a/Server/public/js/components/pane-aligner.js
+++ b/Server/public/js/components/pane-aligner.js
@@ -1 +1 @@
-import{S as e,i,a,b as t,s as n,e as r,c as s,n as d,d as o,g as l,h as m,u as p,o as h,r as g}from"./index-95aedb1a.js";import{debounce as c}from"../../../../../../../../../js/libraries/miscTools.js";function f(e){let i,a,n,p,h,g,c,f,u,b;return{c(){i=r("div"),a=r("div"),n=r("div"),p=r("div"),p.innerHTML='',h=s(),g=r("div"),g.innerHTML='',c=s(),f=r("div"),f.innerHTML='',u=s(),b=r("div"),b.innerHTML='',this.c=d,o(p,"id","sidebar-left"),o(p,"class","pane"),o(g,"id","sidebar-left2"),o(g,"class","pane"),o(n,"id","sidebars-left"),o(n,"class","sidebar"),o(f,"id","sidebar-right"),o(f,"class","pane sidebar"),o(b,"id","main-pane"),o(b,"class","pane"),o(a,"class","pane-container"),o(i,"id","root"),o(i,"class","pane-centering")},m(r,s){t(r,i,s),l(i,a),l(a,n),l(n,p),e[5](p),l(n,h),l(n,g),e[6](g),l(a,c),l(a,f),e[7](f),l(a,u),l(a,b),e[8](b),e[9](i)},p:d,i:d,o:d,d(a){a&&m(i),e[5](null),e[6](null),e[7](null),e[8](null),e[9](null)}}}function u(e,i,a){let t,n,r,s,d,o=null!=p("alignerParent")?p("alignerParent").switchView:void 0,l=!1,m=!1,f=!1;function u(){if(null!=t.parentNode){let e=t.parentNode.host.childNodes;if(0==e.length)setTimeout(u,50);else{let i=!1,n=t.parentNode.innerHTML;for(let a of e)"sidebar-left"!=a.slot||l?"sidebar-left2"!=a.slot||m?"sidebar-right"!=a.slot||f||(n=n.replace("#sidebar-right{display:none;","#sidebar-right{"),f=!0,i=!0):(n=n.replace("#sidebar-left2{display:none}",""),m=!0,i=!0):(n=n.replace("#sidebar-left{display:none}",""),l=!0,i=!0);null!=o&&(n=n.replace("1880px",o),i=!0),i&&a(0,t.parentNode.innerHTML=n,t)}}}return window.addEventListener("resize",c(u,100)),h((()=>{u()})),[t,n,r,s,d,function(e){g[e?"unshift":"push"]((()=>{r=e,a(2,r)}))},function(e){g[e?"unshift":"push"]((()=>{s=e,a(3,s)}))},function(e){g[e?"unshift":"push"]((()=>{d=e,a(4,d)}))},function(e){g[e?"unshift":"push"]((()=>{n=e,a(1,n)}))},function(e){g[e?"unshift":"push"]((()=>{t=e,a(0,t)}))}]}class b extends e{constructor(e){super(),this.shadowRoot.innerHTML="",i(this,{target:this.shadowRoot,props:a(this.attributes),customElement:!0},u,f,n,{},null),e&&e.target&&t(e.target,this,e.anchor)}}customElements.define("pane-aligner",b);export{b as default};
+import{S as i,i as e,a,b as t,s as n,f as r,g as s,n as d,h as o,l,d as m,w as p,o as h,v as g}from"./index-ce8c147b.js";import{debounce as c}from"../../../../../../../../../js/libraries/miscTools.js";function f(i){let e,a,n,p,h,g,c,f,u,b;return{c(){e=r("div"),a=r("div"),n=r("div"),p=r("div"),p.innerHTML='',h=s(),g=r("div"),g.innerHTML='',c=s(),f=r("div"),f.innerHTML='',u=s(),b=r("div"),b.innerHTML='',this.c=d,o(p,"id","sidebar-left"),o(p,"class","pane"),o(g,"id","sidebar-left2"),o(g,"class","pane"),o(n,"id","sidebars-left"),o(n,"class","sidebar"),o(f,"id","sidebar-right"),o(f,"class","pane sidebar"),o(b,"id","main-pane"),o(b,"class","pane"),o(a,"class","pane-container"),o(e,"id","root"),o(e,"class","pane-centering")},m(r,s){t(r,e,s),l(e,a),l(a,n),l(n,p),i[5](p),l(n,h),l(n,g),i[6](g),l(a,c),l(a,f),i[7](f),l(a,u),l(a,b),i[8](b),i[9](e)},p:d,i:d,o:d,d(a){a&&m(e),i[5](null),i[6](null),i[7](null),i[8](null),i[9](null)}}}function u(i,e,a){let t,n,r,s,d,o=null!=p("alignerParent")?p("alignerParent").switchView:void 0,l=!1,m=!1,f=!1;function u(){if(null!=t.parentNode){let i=t.parentNode.host.childNodes;if(0==i.length)setTimeout(u,50);else{let e=!1,n=t.parentNode.innerHTML;for(let a of i)"sidebar-left"!=a.slot||l?"sidebar-left2"!=a.slot||m?"sidebar-right"!=a.slot||f||(n=n.replace("#sidebar-right{display:none;","#sidebar-right{"),f=!0,e=!0):(n=n.replace("#sidebar-left2{display:none}",""),m=!0,e=!0):(n=n.replace("#sidebar-left{display:none}",""),l=!0,e=!0);null!=o&&(n=n.replace("1880px",o),e=!0),e&&a(0,t.parentNode.innerHTML=n,t)}}}return window.addEventListener("resize",c(u,100)),h((()=>{u()})),[t,n,r,s,d,function(i){g[i?"unshift":"push"]((()=>{r=i,a(2,r)}))},function(i){g[i?"unshift":"push"]((()=>{s=i,a(3,s)}))},function(i){g[i?"unshift":"push"]((()=>{d=i,a(4,d)}))},function(i){g[i?"unshift":"push"]((()=>{n=i,a(1,n)}))},function(i){g[i?"unshift":"push"]((()=>{t=i,a(0,t)}))}]}class b extends i{constructor(i){super(),this.shadowRoot.innerHTML="",e(this,{target:this.shadowRoot,props:a(this.attributes),customElement:!0},u,f,n,{},null),i&&i.target&&t(i.target,this,i.anchor)}}customElements.define("pane-aligner",b);export{b as default};
diff --git a/Server/public/js/components/partners-component.js b/Server/public/js/components/partners-component.js
new file mode 100644
index 0000000..4f952fb
--- /dev/null
+++ b/Server/public/js/components/partners-component.js
@@ -0,0 +1 @@
+import{S as e,i as t,a as n,b as i,s as o,e as a,n as r,d as s,c as m,o as l,f as c,t as g,g as d,h as p,j as h,l as f,m as u,p as b}from"./index-ce8c147b.js";import{w as x}from"./index-f2dbf8ff.js";import{loadLocaleContent as w,getLocale as v}from"../../../../../../../../../js/libraries/serverTools.js";import"../../../../../../../../../js/components/map-component.js";function y(e,t,n){const i=e.slice();return i[5]=t[n],i}function k(e){let t,n,o,a,r,m,l,x,w,v,k,z,D,F,G,E,O,R=e[0].heading+"",S=e[0].p1+"",T=e[0].subheading1+"",_=e[0].subheading2+"",A=e[4],C=[];for(let t=0;tn(0,i=e))),w(r,"partners-component",o,(e=>v(a,e)));return l((()=>{})),[i,o,a,r,[{name:"Gaia's Fall",type:{en:"a place to discuss and organize",ru:"место для общения и организации"},link:"https://discord.libsoc.org",description:{en:"Gaia's Fall is a server that promotes Solarpunk ideals, environmentalism, anarchism, and anti-capitalism. We encourage civil debates, discussions of theories and possibilities, and the creation of communities focused on shaping a better world. It is our official Discord server where we organize and work together.",ru:"Gaia's Fall — это сервер, который продвигает идеалы соларпанка, защиту окружающей среды, анархизм и антикапитализм. Мы поощряем гражданские дебаты, обсуждение теорий и возможностей, а также создание сообществ, сосредоточенных на формировании лучшего мира. Это наш официальный сервер Discord, на котором мы организуемся и работаем вместе"},logo:"gaias_fall"}]]}class F extends e{constructor(e){super(),this.shadowRoot.innerHTML="",t(this,{target:this.shadowRoot,props:n(this.attributes),customElement:!0},D,z,o,{},null),e&&e.target&&i(e.target,this,e.anchor)}}customElements.define("partners-component",F);export{F as default};
diff --git a/Server/public/js/components/select-component.js b/Server/public/js/components/select-component.js
index 96e24ca..dfe17e8 100644
--- a/Server/public/js/components/select-component.js
+++ b/Server/public/js/components/select-component.js
@@ -1 +1 @@
-import{S as t,i as e,a as r,b as i,l as o,s as n,e as l,n as s,d as a,h as d,o as u,t as c,c as h,f as p,m as f,g as m,p as v,q as b,j as g,r as w}from"./index-95aedb1a.js";import{px2rem as y,getTextWidth as x,getCanvasFont as $}from"../../../../../../../../../js/libraries/miscTools.js";function k(t,e,r){const i=t.slice();return i[26]=e[r],i[27]=e,i[28]=r,i}function z(t){let e,r,o,n,s,a,u=t[26]+"",p=t[28];const f=()=>t[14](e,p),g=()=>t[14](null,p);function w(){return t[15](t[28])}return{c(){e=l("button"),r=l("span"),o=c(u),n=h(),e.value=t[28]},m(t,l){i(t,e,l),m(e,r),m(r,o),m(e,n),f(),s||(a=v(e,"click",w),s=!0)},p(e,r){t=e,4&r&&u!==(u=t[26]+"")&&b(o,u),p!==t[28]&&(g(),p=t[28],f())},d(t){t&&d(e),g(),s=!1,a()}}}function L(t){let e,r,o,n,s,u,w,y,x,$,L,j=(null!=t[0]?t[0]:"")+"",M=t[2],T=[];for(let e=0;ee==t));r(6,n.innerHTML=t,n),r(5,p[i].style.display="none",p),r(11,c=i)}r(8,f+=1)}}function b(t,e){null!=t&&null!=e&&e[t]!=d&&(r(0,d=e[t]),r(8,f+=1))}function g(){"none"==o.style.display?r(4,o.style.display="initial",o):r(4,o.style.display="none",o)}function k(t,e){r(11,c=t),r(0,d=a[t]),null!=e&&null!=e&&e(t)}function z(){r(4,o.style.display="none",o)}function L(t,e){let r;if(null!=t&&null!=e){let i=getComputedStyle(t).getPropertyValue("--width");if(isNaN(i)||""==i){if(null==m)return m=new ResizeObserver((()=>L(t,e))),void m.observe(l);i=getComputedStyle(l).getPropertyValue("width"),r=y(parseFloat(i.slice(0,i.length-2)))}else r=parseFloat(i.slice(0,i.length-2));let o=[];for(let t=0;tr){let t=1.1*n+"rem";e.style.width=t;for(let r=0;r{n=t,r(6,n)}))}function M(t){w[t?"unshift":"push"]((()=>{l=t,r(7,l)}))}function T(t,e){w[t?"unshift":"push"]((()=>{p[e]=t,r(5,p)}))}u((()=>{h.addEventListener("focusout",z)}));const E=t=>k(t,s);function H(t){w[t?"unshift":"push"]((()=>{o=t,r(4,o)}))}function R(t){w[t?"unshift":"push"]((()=>{i=t,r(3,i)}))}return t.$$set=t=>{"callback"in t&&r(1,s=t.callback),"options"in t&&r(2,a=t.options),"value"in t&&r(0,d=t.value),"valueindex"in t&&r(11,c=t.valueindex)},t.$$.update=()=>{5&t.$$.dirty&&v(d,a),2052&t.$$.dirty&&b(c,a),24&t.$$.dirty&&L(i,o)},[d,s,a,i,o,p,n,l,f,g,k,c,j,M,T,E,H,R]}class T extends t{constructor(t){super(),this.shadowRoot.innerHTML="",e(this,{target:this.shadowRoot,props:r(this.attributes),customElement:!0},M,j,n,{callback:1,options:2,value:0,valueindex:11},null),t&&(t.target&&i(t.target,this,t.anchor),t.props&&(this.$set(t.props),o()))}static get observedAttributes(){return["callback","options","value","valueindex"]}get callback(){return this.$$.ctx[1]}set callback(t){this.$$set({callback:t}),o()}get options(){return this.$$.ctx[2]}set options(t){this.$$set({options:t}),o()}get value(){return this.$$.ctx[0]}set value(t){this.$$set({value:t}),o()}get valueindex(){return this.$$.ctx[11]}set valueindex(t){this.$$set({valueindex:t}),o()}}customElements.define("select-component",T);export{T as default};
+import{S as t,i as e,a as r,b as i,q as o,s as n,f as l,n as s,h as a,d,o as u,t as c,g as h,j as p,r as f,l as m,u as v,m as b,p as g,v as w}from"./index-ce8c147b.js";import{px2rem as y,getTextWidth as x,getCanvasFont as $}from"../../../../../../../../../js/libraries/miscTools.js";function k(t,e,r){const i=t.slice();return i[26]=e[r],i[27]=e,i[28]=r,i}function z(t){let e,r,o,n,s,a,u=t[26]+"",p=t[28];const f=()=>t[14](e,p),g=()=>t[14](null,p);function w(){return t[15](t[28])}return{c(){e=l("button"),r=l("span"),o=c(u),n=h(),e.value=t[28]},m(t,l){i(t,e,l),m(e,r),m(r,o),m(e,n),f(),s||(a=v(e,"click",w),s=!0)},p(e,r){t=e,4&r&&u!==(u=t[26]+"")&&b(o,u),p!==t[28]&&(g(),p=t[28],f())},d(t){t&&d(e),g(),s=!1,a()}}}function L(t){let e,r,o,n,s,u,w,y,x,$,L,j=(null!=t[0]?t[0]:"")+"",M=t[2],T=[];for(let e=0;ee==t));r(6,n.innerHTML=t,n),r(5,p[i].style.display="none",p),r(11,c=i)}r(8,f+=1)}}function b(t,e){null!=t&&null!=e&&e[t]!=d&&(r(0,d=e[t]),r(8,f+=1))}function g(){"none"==o.style.display?r(4,o.style.display="initial",o):r(4,o.style.display="none",o)}function k(t,e){r(11,c=t),r(0,d=a[t]),null!=e&&null!=e&&e(t)}function z(){r(4,o.style.display="none",o)}function L(t,e){let r;if(null!=t&&null!=e){let i=getComputedStyle(t).getPropertyValue("--width");if(isNaN(i)||""==i){if(null==m)return m=new ResizeObserver((()=>L(t,e))),void m.observe(l);i=getComputedStyle(l).getPropertyValue("width"),r=y(parseFloat(i.slice(0,i.length-2)))}else r=parseFloat(i.slice(0,i.length-2));let o=[];for(let t=0;tr){let t=1.1*n+"rem";e.style.width=t;for(let r=0;r{n=t,r(6,n)}))}function M(t){w[t?"unshift":"push"]((()=>{l=t,r(7,l)}))}function T(t,e){w[t?"unshift":"push"]((()=>{p[e]=t,r(5,p)}))}u((()=>{h.addEventListener("focusout",z)}));const E=t=>k(t,s);function H(t){w[t?"unshift":"push"]((()=>{o=t,r(4,o)}))}function R(t){w[t?"unshift":"push"]((()=>{i=t,r(3,i)}))}return t.$$set=t=>{"callback"in t&&r(1,s=t.callback),"options"in t&&r(2,a=t.options),"value"in t&&r(0,d=t.value),"valueindex"in t&&r(11,c=t.valueindex)},t.$$.update=()=>{5&t.$$.dirty&&v(d,a),2052&t.$$.dirty&&b(c,a),24&t.$$.dirty&&L(i,o)},[d,s,a,i,o,p,n,l,f,g,k,c,j,M,T,E,H,R]}class T extends t{constructor(t){super(),this.shadowRoot.innerHTML="",e(this,{target:this.shadowRoot,props:r(this.attributes),customElement:!0},M,j,n,{callback:1,options:2,value:0,valueindex:11},null),t&&(t.target&&i(t.target,this,t.anchor),t.props&&(this.$set(t.props),o()))}static get observedAttributes(){return["callback","options","value","valueindex"]}get callback(){return this.$$.ctx[1]}set callback(t){this.$$set({callback:t}),o()}get options(){return this.$$.ctx[2]}set options(t){this.$$set({options:t}),o()}get value(){return this.$$.ctx[0]}set value(t){this.$$set({value:t}),o()}get valueindex(){return this.$$.ctx[11]}set valueindex(t){this.$$set({valueindex:t}),o()}}customElements.define("select-component",T);export{T as default};
diff --git a/Server/public/js/components/switch-component.js b/Server/public/js/components/switch-component.js
index a777ece..85268f2 100644
--- a/Server/public/js/components/switch-component.js
+++ b/Server/public/js/components/switch-component.js
@@ -1 +1 @@
-import{S as t,i as e,a as s,b as c,l as a,s as i,e as r,c as o,n as h,d as n,g as l,p as d,h as p,v as u,o as b}from"./index-95aedb1a.js";import"../../../../../../../../../js/libraries/miscTools.js";function k(t){let e,s,a,i,b,k;return{c(){e=r("label"),s=r("input"),a=o(),i=r("span"),this.c=h,n(s,"type","checkbox"),n(i,"class","switch-span"),n(e,"class","switch")},m(r,o){c(r,e,o),l(e,s),s.checked=t[0],l(e,a),l(e,i),b||(k=[d(s,"change",t[4]),d(s,"click",t[1])],b=!0)},p(t,[e]){1&e&&(s.checked=t[0])},i:h,o:h,d(t){t&&p(e),b=!1,u(k)}}}function g(t,e,s){let{callback:c=null}=e,{checked:a=!1}=e;const i=()=>{setTimeout((()=>{null!=c?(s(0,a=!a),c()):i()}),100)};return b((()=>{})),t.$$set=t=>{"callback"in t&&s(2,c=t.callback),"checked"in t&&s(0,a=t.checked)},[a,function(){null!=c&&(s(0,a=!a),c())},c,i,function(){a=this.checked,s(0,a)}]}class m extends t{constructor(t){super(),this.shadowRoot.innerHTML="",e(this,{target:this.shadowRoot,props:s(this.attributes),customElement:!0},g,k,i,{callback:2,checked:0,toggle:3},null),t&&(t.target&&c(t.target,this,t.anchor),t.props&&(this.$set(t.props),a()))}static get observedAttributes(){return["callback","checked","toggle"]}get callback(){return this.$$.ctx[2]}set callback(t){this.$$set({callback:t}),a()}get checked(){return this.$$.ctx[0]}set checked(t){this.$$set({checked:t}),a()}get toggle(){return this.$$.ctx[3]}}customElements.define("switch-component",m);export{m as default};
+import{S as t,i as e,a as s,b as c,q as i,s as a,f as r,g as o,n as h,h as n,l,u as d,d as u,x as p,o as b}from"./index-ce8c147b.js";import"../../../../../../../../../js/libraries/miscTools.js";function k(t){let e,s,i,a,b,k;return{c(){e=r("label"),s=r("input"),i=o(),a=r("span"),this.c=h,n(s,"type","checkbox"),n(a,"class","switch-span"),n(e,"class","switch")},m(r,o){c(r,e,o),l(e,s),s.checked=t[0],l(e,i),l(e,a),b||(k=[d(s,"change",t[4]),d(s,"click",t[1])],b=!0)},p(t,[e]){1&e&&(s.checked=t[0])},i:h,o:h,d(t){t&&u(e),b=!1,p(k)}}}function g(t,e,s){let{callback:c=null}=e,{checked:i=!1}=e;const a=()=>{setTimeout((()=>{null!=c?(s(0,i=!i),c()):a()}),100)};return b((()=>{})),t.$$set=t=>{"callback"in t&&s(2,c=t.callback),"checked"in t&&s(0,i=t.checked)},[i,function(){null!=c&&(s(0,i=!i),c())},c,a,function(){i=this.checked,s(0,i)}]}class m extends t{constructor(t){super(),this.shadowRoot.innerHTML="",e(this,{target:this.shadowRoot,props:s(this.attributes),customElement:!0},g,k,a,{callback:2,checked:0,toggle:3},null),t&&(t.target&&c(t.target,this,t.anchor),t.props&&(this.$set(t.props),i()))}static get observedAttributes(){return["callback","checked","toggle"]}get callback(){return this.$$.ctx[2]}set callback(t){this.$$set({callback:t}),i()}get checked(){return this.$$.ctx[0]}set checked(t){this.$$set({checked:t}),i()}get toggle(){return this.$$.ctx[3]}}customElements.define("switch-component",m);export{m as default};
diff --git a/Server/public/js/coops.js b/Server/public/js/coops.js
index e437090..8fd8d9e 100644
--- a/Server/public/js/coops.js
+++ b/Server/public/js/coops.js
@@ -2,46 +2,88 @@ export let coops = [
{
logo: "chiron_logo",
name: "Chiron Health",
- location: ["Estonia, Kohtla-Järve",[59.40338782864918, 27.286240058760324]],
- market: "wellness and health",
+ location: [
+ {
+ en: "Estonia, Kohtla-Järve",
+ ru: "Эстония, Кохтла-Ярве"
+ },
+ [59.40338782864918, 27.286240058760324]],
+ market: {
+ en: "wellness and health",
+ ru: "благополучие и здоровье"
+ },
workers: 2,
- status: "launch in 2 months",
+ status: {
+ en: "launch in 2 months",
+ ru: "запуск через 2 месяца"
+ },
website: "chrn.health",
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"],
- description: "Chiron Health is a health platform providing courses and services on the topics of nutrition, exercise, sleep and mental wellbeing.",
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }],
+ description: {
+ en: "Chiron Health is a health platform providing courses and services on the topics of nutrition, exercise, sleep and mental wellbeing.",
+ ru: "Chiron Health — это платформа о здоровье, предлагающая курсы и услуги по вопросам питания, физических упражнений, сна и психического благополучия"
+ }
},
{
logo: "kuusk_logo",
name: "Kuusk",
- location: ["Estonia, Kohtla-Järve",[59.405466538976185, 27.289104862336302]],
- market: "herbal teas",
+ location: [
+ {
+ en: "Estonia, Kohtla-Järve",
+ ru: "Эстония, Кохтла-Ярве"
+ },
+ [59.405466538976185, 27.289104862336302]],
+ market: {
+ en: "herbal teas",
+ ru: "травяные чаи"
+ },
workers: 1,
- status: "launch in TBD months",
+ status: {
+ en: "launch in TBD months",
+ ru: "запуск через X месяцев"
+ },
website: "-",
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"],
- description: "Kuusk is an online store that sells herbal teas from exclusively local wild plants, as well as an online gathering course.",
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }],
+ description: {
+ en: "Kuusk is an online store that sells herbal teas from exclusively local wild plants, as well as an online gathering course.",
+ ru: "Kuusk — интернет-магазин, в котором продаются травяные чаи исключительно из местных дикорастущих растений, а также онлайн-курс по собирательству."
+ }
}
]
-export function addMarkersCoops(map) {
+export function addMarkersCoops(map,content,locale) {
for (let g of coops) {
let coordinates
let text = ""
for (let field in g) {
- let fieldText = "" + field[0].toUpperCase() + field.slice(1) + ": " + ""
+ let fieldText
+ if (field!="logo") {
+ fieldText = content[field] + ": "
+ }
if (field=="logo") {
text += "" + " "
}
else if (field=="contact") {
- text += fieldText + "" + g.contact[1] + "" + " "
+ text += fieldText + "" + g.contact[1][locale[0]] + "" + " "
}
else if (field=="website") {
text += fieldText + "" + g.website + "" + " "
}
else if (field=="location") {
- text += fieldText + g[field][0] + " "
+ text += fieldText + g[field][0][locale[0]] + " "
coordinates = g[field][1]
}
+ else if (field=="market" || field=="status" || field=="description") {
+ text += fieldText + g[field][locale[0]] + " "
+ }
else {
text += fieldText + g[field] + " "
}
diff --git a/Server/public/js/groups.js b/Server/public/js/groups.js
index 80140b5..f80af0c 100644
--- a/Server/public/js/groups.js
+++ b/Server/public/js/groups.js
@@ -1,37 +1,73 @@
export let groups = [
{
- location: ["Denmark, Copenhagen",[55.6840661150132, 12.557133959514688]],
+ location: [
+ {
+ en: "Denmark, Copenhagen",
+ ru: "Дания, Копенгаген"
+ },
+ [55.6840661150132, 12.557133959514688]],
members: 1,
- contact: ["https://discord.gg/xAPZmyr8B6","Discord invite link"]
+ contact: ["https://discord.gg/xAPZmyr8B6",
+ {
+ en: "WhatsApp invite link",
+ ru: "Discord ссылка"
+ }]
},
{
- location: ["Estonia, Kohtla-Järve",[59.40629447076191, 27.280605339416322]],
+ location: [
+ {
+ en: "Estonia, Kohtla-Järve",
+ ru: "Эстония, Кохтла-Ярве"
+ },
+ [59.40629447076191, 27.280605339416322]],
members: 3,
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"]
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }]
},
{
- location: ["Greece, Athens",[37.94877252621736, 23.677622972996158]],
+ location: [
+ {
+ en: "Greece, Athens",
+ ru: "Греция, Афины"
+ },
+ [37.94877252621736, 23.677622972996158]],
members: 1,
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"]
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }]
},
{
- location: ["Latvia, Riga",[56.94748425529816, 24.003027136431925]],
+ location: [
+ {
+ en: "Latvia, Riga",
+ ru: "Латвия, Рига"
+ },
+ [56.94748425529816, 24.003027136431925]],
members: 2,
- contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsApp invite link"]
+ contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh",
+ {
+ en: "WhatsApp invite link",
+ ru: "WhatsApp ссылка"
+ }]
},
]
-export function addMarkersGroups(map) {
+export function addMarkersGroups(map,content,locale) {
for (let g of groups) {
let coordinates
let text = ""
for (let field in g) {
- let fieldText = field[0].toUpperCase() + field.slice(1) + ": "
+ let fieldText = content[field] + ": "
if (field=="contact") {
- text += fieldText + "" + g.contact[1] + ""
+ text += fieldText + "" + g.contact[1][locale[0]] + ""
}
else if (field=="location") {
- text += fieldText + g[field][0] + " "
+ text += fieldText + g[field][0][locale[0]] + " "
coordinates = g[field][1]
}
else {
diff --git a/Server/public/js/libraries/serverTools.js b/Server/public/js/libraries/serverTools.js
index 65c2ae3..72037f0 100644
--- a/Server/public/js/libraries/serverTools.js
+++ b/Server/public/js/libraries/serverTools.js
@@ -62,3 +62,47 @@ export function sendText(route,data,callback) {
xhr.send(data)
}
+function onlyUnique(value, index, array) {
+ return array.indexOf(value) === index;
+}
+
+export function loadLocaleContent(content,componentName,loaded,callback) {
+ let langs
+ let localesAvailable
+ let locale = localStorage.getItem("locale")
+ if (locale==null) {
+ langs = navigator.languages.map(x => x.split("-")[0]).filter(onlyUnique)
+ }
+ getData("/locales/available.json",function(response) {
+ if (locale!=null) {
+ getData("/locales/" + locale + "/" + componentName + ".json" ,function(response) {
+ let parsed = JSON.parse(response)
+ content.set(parsed)
+ if (callback!=undefined) {
+ callback(locale)
+ }
+ loaded = 1
+ })
+ }
+ else {
+ localesAvailable = JSON.parse(response)
+ for (let lang of langs) {
+ if (localesAvailable.includes(lang)) {
+ getData("/locales/" + lang + "/" + componentName + ".json" ,function(response) {
+ let parsed = JSON.parse(response)
+ content.set(parsed)
+ if (callback!=undefined) {
+ callback(locale)
+ }
+ loaded = 1
+ })
+ }
+ break
+ }
+ }
+ })
+}
+
+export function getLocale(locale,lang) {
+ locale[0] = lang
+}
\ No newline at end of file
diff --git a/Server/public/locales/available.json b/Server/public/locales/available.json
new file mode 100644
index 0000000..29b6e3b
--- /dev/null
+++ b/Server/public/locales/available.json
@@ -0,0 +1 @@
+["en","ru"]
\ No newline at end of file
diff --git a/Server/public/locales/en/communities-component.json b/Server/public/locales/en/communities-component.json
new file mode 100644
index 0000000..9f43b00
--- /dev/null
+++ b/Server/public/locales/en/communities-component.json
@@ -0,0 +1,10 @@
+{
+ "heading": "Communities",
+ "p1": "We establish libertarian socialist communities by buying land, housing and the means of production which are then owned by the members of these communities. There is no private property within the communities and, therefore, exploitation and suffering that comes with it. Decisions are made using direct democracy with a focus on consensus, ensuring that each community member has power over decisions that affect their life. Communities try to establish their own cooperatives in order to finance their development becoming financially independent and sustainable, which allows for their survival and growth. Within communities the gift economy is utilized whenever possible. Each community is a small beacon of socialism within the dark capitalist world showing us how good life can be if only we achieve our goal.",
+ "subheading1": "Our Communities",
+ "subheading2": "Europe",
+ "location": "Location",
+ "status": "Status",
+ "members": "Members",
+ "contact": "Contact"
+}
\ No newline at end of file
diff --git a/Server/public/locales/en/cooperatives-component.json b/Server/public/locales/en/cooperatives-component.json
new file mode 100644
index 0000000..b4641c1
--- /dev/null
+++ b/Server/public/locales/en/cooperatives-component.json
@@ -0,0 +1,15 @@
+{
+ "heading": "Cooperatives",
+ "p1": "We establish worker cooperatives, which is a business model where employees own and control the enterprise. Each worker has a voice in decision-making, and profits are distributed based on individual contributions. This participatory structure fosters ownership, motivation, and job satisfaction, creating a more fulfilling work experience as well as challenging the wealth concentration in traditional capitalist businesses.",
+ "p2": "By focusing on employees' needs, our cooperatives create supportive and sustainable work environments that foster social cohesion and job security. We also prioritize the interests of local communities, taking a long-term perspective. With workers making decisions, we avoid harmful short-term profit-driven strategies and instead reinvest our profits, contributing to community development and resilience.",
+ "subheading1": "Our Cooperatives",
+ "subheading2": "Europe",
+ "name": "Name",
+ "location": "Location",
+ "market": "Market",
+ "status": "Status",
+ "workers": "Workers",
+ "contact": "Contact",
+ "description": "Description",
+ "website": "Website"
+}
\ No newline at end of file
diff --git a/Server/public/locales/en/footer-component.json b/Server/public/locales/en/footer-component.json
new file mode 100644
index 0000000..62fe3cb
--- /dev/null
+++ b/Server/public/locales/en/footer-component.json
@@ -0,0 +1,5 @@
+{
+ "contactUs": "Contact Us",
+ "inviteLink": "invite link",
+ "libertarianSocialists": "Libertarian Socialists"
+}
\ No newline at end of file
diff --git a/Server/public/locales/en/groups-component copy.json b/Server/public/locales/en/groups-component copy.json
new file mode 100644
index 0000000..7ebf7d1
--- /dev/null
+++ b/Server/public/locales/en/groups-component copy.json
@@ -0,0 +1,10 @@
+{
+ "heading": "Groups",
+ "p1": "We aim to raise awareness about the negative impact of current politico-economic systems on our well-being. Through education, community engagement, and analysis, we reveal the flaws and inequalities in capitalist societies. By highlighting these issues, we empower people to question the status quo and imagine fairer and more sustainable alternatives.",
+ "p2": "But our mission goes beyond theory. We engage in mutual aid and collective action to address immediate challenges within capitalism. Through mutual aid, we support each other by sharing resources, knowledge, and skills, fostering solidarity and resilience. Whether it's community gardens, food cooperatives, or support networks, our goal is to make life under capitalism more bearable and create pockets of resistance and alternatives within the system.",
+ "subheading1": "Our Groups",
+ "subheading2": "Europe",
+ "location": "Location",
+ "members": "Members",
+ "contact": "Contact"
+}
\ No newline at end of file
diff --git a/Server/public/locales/en/groups-component.json b/Server/public/locales/en/groups-component.json
new file mode 100644
index 0000000..6477a45
--- /dev/null
+++ b/Server/public/locales/en/groups-component.json
@@ -0,0 +1,10 @@
+{
+ "heading": "Groups",
+ "p1": "We aim to raise awareness about the negative impact of current politico-economic systems on our well-being. By highlighting these issues, we empower people to question the status quo and imagine fairer and more sustainable alternatives.",
+ "p2": "But our mission goes beyond theory. We engage in mutual aid and collective action to address immediate challenges within capitalism. Through mutual aid, we support each other by sharing resources, knowledge, and skills, fostering solidarity and resilience. Whether it's community gardens, food cooperatives, or support networks, our goal is to make life under capitalism more bearable and create pockets of resistance and alternatives within the system.",
+ "subheading1": "Our Groups",
+ "subheading2": "Europe",
+ "location": "Location",
+ "members": "Members",
+ "contact": "Contact"
+}
\ No newline at end of file
diff --git a/Server/public/locales/en/join-us-component.json b/Server/public/locales/en/join-us-component.json
new file mode 100644
index 0000000..f1ce788
--- /dev/null
+++ b/Server/public/locales/en/join-us-component.json
@@ -0,0 +1,24 @@
+{
+ "heading": "Join Us",
+ "condition1": "Are you against dictatorship and in favor of democracy?",
+ "condition2": "Are you against exploitation of one human being by another?",
+ "condition3": "Do you agree that we should work with each other and not against each other?",
+ "conditionsOutcome": "If the answer is YES, then you are already a libertarian socialist. JOIN US!",
+ "subheading1": "What You Will Get",
+ "valueProposition1": "A community that is always ready to help with all your troubles;",
+ "valueProposition2": "Access to the means of production of our cooperatives;",
+ "valueProposition3": "Products and services at the cost of production or even for free;",
+ "valueProposition4": "Monetary and non-monetary help with opening your own cooperative;",
+ "valueProposition5": "and much more!",
+ "subheading2": "Find Us",
+ "findOur": "Find our",
+ "group": "group",
+ "community": "community",
+ "or": "or",
+ "cooperative": "cooperative",
+ "nearYou": "near you and join to help make a world we both envision a reality.",
+ "noneNear": "None of them near you? Not a problem! Join our",
+ "WhatsAppGroup": "WhatsApp group",
+ "DiscordServer": "Discord server",
+ "helpStart": " and we will help you start your own."
+}
\ No newline at end of file
diff --git a/Server/public/locales/en/landing-component.json b/Server/public/locales/en/landing-component.json
new file mode 100644
index 0000000..9e2d2e7
--- /dev/null
+++ b/Server/public/locales/en/landing-component.json
@@ -0,0 +1,9 @@
+{
+ "top": "We are people united around a singular cause: bringing down authoritarian exploitative systems represented by various forms of capitalism and replacing them with libertarian socialist systems, with the goal of creating a more equitable and democratic world.",
+ "groupsTitle": "GROUPS",
+ "groupsText": "We organize groups for the purposes of education, advocacy, and mutual aid. Our objective is to demonstrate to people how the current politico-economic systems detrimentally impact our well-being, present them with alternative approaches, and engage in mutual aid to alleviate the challenges of living under capitalism.",
+ "communitiesTitle": "COMMUNITIES",
+ "communitiesText": "We establish communities based on libertarian socialist principles, where communities have ownership of their land, houses, and the means of production as well as make decisions using direct democracy. We are gradually expanding our socialist world, one community at a time.",
+ "cooperativesTitle": "COOPERATIVES",
+ "cooperativesText": "We form worker cooperatives to finance the operations of our groups and communities. Recognizing that economic power influences political power, we consider the establishment of cooperatives to be one of the initial steps towards achieving socialism."
+}
\ No newline at end of file
diff --git a/Server/public/locales/en/navbar-component.json b/Server/public/locales/en/navbar-component.json
new file mode 100644
index 0000000..275329b
--- /dev/null
+++ b/Server/public/locales/en/navbar-component.json
@@ -0,0 +1,9 @@
+{
+ "orgName": "Libertarian socialists",
+ "manifesto": "Manifesto",
+ "joinUs": "Join Us",
+ "groups": "Groups",
+ "communities": "Communities",
+ "cooperatives": "Cooperatives",
+ "partners": "Partners"
+}
\ No newline at end of file
diff --git a/Server/public/locales/en/partners-component.json b/Server/public/locales/en/partners-component.json
new file mode 100644
index 0000000..0914fee
--- /dev/null
+++ b/Server/public/locales/en/partners-component.json
@@ -0,0 +1,11 @@
+{
+ "heading": "Partners",
+ "p1": "We partner with organizations and initiatives that align with our mission. Together, we are a united force driven by a shared worldview where there is no place for authoritarian exploitative systems, but where systems promoting equity and democracy thrive.",
+ "subheading1": "Our Partners",
+ "subheading2": "Online",
+ "name": "Name",
+ "location": "Location",
+ "type": "Type",
+ "link": "Link",
+ "description": "Description"
+}
\ No newline at end of file
diff --git a/Server/public/locales/ru/communities-component.json b/Server/public/locales/ru/communities-component.json
new file mode 100644
index 0000000..e3d413c
--- /dev/null
+++ b/Server/public/locales/ru/communities-component.json
@@ -0,0 +1,10 @@
+{
+ "heading": "Коммуны",
+ "p1": "Мы создаем либертарные социалистические коммуны, покупая землю, жилье и средства производства, которые затем принадлежат членам этих коммун. В коммунах нет частной собственности и, следовательно, эксплуатации и страданий, которые с ней связаны. Решения принимаются с использованием прямой демократии с упором на консенсус, гарантируя, что каждый член сообщества имеет право принимать решения, влияющие на его жизнь. Сообщества пытаются создавать свои собственные кооперативы, чтобы финансировать свое развитие, становясь финансово независимыми и устойчивыми, что позволяет им выживать и расти. В сообществах по возможности используется экономика дарения. Каждая коммуна — это маленький маяк социализма в темном капиталистическом мире, показывающий нам, насколько хорошей может быть жизнь, если мы только достигнем своей цели.",
+ "subheading1": "Наши коммуны",
+ "subheading2": "Европа",
+ "location": "Локация",
+ "status": "Статус",
+ "members": "Участники",
+ "contact": "Контакт"
+}
\ No newline at end of file
diff --git a/Server/public/locales/ru/cooperatives-component copy.json b/Server/public/locales/ru/cooperatives-component copy.json
new file mode 100644
index 0000000..1acb08a
--- /dev/null
+++ b/Server/public/locales/ru/cooperatives-component copy.json
@@ -0,0 +1,15 @@
+{
+ "heading": "Cooperatives",
+ "p1": "We establish worker cooperatives that embody a transformative business model where employees own and control the enterprise. Each worker has a voice in decision-making, and profits are distributed based on individual contributions. This participatory structure fosters ownership, motivation, and job satisfaction, creating a more fulfilling work experience as well as challenging the wealth concentration in traditional capitalist businesses.",
+ "p2": "By focusing on employees' needs, our cooperatives create supportive and sustainable work environments that foster social cohesion and job security. We also prioritize the interests of local communities, taking a long-term perspective. With workers making decisions, we avoid harmful short-term profit-driven strategies and instead reinvest our profits, contributing to community development and resilience.",
+ "subheading1": "Our Cooperatives",
+ "subheading2": "Europe",
+ "name": "Name",
+ "location": "Location",
+ "market": "Market",
+ "status": "Status",
+ "workers": "workers",
+ "contact": "Contact",
+ "description": "Description",
+ "website": "Website"
+}
\ No newline at end of file
diff --git a/Server/public/locales/ru/cooperatives-component.json b/Server/public/locales/ru/cooperatives-component.json
new file mode 100644
index 0000000..5363c0c
--- /dev/null
+++ b/Server/public/locales/ru/cooperatives-component.json
@@ -0,0 +1,15 @@
+{
+ "heading": "Кооперативы",
+ "p1": "Мы создаем рабочие кооперативы, которые представляют собой бизнес-модель, в которой работники владеют предприятием и контролируют его. Каждый работник имеет право голоса при принятии решений, а прибыль распределяется на основе индивидуальных вкладов. Эта структура способствует мотивации и удовлетворенности работой, создавая более приятные условия труда, а также бросает вызов концентрации богатства в традиционных капиталистических предприятиях.",
+ "p2": "Сосредоточив внимание на потребностях сотрудников, наши кооперативы создают благоприятную и устойчивую рабочую среду, которая способствует социальной сплоченности и гарантиям занятости. Мы также уделяем первостепенное внимание интересам местных сообществ, ориентируясь на долгосрочную перспективу. Когда решения принимают работники, мы избегаем вредных краткосрочных стратегий, ориентированных на получение прибыли, и вместо этого реинвестируем нашу прибыль, способствуя развитию и устойчивости сообщества.",
+ "subheading1": "Наши кооперативы",
+ "subheading2": "Европа",
+ "name": "Название",
+ "location": "Локация",
+ "market": "Рынок",
+ "status": "Статус",
+ "workers": "Работники",
+ "contact": "Контакт",
+ "description": "Описание",
+ "website": "Вебсайт"
+}
\ No newline at end of file
diff --git a/Server/public/locales/ru/footer-component.json b/Server/public/locales/ru/footer-component.json
new file mode 100644
index 0000000..bb20acd
--- /dev/null
+++ b/Server/public/locales/ru/footer-component.json
@@ -0,0 +1,5 @@
+{
+ "contactUs": "Напиши нам",
+ "inviteLink": "ссылка",
+ "libertarianSocialists": "Либертарные Социалисты"
+}
\ No newline at end of file
diff --git a/Server/public/locales/ru/groups-component.json b/Server/public/locales/ru/groups-component.json
new file mode 100644
index 0000000..3670abb
--- /dev/null
+++ b/Server/public/locales/ru/groups-component.json
@@ -0,0 +1,10 @@
+{
+ "heading": "Группы",
+ "p1": "Мы стремимся повышать осведомленность о негативном влиянии нынешних политико-экономических систем на наше благополучие. Выдвигая на первый план эти проблемы, мы даем людям возможность поставить под сомнение статус-кво и представить себе более справедливые и устойчивые альтернативы.",
+ "p2": "Однако, наша миссия выходит за рамки теории. Мы участвуем во взаимопомощи и коллективных действиях для решения насущных проблем. Посредством взаимопомощи мы поддерживаем друг друга, делясь ресурсами, знаниями и навыками, укрепляя солидарность и устойчивость к негодам. Будь то общественные сады, продовольственные кооперативы или сети поддержки, наша цель — сделать жизнь при капитализме более терпимой и создать очаги сопротивления и альтернативы внутри системы.",
+ "subheading1": "Наши группы",
+ "subheading2": "Европа",
+ "location": "Локация",
+ "members": "Участники",
+ "contact": "Контакт"
+}
\ No newline at end of file
diff --git a/Server/public/locales/ru/join-us-component.json b/Server/public/locales/ru/join-us-component.json
new file mode 100644
index 0000000..991286d
--- /dev/null
+++ b/Server/public/locales/ru/join-us-component.json
@@ -0,0 +1,24 @@
+{
+ "heading": "Присоединяйся",
+ "condition1": "Ты против диктатуры и за демократию?",
+ "condition2": "Ты против эксплуатации одного человека другим?",
+ "condition3": "Ты согласен, что мы должны работать с друг другом, а не против друг друга?",
+ "conditionsOutcome": "Если твой ответ ДА, то ты уже лебиртарный социалист. Присоединяйся!",
+ "subheading1": "Что ты получишь",
+ "valueProposition1": "Сообщество, которое всегда готово прийти к тебе на помощь;",
+ "valueProposition2": "Доступ к средствам производства наших кооперативов;",
+ "valueProposition3": "Продукты и сервис за стоимость производства или бесплатно;",
+ "valueProposition4": "Денежная и другая помощь для открытия кооператива;",
+ "valueProposition5": "и многое другое!",
+ "subheading2": "Найди нас",
+ "findOur": "Найди нашу",
+ "group": "группу",
+ "community": "коммуну",
+ "or": "или",
+ "cooperative": "кооператив",
+ "nearYou": "около тебя и присоединяйся для того, чтобы сделать тот мир, о котором мы все мечтаем, реальностью.",
+ "noneNear": "Ни одного из них около тебя нет? Не проблема! Присоединяйся к нашей",
+ "WhatsAppGroup": "WhatsApp группе",
+ "DiscordServer": "Discord серверу",
+ "helpStart": " и мы поможем тебе создать создать свои."
+}
\ No newline at end of file
diff --git a/Server/public/locales/ru/landing-component.json b/Server/public/locales/ru/landing-component.json
new file mode 100644
index 0000000..57c1662
--- /dev/null
+++ b/Server/public/locales/ru/landing-component.json
@@ -0,0 +1,9 @@
+{
+ "top": "Мы люди, объединенные одной целью: свержение авторитарных эксплуататорских систем, представленных различными формами капитализма, и замена их либертарными социалистическими системами с целью создания более справедливого и демократического мира.",
+ "groupsTitle": "ГРУППЫ",
+ "groupsText": "Мы организуем группы в целях образования, защиты наших интересов и взаимопомощи. Наша цель — продемонстрировать людям, как нынешние политико-экономические системы пагубно влияют на наше благополучие, представить им альтернативные варианты и заниматься взаимопомощью, чтобы сделать жизнь при капитализме легче.",
+ "communitiesTitle": "КОММУНЫ",
+ "communitiesText": "Мы создаем коммуны на основе либертарных социалистических принципов, где члены коммун владеют своей землей, домами и средствами производства, а также принимают решения, используя прямую демократию. Мы постепенно, по одной коммуне, расширяем наш социалистический мир.",
+ "cooperativesTitle": "КООПЕРАТИВЫ",
+ "cooperativesText": "Мы формируем рабочие кооперативы для финансирования операций наших групп и коммун. Признавая, что экономическая власть влияет на политическую власть, мы считаем создание кооперативов одним из первых шагов на пути к социализму."
+}
\ No newline at end of file
diff --git a/Server/public/locales/ru/navbar-component.json b/Server/public/locales/ru/navbar-component.json
new file mode 100644
index 0000000..b8a1c54
--- /dev/null
+++ b/Server/public/locales/ru/navbar-component.json
@@ -0,0 +1,9 @@
+{
+ "orgName": "Либертарные социалисты",
+ "manifesto": "Манифест",
+ "joinUs": "Присоединяйся",
+ "groups": "Группы",
+ "communities": "Сообщества",
+ "cooperatives": "Кооперативы",
+ "partners": "Партнеры"
+}
\ No newline at end of file
diff --git a/Server/public/locales/ru/partners-component.json b/Server/public/locales/ru/partners-component.json
new file mode 100644
index 0000000..033efcc
--- /dev/null
+++ b/Server/public/locales/ru/partners-component.json
@@ -0,0 +1,11 @@
+{
+ "heading": "Партнеры",
+ "p1": "Мы сотрудничаем с организациями и инициативами, которые соответствуют нашей миссии. Вместе мы являемся единой силой, движимой общим мировоззрением, где нет места авторитарным эксплуататорским системам, но где процветают системы, продвигающие справедливость и демократию.",
+ "subheading1": "Наши партнеры",
+ "subheading2": "Онлайн",
+ "name": "Название",
+ "location": "Локация",
+ "type": "Тип",
+ "link": "Ссылка",
+ "description": "Описание"
+}
\ No newline at end of file
diff --git a/Server/routes.jl b/Server/routes.jl
index 853f65e..78ddb06 100644
--- a/Server/routes.jl
+++ b/Server/routes.jl
@@ -17,5 +17,5 @@ route("/cooperatives", BasicController.cooperatives, named = :cooperatives)
route("/communities", BasicController.communities, named = :communities)
-route("/affiliates", BasicController.affiliates, named = :affiliates)
+route("/partners", BasicController.partners, named = :partners)