Files
NexStudio/src/data/dove-siamo.ts
Javaxman 04a1892c0d Completa le traduzioni EN/TH e corregge sezioni home ancora solo in italiano.
Stats e prodotti non usavano il locale, quindi dopo lo switch lingua lo scroll mostrava ancora l'italiano.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-29 23:53:46 +02:00

96 lines
3.8 KiB
TypeScript

/**
* Pagina Dove siamo / Where we are / ที่ตั้ง — contenuti localizzati.
*/
import type { SupportedLocale } from './home/navigation';
export type DoveSiamoSection = {
title: string;
paragraphs: readonly string[];
/** When true, render "A — B" with both sides bold. */
locationLine?: boolean;
}
type DoveSiamoLocaleBundle = {
page: {
title: string;
description: string;
heading: string;
lead: string;
};
sections: readonly DoveSiamoSection[];
};
const doveSiamoByLocale: Record<SupportedLocale, DoveSiamoLocaleBundle> = {
it: {
page: {
title: 'Dove siamo — NexStudio',
description:
'Sede operativa a Bangkok, Thailandia; fusi orari e lingue per lavorare con clienti in Europa e altre regioni.',
heading: 'Dove siamo',
lead:
'NexStudio ha base a Bangkok, in Thailandia. Sotto, come organizziamo fusi orari e lingue rispetto a clienti in Europa e oltre.',
},
sections: [
{
title: 'Sede',
paragraphs: ['Thailandia — Bangkok'],
locationLine: true,
},
{
title: 'Fusi orari e lingue',
paragraphs: [
'Il sito e il supporto via web possono essere gestiti in italiano, inglese, tedesco, francese, spagnolo e tailandese, con orari da concordare in base al team e al fuso rispetto ai clienti in Europa e altre regioni.',
],
},
],
},
en: {
page: {
title: 'Where we are — NexStudio',
description:
'Operational base in Bangkok, Thailand; time zones and languages for working with clients in Europe and other regions.',
heading: 'Where we are',
lead:
'NexStudio is based in Bangkok, Thailand. Below, how we organize time zones and languages relative to clients in Europe and beyond.',
},
sections: [
{
title: 'Location',
paragraphs: ['Thailand — Bangkok'],
locationLine: true,
},
{
title: 'Time zones and languages',
paragraphs: [
'The site and web support can be handled in Italian, English, German, French, Spanish, and Thai, with hours to be agreed based on the team and time zone relative to clients in Europe and other regions.',
],
},
],
},
th: {
page: {
title: 'ที่ตั้ง — NexStudio',
description:
'ฐานปฏิบัติการที่กรุงเทพฯ ประเทศไทย เขตเวลาและภาษาสำหรับการทำงานกับลูกค้าในยุโรปและภูมิภาคอื่น',
heading: 'ที่ตั้ง',
lead:
'NexStudio มีฐานที่กรุงเทพฯ ประเทศไทย ด้านล่างคือวิธีที่เราจัดเขตเวลาและภาษาเมื่อเทียบกับลูกค้าในยุโรปและที่อื่น',
},
sections: [
{
title: 'สำนักงาน',
paragraphs: ['ประเทศไทย — กรุงเทพฯ'],
locationLine: true,
},
{
title: 'เขตเวลาและภาษา',
paragraphs: [
'เว็บไซต์และการสนับสนุนผ่านเว็บสามารถจัดการเป็นภาษาอิตาลี อังกฤษ เยอรมัน ฝรั่งเศส สเปน และไทย โดยตกลงเวลาตามทีมและเขตเวลาเทียบกับลูกค้าในยุโรปและภูมิภาคอื่น',
],
},
],
},
};
export const getDoveSiamo = (locale: SupportedLocale) => doveSiamoByLocale[locale];