Compare commits

...

19 Commits

Author SHA1 Message Date
Levente Orban
c1752efe4b chore: add support me section to README.md 2025-10-15 10:44:41 +02:00
Levente Orban
491d0020bd fix: remove dev omit 2025-10-10 21:58:23 +02:00
Levente Orban
5c1182dc66 fix: remove dev omit 2025-10-10 21:57:17 +02:00
Levente Orban
638b5ff1ca feat: add an option to remove the landing page 2025-10-10 21:37:50 +02:00
Levente Orban
069ca11917 feat: add an option to remove the landing page 2025-10-10 21:32:59 +02:00
Levente Orban
4675fa4623 feat: add an option to remove the landing page 2025-10-10 21:29:18 +02:00
Levente Orban
af88d6462b feat: add an option to remove the landing page 2025-10-10 18:32:28 +02:00
Levente Orban
ef6005e648 feat: add an option to remove the landing page 2025-10-10 18:27:58 +02:00
Levente Orban
11875b4a1e feat: add an option to remove the landing page 2025-10-10 18:11:18 +02:00
Levente Orban
22038f7779 feat: add an option to remove the landing page 2025-10-10 10:42:46 +02:00
Levente Orban
de2cb07a15 feat: add an option to remove the landing page 2025-10-10 10:37:52 +02:00
Levente Orban
ffc29b9c24 feat: add an option to remove the landing page 2025-10-10 10:29:32 +02:00
Levente Orban
4860b9439c feat: add an option to remove the landing page 2025-10-10 10:26:56 +02:00
Levente Orban
d10af13134 feat: add an option to remove the landing page 2025-10-10 10:17:06 +02:00
Levente Orban
c98260efec feat: add an option to remove the landing page 2025-10-10 10:06:34 +02:00
Levente Orban
a40b83c2b3 feat: i18n translation check
feat: i18n translation check
2025-09-29 10:58:35 +02:00
Levente Orban
bfb76aa268 feat: remove hu.json due the mistakes 2025-09-29 10:55:23 +02:00
Levente Orban
f8758d7b47 feat: add i18n translatation check 2025-09-29 08:42:15 +02:00
Levente Orban
f51f89e35f Merge pull request #28 from polaroi8d/fix/location-missing-field
fix: location missing field error
2025-09-25 09:33:56 +02:00
12 changed files with 549 additions and 14 deletions

View File

@@ -13,3 +13,5 @@ DATABASE_URL="postgres://cactoide:cactoide_password@localhost:5432/cactoide_data
APP_VERSION=latest
PORT=3000
HOSTNAME=0.0.0.0
PUBLIC_LANDING_INFO=true

View File

@@ -60,6 +60,8 @@ jobs:
with:
context: .
file: ./Dockerfile
build-args: |
PUBLIC_LANDING_INFO=${{ vars.PUBLIC_LANDING_INFO }}
push: true
platforms: linux/amd64,linux/arm64
cache-from: type=gha

View File

@@ -28,6 +28,8 @@ jobs:
- name: Build application
run: npm run build
env:
PUBLIC_LANDING_INFO: ${{ vars.PUBLIC_LANDING_INFO }}
- name: Test build output
run: |

View File

@@ -3,25 +3,27 @@ WORKDIR /app
COPY package*.json .
RUN npm ci
ARG PUBLIC_LANDING_INFO
ENV PUBLIC_LANDING_INFO=$PUBLIC_LANDING_INFO
COPY . .
RUN npm run build
RUN npm prune --production
FROM node:20-alpine
WORKDIR /app
COPY --from=builder /app/build build/
COPY --from=builder /app/node_modules node_modules/
COPY package.json .
EXPOSE 3000
ENV PORT 3000
ENV HOSTNAME "0.0.0.0"
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:3000/healthz || exit 1
EXPOSE 3000
CMD [ "node", "build" ]

View File

