161 lines
5.7 KiB
TypeScript
161 lines
5.7 KiB
TypeScript
import type { Translation } from '@/types/i18n';
|
|
import { URLS } from '@/lib/config/constants';
|
|
|
|
export const en: Translation = {
|
|
services: [
|
|
{
|
|
name: "Wiki",
|
|
url: URLS.services.wiki,
|
|
image: "/assets/wikijs.png",
|
|
icon: "📚",
|
|
description: "Collaborative technical documentation and knowledge sharing platform. Create, edit and organize your guides, tutorials and documentation as a team with integrated versioning system.",
|
|
features: [
|
|
"Advanced markdown editor with real-time preview",
|
|
"Versioning system to track changes",
|
|
"Real-time collaboration with multiple contributors",
|
|
"Smart search across all documents",
|
|
"Predefined templates for different documentation types",
|
|
"Comment and revision system",
|
|
"PDF and HTML export for external sharing",
|
|
"Git integration for backup"
|
|
]
|
|
},
|
|
{
|
|
name: "Gitea",
|
|
url: URLS.services.gitea,
|
|
image: "/assets/Gitea_Logo.png",
|
|
icon: "🔧",
|
|
description: "Lightweight and performant self-hosted Git service for your development projects. Open-source alternative to GitHub with all essential features for managing your repositories.",
|
|
features: [
|
|
"Unlimited public and private Git repositories",
|
|
"Intuitive web interface for project management",
|
|
"Issues and pull requests with review system",
|
|
"Integrated wiki for each project",
|
|
"CI/CD actions for automation",
|
|
"Fine-grained permissions and team management",
|
|
"Complete REST API for integration",
|
|
"Webhooks for external notifications"
|
|
]
|
|
},
|
|
{
|
|
name: "Pelican",
|
|
url: URLS.services.pelican,
|
|
image: "/assets/pelican.png",
|
|
icon: "🐧",
|
|
description: "Game server management with dedicated servers (Minecraft, CS2, Palworld, and many others)",
|
|
features: [
|
|
"One-click deployment with pre-configured templates",
|
|
"Real-time administration console",
|
|
"File management with integrated editor",
|
|
"Performance and resource monitoring",
|
|
"Automatic backup system",
|
|
"Automated task scheduler"
|
|
]
|
|
},
|
|
{
|
|
name: "Password Change",
|
|
url: URLS.services.ssp,
|
|
image: "/assets/banquise.png",
|
|
icon: "🔐",
|
|
description: "Secure interface for autonomous password management. Easily change your credentials safely.",
|
|
features: [
|
|
"Secure interface to change your password",
|
|
"Password complexity validation",
|
|
"Email notifications of changes",
|
|
"Modification history"
|
|
]
|
|
},
|
|
{
|
|
name: "OpenCloud",
|
|
url: URLS.services.opencloud,
|
|
image: "/assets/opencloud_logo_white.png",
|
|
icon: "☁️",
|
|
description: "Open-source collaborative cloud platform for file storage, sharing and synchronization. Free alternative to Google Drive with full control over your data.",
|
|
features: [
|
|
"Secure and encrypted cloud storage",
|
|
"Multi-device synchronization",
|
|
"File sharing with secure links",
|
|
"Collaborative document editing",
|
|
"Automatic file versioning",
|
|
"Native mobile applications",
|
|
"Integration with external tools",
|
|
"Geo-redundant data backup"
|
|
]
|
|
},
|
|
{
|
|
name: "Intranet",
|
|
url: URLS.services.intra,
|
|
image: "/assets/banquise.png",
|
|
icon: "🏢",
|
|
description: "Secure private space for the association to centralize internal resources, communications and collaboration tools between members.",
|
|
features: [
|
|
"Personalized dashboard for each member",
|
|
"Event and meeting calendar",
|
|
"Secure file sharing",
|
|
"Private discussion forums",
|
|
"Member directory with profiles",
|
|
"Internal notification system",
|
|
"Project and task management",
|
|
"Archive of decisions and minutes"
|
|
]
|
|
},
|
|
{
|
|
name: "Gaming Panel",
|
|
url: URLS.services.panel,
|
|
image: "/assets/banquise.png",
|
|
icon: "🎮",
|
|
description: "Centralized management interface for all your game servers. Easily deploy, configure and monitor your Minecraft, CS2, Garry's Mod and many other servers.",
|
|
features: [
|
|
"Support for 20+ popular games (Minecraft, CS2, GMod...)",
|
|
"One-click deployment with pre-configured templates",
|
|
"Real-time administration console",
|
|
"File management with integrated editor",
|
|
"Performance and resource monitoring",
|
|
"Automatic backup system",
|
|
"Automated task scheduler"
|
|
]
|
|
},
|
|
{
|
|
name: "Mails",
|
|
url: URLS.services.mails,
|
|
image: "/assets/banquise.png",
|
|
icon: "📧",
|
|
description: "Professional email service with modern web interface. Benefit from a personalized @la-banquise.fr email address with all advanced features.",
|
|
features: [
|
|
"Personalized @la-banquise.fr email addresses",
|
|
"Modern and responsive webmail interface",
|
|
"Integrated anti-spam and antivirus filters",
|
|
"Synchronized contacts and calendar",
|
|
"IMAP/SMTP support for external clients",
|
|
"Generous storage with archiving",
|
|
"Communication encryption",
|
|
"Automatic data backup"
|
|
]
|
|
}
|
|
],
|
|
hero: {
|
|
title: "Welcome to La Banquise",
|
|
subtitle: "Hosting provider, for students, by students.",
|
|
cta: "Discover our services"
|
|
},
|
|
navigation: {
|
|
home: "Home",
|
|
services: "Services",
|
|
about: "About",
|
|
contact: "Contact"
|
|
},
|
|
common: {
|
|
discoverFeatures: "Discover all features",
|
|
close: "Close",
|
|
loading: "Loading..."
|
|
},
|
|
user: {
|
|
profile: "Profile",
|
|
logout: "Sign out",
|
|
groups: "Groups",
|
|
userMenu: "User menu",
|
|
connecting: "Connecting...",
|
|
authError: "Authentication error"
|
|
}
|
|
};
|