@@ -1,4 +1,4 @@
.PHONY: help build up db-only logs db-clean prune
.PHONY: help build up db-only logs db-clean prune i18n lint format
# Default target
help:
@@ -15,6 +15,7 @@ help:
@echo " make logs - Show logs from all services"
@echo " make db-clean - Stop & remove database container"
@echo " make prune - Remove all containers, images, and volumes"
@echo " make i18n - Validate translation files against messages.json"
@echo " make help - Show this help message"
# Build the Docker images
@@ -46,4 +47,21 @@ prune:
@echo "Cleaning up all Docker resources..."
docker compose down -v --rmi all
# Validate translation files
i18n:
@echo "Validating translation files..."
@if [ -n "$(FILE)" ]; then \
./scripts/i18n-check.sh $(FILE); \
else \
./scripts/i18n-check.sh; \
fi
lint:
@echo "Linting the project..."
npm run lint
format:
@echo "Formatting the project..."
npm run format

View File

@@ -55,8 +55,48 @@ Your app will be available at `http://localhost:5173`. You can use the Makefile
Use the `database/seed.sql` if you want to populate your database with dummy data.
### Options
#### 1. Landing page option
Supports a conditional landing page display based on the `PUBLIC_LANDING_INFO` environment variable. If you don't want to show your users the cactoide landing page, just use the `PUBLIC_LANDING_INFO=false` variable. This will automatically remove the landing home page and redirect users to the `/discover` page.
This is useful for:
- Creating a minimal discovery-focused experience
- Customizing the user journey based on deployment environment
#### 2. i18n
There is no proper i18n implemented, we have an `/i18n` folder with specific languages. To use an existing translation, just rename the language code JSON file to `messages.json` and you are ready to go. If you would like to add a new translation (which is really appreciated), just create a new `<language_code>.json` file and add the translations from the `messages.json`.
The project includes a translation validation script to ensure all translation files are complete and up-to-date with the source `messages.json` file.
```bash
# Validate all translation files
make i18n
```
```bash
# Validate a specific translation file
make i18n FILE=src/lib/i18n/it.json
```
### Support
Cactoide is an open-source project licensed under `AGPL-3.0`. Its growth and development are possible thanks to the amazing support of the community. This project is the result of many late nights, weekends, and after-hours work.
It isnt backed by a big company. Development depends on the support and generosity of people like you. With your help, I can focus more on making Cactoide even better and building tools that make coding more enjoyable.
You can support in a few ways:
- Send a one-time donation via [paypal.me/zenoazurben](paypal.me/zenoazurben)
- Reach me directly: leventeorb[@]gmail.com
If you enjoy using Cactoide, or if your business depends on it, please consider sponsoring its development. Your support keeps the project alive, improves it for everyone, and helps create educational content like blog posts and videos for the whole Cactoide community.
### License
This project is licensed under the MIT License - see the [LICENSE](./LICENSE) file for details.
This project is licensed under the `AGPL-3.0 License` - see the [LICENSE](./LICENSE) file for details.
**Made with ❤️ by @polaroi8d**

View File

@@ -1,7 +1,7 @@
{
"name": "cactoide",
"private": true,
"version": "0.0.3",
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite dev",

191
scripts/i18n-check.sh Executable file
View File

@@ -0,0 +1,191 @@
#!/bin/bash
# Translation validation script
# Compares a translation file against the source messages.json to find missing keys
set -e
# Colors for output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
# Default paths
SOURCE_FILE="src/lib/i18n/messages.json"
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
# Function to show usage
show_usage() {
echo "Usage: $0 [LANGUAGE_FILE]"
echo ""
echo "Validates a translation file against the source messages.json"
echo ""
echo "Arguments:"
echo " LANGUAGE_FILE Path to the translation file to validate (e.g., src/lib/i18n/it.json)"
echo ""
echo "Examples:"
echo " $0 src/lib/i18n/it.json"
echo " $0 src/lib/i18n/fr.json"
echo ""
echo "If no file is provided, it will check all .json files in src/lib/i18n/ except messages.json"
}
# Function to get all keys from a JSON file recursively
get_keys() {
local file="$1"
local prefix="$2"
# Use jq to extract all keys recursively
jq -r 'paths(scalars) as $p | $p | join(".")' "$file" | while read -r key; do
if [ -n "$prefix" ]; then
echo "${prefix}.${key}"
else
echo "$key"
fi
done
}
# Function to validate a single translation file
validate_file() {
local translation_file="$1"
local source_file="$2"
echo -e "${YELLOW}Validating: $translation_file${NC}"
echo "----------------------------------------"
# Check if files exist
if [ ! -f "$source_file" ]; then
echo -e "${RED}Error: Source file $source_file not found${NC}"
return 1
fi
if [ ! -f "$translation_file" ]; then
echo -e "${RED}Error: Translation file $translation_file not found${NC}"
return 1
fi
# Get all keys from source file
local source_keys
source_keys=$(get_keys "$source_file")
# Get all keys from translation file
local translation_keys
translation_keys=$(get_keys "$translation_file")
# Find missing keys
local missing_keys
missing_keys=$(comm -23 <(echo "$source_keys" | sort) <(echo "$translation_keys" | sort))
# Find extra keys (in translation but not in source)
local extra_keys
extra_keys=$(comm -13 <(echo "$source_keys" | sort) <(echo "$translation_keys" | sort))
# Count missing and extra keys
local missing_count
if [ -z "$missing_keys" ]; then
missing_count=0
else
missing_count=$(echo "$missing_keys" | wc -l | tr -d ' ')
fi
local extra_count
if [ -z "$extra_keys" ]; then
extra_count=0
else
extra_count=$(echo "$extra_keys" | wc -l | tr -d ' ')
fi
# Report results
if [ "$missing_count" -eq 0 ] && [ "$extra_count" -eq 0 ]; then
echo -e "${GREEN} Perfect! All keys match.${NC}"
return 0
fi
if [ "$missing_count" -gt 0 ]; then
echo -e "${RED} Missing $missing_count key(s) in translation:${NC}"
echo "$missing_keys" | while read -r key; do
echo -e " ${RED}$key${NC}"
done
echo ""
fi
if [ "$extra_count" -gt 0 ]; then
echo -e "${YELLOW} Extra $extra_count key(s) in translation (not in source):${NC}"
echo "$extra_keys" | while read -r key; do
echo -e " ${YELLOW}$key${NC}"
done
echo ""
fi
# Return error code if there are missing keys
if [ "$missing_count" -gt 0 ]; then
return 1
fi
return 0
}
# Main function
main() {
local translation_file="$1"
local source_file="$PROJECT_ROOT/$SOURCE_FILE"
local exit_code=0
# Change to project root directory
cd "$PROJECT_ROOT"
# If no file specified, check all translation files
if [ -z "$translation_file" ]; then
echo -e "${YELLOW}No file specified. Checking all translation files...${NC}"
echo ""
# Find all .json files in i18n directory except messages.json
local files
files=$(find src/lib/i18n -name "*.json" -not -name "messages.json" 2>/dev/null || true)
if [ -z "$files" ]; then
echo -e "${YELLOW}No translation files found in src/lib/i18n/${NC}"
return 0
fi
# Validate each file
echo "$files" | while read -r file; do
if [ -n "$file" ]; then
if ! validate_file "$file" "$source_file"; then
exit_code=1
fi
echo ""
fi
done
return $exit_code
fi
# Validate the specified file
if ! validate_file "$translation_file" "$source_file"; then
exit_code=1
fi
return $exit_code
}
# Check if jq is installed
if ! command -v jq &> /dev/null; then
echo -e "${RED}Error: jq is required but not installed.${NC}"
echo "Please install jq:"
echo " macOS: brew install jq"
echo " Ubuntu/Debian: sudo apt-get install jq"
echo " CentOS/RHEL: sudo yum install jq"
exit 1
fi
# Handle help flag
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
show_usage
exit 0
fi
# Run main function
main "$1"

View File

@@ -2,6 +2,7 @@
import { page } from '$app/stores';
import { goto } from '$app/navigation';
import { t } from '$lib/i18n/i18n.js';
import { PUBLIC_LANDING_INFO } from '$env/static/public';
// Check if current page is active
const isActive = (path: string): boolean => {
@@ -24,12 +25,14 @@
<!-- Navigation -->
<div class="md:flex md:items-center md:space-x-8">
{#if PUBLIC_LANDING_INFO !== 'false'}
<button
on:click={() => goto('/')}
class={isActive('/') ? 'text-violet-400' : 'cursor-pointer'}
>
{t('navigation.home')}
</button>
{/if}
<button
on:click={() => goto('/discover')}

264
src/lib/i18n/it.json Normal file
View File

@@ -0,0 +1,264 @@
{
"common": {
"required": "*",
"cancel": "Annulla",
"create": "Crea",
"edit": "Modifica",
"delete": "Elimina",
"view": "Visualizza",
"home": "Home",
"loading": "Caricamento...",
"error": "Errore",
"success": "Successo",
"name": "Nome",
"date": "Data",
"time": "Ora",
"location": "Luogo",
"locationType": "Tipo di Luogo",
"locationNone": "Nessuno",
"locationText": "Testo",
"locationMaps": "Google Maps",
"locationNoneDescription": "Nessun luogo specificato",
"locationTextDescription": "Inserisci il luogo come testo semplice.",
"locationMapsDescription": "Inserisci il link di Google Maps.",
"googleMapsUrl": "URL di Google Maps",
"googleMapsUrlPlaceholder": "https://maps.google.com/...",
"type": "Tipo",
"visibility": "Visibilità",
"public": "Pubblico",
"private": "Privato",
"limited": "Limitato",
"unlimited": "Illimitato",
"capacity": "Capacità",
"attendees": "Partecipanti",
"attendeeLimit": "Limite di Partecipanti",
"enterLimit": "Inserisci il limite",
"enterEventName": "Inserisci il nome dell'evento",
"enterLocation": "Inserisci il luogo",
"enterYourName": "Inserisci il tuo nome",
"enterNumberOfGuests": "Inserisci il numero di ospiti",
"yourName": "Il tuo nome",
"numberOfGuests": "Numero di Ospiti",
"addGuests": "Aggiungi ospiti",
"joinEvent": "Partecipa all'Evento",
"copyLink": "Copia Link",
"addToCalendar": "Aggiungi al Calendario",
"close": "Chiudi",
"closeModal": "Chiudi finestra",
"removeRSVP": "Rimuovi RSVP",
"updating": "Aggiornamento...",
"creating": "Creazione...",
"adding": "Aggiunta...",
"updateEvent": "Aggiorna Evento",
"createEvent": "Crea Evento",
"createNewEvent": "Crea Nuovo Evento",
"createYourFirstEvent": "Crea il Tuo Primo Evento",
"editEvent": "Modifica Evento",
"deleteEvent": "Elimina Evento",
"myEvents": "I Miei Eventi",
"discover": "Scopri",
"noEventsYet": "Ancora Nessun Evento",
"noPublicEventsYet": "Ancora Nessun Evento Pubblico",
"noAttendeesYet": "Ancora nessun partecipante",
"beFirstToJoin": "Sii il primo a partecipare!",
"eventNotFound": "Evento Non Trovato",
"eventIsFull": "L'Evento è Pieno!",
"maximumCapacityReached": "Raggiunta la capacità massima",
"eventLinkCopied": "Link dell'evento copiato negli appunti!",
"rsvpAddedSuccessfully": "RSVP aggiunto con successo!",
"removedRsvpSuccessfully": "RSVP rimosso con successo.",
"anUnexpectedErrorOccurred": "Si è verificato un errore inaspettato.",
"somethingWentWrong": "Qualcosa è andato storto. Riprova.",
"failedToAddRsvp": "Impossibile aggiungere RSVP",
"failedToRemoveRsvp": "Impossibile rimuovere RSVP",
"failedToDeleteEvent": "Impossibile eliminare l'evento",
"youMayNotHavePermission": "Potresti non avere il permesso di eliminare questo evento.",
"anErrorOccurredWhileDeleting": "Si è verificato un errore durante l'eliminazione dell'evento:",
"databaseUnreachable": "Database non raggiungibile.",
"eventIdNotFound": "EventId non trovato",
"eventNotExists": "Evento non trovato",
"failedToLoadEvent": "Impossibile caricare l'evento",
"nameAndUserIdRequired": "Nome e ID utente sono obbligatori",
"eventCapacityExceeded": "Capacità dell'evento superata. Stai cercando di aggiungere {guests} partecipanti (te compreso/a), ma rimangono solo {remaining} posti.",
"nameAlreadyExists": "Il nome esiste già per questo evento",
"missingOrEmptyFields": "Campi mancanti o vuoti: {fields}",
"dateCannotBeInPast": "La data non può essere nel passato.",
"limitMustBeAtLeast2": "Il limite deve essere almeno 2 per eventi limitati.",
"unauthorized": "Non autorizzato",
"youCanOnlyEditYourOwnEvents": "Puoi modificare solo i tuoi eventi",
"youDoNotHavePermissionToDelete": "Non hai il permesso di eliminare questo evento",
"eventIdAndUserIdRequired": "ID evento e ID utente sono obbligatori",
"guestsWillBeAddedAs": "Gli ospiti verranno aggiunti come \"Ospite #1 di {name}\", \"Ospite #2 di {name}\", ecc.",
"yourNamePlaceholder": "Il tuo nome",
"atTime": "alle"
},
"navigation": {
"home": "Home",
"discover": "Scopri",
"create": "Crea",
"myEvents": "I Miei Eventi"
},
"home": {
"title": "Cactoide - Il sito per gli RSVP",
"description": "Crea e gestisci gli RSVP degli eventi. Nessuna registrazione richiesta, condivisione immediata.",
"mainTitle": "Cactoide(ea)",
"subtitle": "La Piattaforma Definitiva per gli RSVP",
"tagline": "Crea, condividi e gestisci eventi senza intoppi.",
"whyCactoideTitle": "Perché Cactoide(ae)? 🌵",
"whyCactoideDescription": "Come il cactus, i grandi eventi fioriscono in ogni condizione se gestiti con cura. Cactoide(ae) ti aiuta a semplificare gli RSVP, coordinare in modo semplice e mantenere ogni dettaglio efficiente: così i tuoi incontri sono resilienti, vivaci e indimenticabili.",
"createEventNow": "Crea Evento Ora",
"discoverPublicEventsTitle": "Scopri Eventi Pubblici",
"discoverPublicEventsDescription": "Guarda cosa stanno pianificando gli altri e lasciati ispirare",
"browseAllPublicEvents": "Sfoglia Tutti gli Eventi Pubblici",
"whyCactoideFeatureTitle": "Perché Cactoide?",
"instantEventCreationTitle": "Creazione Istantanea di Eventi",
"instantEventCreationDescription": "Crea eventi in pochi secondi con il nostro modulo semplificato. Nessun account, nessuna attesa, solo pura efficienza.",
"oneClickSharingTitle": "Condivisione con un Clic",
"oneClickSharingDescription": "Ogni evento ottiene un URL unico e memorabile. Condividi istantaneamente tramite qualsiasi piattaforma o app di messaggistica.",
"allInOneClarityTitle": "Chiarezza Tutto-in-Uno",
"allInOneClarityDescription": "Niente più scorrimento infinito tra chat e reazioni. Visualizza la disponibilità e le risposte di tutti in un unico posto.",
"noHassleNoSignUpsTitle": "Nessun Problema, Nessuna Registrazione",
"noHassleNoSignUpsDescription": "Salta le registrazioni e i moduli infiniti. A differenza di altre piattaforme di eventi, crei e condividi istantaneamente: nessun account, nessuna barriera.",
"smartLimitsTitle": "Limiti Intelligenti",
"smartLimitsDescription": "Scegli tra RSVP illimitati o imposta una capacità limitata. Perfetto per eventi di qualsiasi dimensione.",
"effortlessSimplicityTitle": "Semplicità Senza Sforzo",
"effortlessSimplicityDescription": "Progettato per essere immediatamente chiaro e facile. Nessuna curva di apprendimento: apri, crea e vai.",
"howItWorksTitle": "Come Funziona",
"step1Title": "Crea Evento",
"step1Description": "Compila un semplice modulo con i dettagli dell'evento. Scegli tra capacità limitata o illimitata.",
"step2Title": "Ottieni URL Unico",
"step2Description": "Ricevi un URL casuale e memorabile per il tuo evento. Perfetto per la condivisione ovunque.",
"step3Title": "Raccogli gli RSVP",
"step3Description": "Le persone visitano il tuo link e partecipano solo con il loro nome. Nessun account necessario.",
"ctaTitle": "Pronto a Creare il Tuo Primo Evento?",
"ctaDescription": "Unisciti a migliaia di organizzatori di eventi che si fidano di Cactoide",
"ctaButton": "Crea"
},
"create": {
"title": "Crea Evento - Cactoide",
"formTitle": "Crea Nuovo Evento",
"eventNameLabel": "Nome",
"eventNamePlaceholder": "Inserisci il nome dell'evento",
"dateLabel": "Data",
"timeLabel": "Ora",
"locationLabel": "Luogo",
"locationPlaceholder": "Inserisci il luogo",
"locationTypeLabel": "Tipo di Luogo",
"locationNoneOption": "Nessuno",
"locationTextOption": "Testo Semplice",
"locationMapsOption": "Google Maps",
"locationNoneDescription": "Nessun luogo specificato.",
"locationTextDescription": "Inserisci il luogo come testo semplice.",
"locationMapsDescription": "Inserisci il link di Google Maps.",
"googleMapsUrlLabel": "URL di Google Maps",
"googleMapsUrlPlaceholder": "https://maps.google.com/...",
"typeLabel": "Tipo",
"unlimitedOption": "Illimitato",
"limitedOption": "Limitato",
"attendeeLimitLabel": "Limite di Partecipanti",
"attendeeLimitPlaceholder": "Inserisci il limite",
"visibilityLabel": "Visibilità",
"publicOption": "🌍 Pubblico",
"privateOption": "🔒 Privato",
"publicDescription": "Gli eventi pubblici sono visibili a tutti e possono essere scoperti da altri.",
"privateDescription": "Gli eventi privati sono visibili solo a te e alle persone con cui condividi il link.",
"creatingEvent": "Creazione Evento...",
"createEventButton": "Crea Evento"
},
"event": {
"title": "{eventName} - Cactoide",
"eventTitle": "Evento - Cactoide",
"editTitle": "Modifica Evento - {eventName} - Cactoide",
"myEventsTitle": "I Miei Eventi - Cactoide",
"eventNotFoundTitle": "Evento Non Trovato",
"eventNotFoundDescription": "L'evento che stai cercando non esiste o è stato rimosso.",
"joinThisEvent": "Partecipa a Questo Evento",
"eventIsFull": "L'Evento è Pieno!",
"maximumCapacityReached": "Raggiunta la capacità massima",
"yourNameLabel": "Il tuo nome",
"yourNamePlaceholder": "Inserisci il tuo nome",
"addGuestsLabel": "Aggiungi ospiti",
"numberOfGuestsLabel": "Numero di Ospiti",
"numberOfGuestsPlaceholder": "Inserisci il numero di ospiti",
"guestsWillBeAddedAs": "Gli ospiti verranno aggiunti come \"Ospite #1 di {name}\", \"Ospite #2 di {name}\", ecc.",
"joinEventButton": "Partecipa all'Evento",
"joinEventWithGuests": "Partecipa all'Evento + {count} Ospite{plural}",
"adding": "Aggiunta...",
"attendeesTitle": "Partecipanti",
"noAttendeesYet": "Ancora nessun partecipante",
"beFirstToJoin": "Sii il primo a partecipare!",
"copyLinkButton": "Copia Link",
"addToCalendarButton": "Aggiungi al Calendario",
"eventLinkCopied": "Link dell'evento copiato negli appunti!",
"rsvpAddedSuccessfully": "RSVP aggiunto con successo!",
"removedRsvpSuccessfully": "RSVP rimosso con successo.",
"failedToAddRsvp": "Impossibile aggiungere RSVP",
"failedToRemoveRsvp": "Impossibile rimuovere RSVP",
"editEventTitle": "Modifica Evento",
"editEventDescription": "Aggiorna i dettagli del tuo evento",
"updatingEvent": "Aggiornamento...",
"updateEventButton": "Aggiorna Evento",
"myEventsDescription": "Gestisci i tuoi eventi creati",
"noEventsYetTitle": "Ancora Nessun Evento",
"noEventsYetDescription": "Non hai ancora creato nessun evento. Inizia creando il tuo primo evento!",
"createYourFirstEventButton": "Crea il Tuo Primo Evento",
"deleteEventTitle": "Elimina Evento",
"deleteEventDescription": "Sei sicuro di voler eliminare \"{eventName}\"? Questa azione non può essere annullata e rimuoverà tutti gli RSVP.",
"deleteButton": "Elimina",
"viewEventAriaLabel": "Visualizza evento",
"editEventAriaLabel": "Modifica evento",
"deleteEventAriaLabel": "Elimina evento",
"removeRsvpAriaLabel": "Rimuovi RSVP"
},
"discover": {
"title": "Scopri Eventi - Cactoide",
"noPublicEventsTitle": "Ancora Nessun Evento Pubblico",
"noPublicEventsDescription": "Al momento non ci sono eventi pubblici disponibili. Sii il primo a crearne uno!",
"createButton": "Crea",
"publicEventsTitle": "Eventi Pubblici ({count})",
"publicEventsDescription": "Scopri eventi creati dalla comunità",
"searchPlaceholder": "Cerca eventi per nome, luogo...",
"searchInputAriaLabel": "Input di ricerca",
"toggleFiltersAriaLabel": "Attiva/Disattiva filtri",
"typeFilterLabel": "Tipo:",
"typeFilterAll": "Tutti",
"typeFilterLimited": "Limitati",
"typeFilterUnlimited": "Illimitati",
"statusFilterLabel": "Stato:",
"statusFilterAll": "Tutti gli eventi",
"statusFilterUpcoming": "Eventi imminenti",
"statusFilterPast": "Eventi passati",
"timeFilterLabel": "Orario:",
"timeFilterAny": "Qualsiasi orario",
"timeFilterNextWeek": "Prossima settimana",
"timeFilterNextMonth": "Prossimo mese",
"sortOrderLabel": "Ordina:",
"sortOrderEarliest": "Prima i più vicini",
"sortOrderLatest": "Prima i più recenti",
"viewButton": "Visualizza",
"noEventsFoundTitle": "Nessun evento trovato",
"noEventsFoundDescription": "Prova a modificare i termini di ricerca o sfoglia tutti gli eventi"
},
"calendar": {
"addToCalendarTitle": "Aggiungi al Calendario",
"googleCalendarTitle": "Google Calendar",
"googleCalendarDescription": "Aggiungi a Google Calendar",
"microsoftOutlookTitle": "Microsoft Outlook",
"microsoftOutlookDescription": "Aggiungi a Outlook Calendar",
"downloadICalTitle": "Scarica File iCal",
"downloadICalDescription": "Scarica file .ics per qualsiasi app di calendario"
},
"errors": {
"title": "Errore - Cactoide",
"errorTitle": "Errore",
"anUnexpectedErrorOccurred": "Si è verificato un errore inaspettato.",
"homeButton": "Home"
},
"layout": {
"defaultTitle": "Cactoide -",
"defaultDescription": "Crea e gestisci gli RSVP degli eventi",
"userIdCookieText": "Il tuo UserID memorizzato come cookie:",
"firstTimeVisiting": "Prima visita. Generazione di un nuovo UserID...",
"copyright": "© 2025 Cactoide"
}
}

View File

@@ -3,7 +3,7 @@
import Navbar from '$lib/components/Navbar.svelte';
import { t } from '$lib/i18n/i18n.js';
let { data } = $props();
let { data, children } = $props();
</script>
<svelte:head>
@@ -21,7 +21,7 @@
<!-- Main content -->
<main class="relative z-10">
<slot />
{@render children?.()}
</main>
<!-- Footer -->

View File

@@ -0,0 +1,11 @@
import { redirect } from '@sveltejs/kit';
import type { PageServerLoad } from './$types';
import { PUBLIC_LANDING_INFO } from '$env/static/public';
export const load: PageServerLoad = async () => {
if (PUBLIC_LANDING_INFO === 'false') {
throw redirect(302, '/discover');
}
return {};
};