fix: correcciones en locales (pr, rw, es), nombre país y estilos UI
- Añadida fecha 2026-05-20 para locales pr y rw - Imágenes corregidas para noticias en locale es - Nombre país ajustado: Salvador → El Salvador - Eliminada altura fija del carrusel - Posición de fecha corregida dentro del texto
This commit is contained in:
parent
031e1904c1
commit
9fd54b11cf
|
|
@ -23,6 +23,7 @@
|
|||
"@iconify/vue": "^5.0.0",
|
||||
"@prisma/client": "^6.19.2",
|
||||
"@tailwindcss/vite": "^4.1.18",
|
||||
"@tinacms/cli": "^2.2.2",
|
||||
"@unpic/astro": "^1.0.2",
|
||||
"astro": "^5.17.1",
|
||||
"astro-embed": "^0.12.0",
|
||||
|
|
@ -33,11 +34,11 @@
|
|||
"prisma": "^6.19.2",
|
||||
"react": "^19.2.5",
|
||||
"react-dom": "^19.2.5",
|
||||
"sharp": "^0.34.5",
|
||||
"swiper": "^12.1.0",
|
||||
"tailwindcss": "^4.1.18",
|
||||
"vue": "^3.5.28",
|
||||
"@tinacms/cli": "^2.2.2",
|
||||
"tinacms": "^2.2.2"
|
||||
"tinacms": "^2.2.2",
|
||||
"vue": "^3.5.28"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/typography": "^0.5.19",
|
||||
|
|
|
|||
|
|
@ -83,6 +83,9 @@ importers:
|
|||
react-dom:
|
||||
specifier: ^19.2.5
|
||||
version: 19.2.6(react@19.2.6)
|
||||
sharp:
|
||||
specifier: ^0.34.5
|
||||
version: 0.34.5
|
||||
swiper:
|
||||
specifier: ^12.1.0
|
||||
version: 12.1.4
|
||||
|
|
@ -8689,8 +8692,7 @@ snapshots:
|
|||
dependencies:
|
||||
react: 19.2.6
|
||||
|
||||
'@img/colour@1.1.0':
|
||||
optional: true
|
||||
'@img/colour@1.1.0': {}
|
||||
|
||||
'@img/sharp-darwin-arm64@0.34.5':
|
||||
optionalDependencies:
|
||||
|
|
@ -15108,7 +15110,6 @@ snapshots:
|
|||
'@img/sharp-win32-arm64': 0.34.5
|
||||
'@img/sharp-win32-ia32': 0.34.5
|
||||
'@img/sharp-win32-x64': 0.34.5
|
||||
optional: true
|
||||
|
||||
shebang-command@2.0.0:
|
||||
dependencies:
|
||||
|
|
|
|||
|
|
@ -10,250 +10,215 @@ const allNews = await getCollection("news");
|
|||
const tl = createTranslator(Astro.currentLocale);
|
||||
const currentLocale = Astro.currentLocale;
|
||||
const currentPath = Astro.url.pathname;
|
||||
const { locale } = Astro.params;
|
||||
|
||||
const languages = [
|
||||
{ code: "es", icon: "icon_flag_es", label: "Español" },
|
||||
{ code: "en", icon: "icon_flag_uk", label: "English" },
|
||||
{ code: "he", icon: "flagpack--il", label: "עברית" },
|
||||
{ code: "pt", icon: "flagpack--br", label: "Português" },
|
||||
{ code: "fr", icon: "flagpack--fr", label: "Français" },
|
||||
{ code: "ru", icon: "flagpack--ru", label: "Русский" },
|
||||
{ code: "rw", icon: "flagpack--rw", label: "Kinyarwanda" },
|
||||
{ code: "kr", icon: null, label: "Kreole" },
|
||||
];
|
||||
|
||||
const navItems = [
|
||||
{ href: "#somos", key: "nav.about" },
|
||||
{ href: "#programs", key: "nav.programs" },
|
||||
{ href: "#news", key: "nav.news" },
|
||||
];
|
||||
|
||||
const sidebarNavItems = [
|
||||
{ href: `/`, key: "nav.home" },
|
||||
{ href: "#somos", key: "nav.about" },
|
||||
{ href: "#programs", key: "nav.programs" },
|
||||
{ href: "#news", key: "nav.news" },
|
||||
];
|
||||
|
||||
function translatePath(newLocale: string) {
|
||||
const segments = currentPath.split("/").filter(Boolean);
|
||||
|
||||
if (segments.length === 0) return `/${newLocale}`;
|
||||
|
||||
const remainingSegments = segments.slice(1);
|
||||
const newsRouteNames = Object.values(routeTranslations.news);
|
||||
|
||||
const translatedSegments = remainingSegments.map((segment) => {
|
||||
for (const key in routeTranslations) {
|
||||
const translations =
|
||||
routeTranslations[key as keyof typeof routeTranslations];
|
||||
if (Object.values(translations).includes(segment)) {
|
||||
return translations[newLocale as keyof typeof translations] || segment;
|
||||
}
|
||||
const segments = currentPath.split("/").filter(Boolean);
|
||||
if (segments.length === 0) return `/${newLocale}`;
|
||||
const remainingSegments = segments.slice(1);
|
||||
const newsRouteNames = Object.values(routeTranslations.news);
|
||||
const translatedSegments = remainingSegments.map((segment) => {
|
||||
for (const key in routeTranslations) {
|
||||
const translations =
|
||||
routeTranslations[key as keyof typeof routeTranslations];
|
||||
if (Object.values(translations).includes(segment)) {
|
||||
return (
|
||||
translations[newLocale as keyof typeof translations] ||
|
||||
segment
|
||||
);
|
||||
}
|
||||
}
|
||||
return segment;
|
||||
});
|
||||
if (segments.length >= 2 && newsRouteNames.includes(segments[1])) {
|
||||
if (segments.length >= 3) {
|
||||
const currentId = segments[segments.length - 1];
|
||||
const baseId = currentId.split("/").pop();
|
||||
const exists = allNews.some(
|
||||
(post) =>
|
||||
post.id.endsWith(baseId!) && post.data.locale === newLocale,
|
||||
);
|
||||
if (!exists) return `/${newLocale}/${translatedSegments[0]}`;
|
||||
return `/${newLocale}/${translatedSegments[0]}/${newLocale}/${baseId}`;
|
||||
}
|
||||
}
|
||||
return segment;
|
||||
});
|
||||
|
||||
// Lógica para noticias
|
||||
if (segments.length >= 2 && newsRouteNames.includes(segments[1])) {
|
||||
const isDetail = segments.length >= 3;
|
||||
|
||||
if (isDetail) {
|
||||
const currentId = segments[segments.length - 1];
|
||||
const baseId = currentId.split("/").pop();
|
||||
|
||||
const exists = allNews.some(
|
||||
(post) => post.id.endsWith(baseId!) && post.data.locale === newLocale
|
||||
);
|
||||
|
||||
if (!exists) {
|
||||
// Redirigir al home de noticias si no existe la traducción
|
||||
return `/${newLocale}/${translatedSegments[0]}`;
|
||||
}
|
||||
|
||||
// Reconstruir ID con el nuevo locale
|
||||
const newId = `${newLocale}/${baseId}`;
|
||||
return `/${newLocale}/${translatedSegments[0]}/${newId}`;
|
||||
}
|
||||
}
|
||||
|
||||
return `/${[newLocale, ...translatedSegments].join("/")}`;
|
||||
return `/${[newLocale, ...translatedSegments].join("/")}`;
|
||||
}
|
||||
|
||||
const { locale } = Astro.params;
|
||||
---
|
||||
|
||||
<div>
|
||||
<div class="flex justify-between px-8 md:px-0 md:py-4">
|
||||
<div class="border-l-4 border-colorPrimary pl-4">
|
||||
<p
|
||||
class="font-secondary text-colorPrimary font-bold leading-none py-2 text-2xl md:text-lg"
|
||||
>
|
||||
<a href={`/${currentLocale}`}
|
||||
>{tl("nav.logo_line1")}<br />{tl("nav.logo_line2")}
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
<nav
|
||||
class="flex justify-evenly gap-10 items-center uppercase text-md text-white"
|
||||
>
|
||||
<div class="hidden md:flex gap-8 font-primary font-bold">
|
||||
<a
|
||||
class="hover:text-colorPrimary transition"
|
||||
href={`/${currentLocale}#somos`}
|
||||
>{tl("nav.about")}
|
||||
</a>
|
||||
<a
|
||||
class="hover:text-colorPrimary transition"
|
||||
href={`/${currentLocale}#programs`}
|
||||
>{tl("nav.programs")}
|
||||
</a>
|
||||
<a
|
||||
class="hover:text-colorPrimary transition"
|
||||
href={`/${currentLocale}#news`}
|
||||
>{tl("nav.news")}
|
||||
</a>
|
||||
<!-- <a class="hover:text-colorPrimary transition" href={`/${currentLocale}/archive`}>{tl("nav.archive")}</a>
|
||||
<a class="hover:text-colorPrimary transition" href={`/${currentLocale}/nations`}>{tl("nav.nations")}</a> -->
|
||||
</div>
|
||||
<div class="drawer lg:hidden">
|
||||
<input id="my-drawer-1" type="checkbox" class="drawer-toggle" />
|
||||
<div class="drawer-content">
|
||||
<!-- Page content here -->
|
||||
<label for="my-drawer-1" class="btn-ghost drawer-button"
|
||||
><Icon name="ph:list" class="text-white text-4xl font-bold" />
|
||||
</label>
|
||||
<div class="flex justify-between px-8 md:px-0 md:py-4">
|
||||
<div class="border-l-4 border-colorPrimary pl-4">
|
||||
<p
|
||||
class="font-secondary text-colorPrimary font-bold leading-none py-2 text-2xl md:text-lg"
|
||||
>
|
||||
<a href={`/${currentLocale}`}
|
||||
>{tl("nav.logo_line1")}<br />{tl("nav.logo_line2")}</a
|
||||
>
|
||||
</p>
|
||||
</div>
|
||||
<div class="drawer-side">
|
||||
<label
|
||||
for="my-drawer-1"
|
||||
aria-label="close sidebar"
|
||||
class="drawer-overlay"></label>
|
||||
<ul
|
||||
class="menu min-h-full w-80 p-4 bg-[url(/img/opacity-logo.png)] bg-no-repeat bg-contain bg-center bg-[#22523F] text-white"
|
||||
>
|
||||
<!-- Sidebar content here -->
|
||||
<div class="flex gap-2 justify-center items-center mb-8 mt-8">
|
||||
<img
|
||||
class="w-1/3 object-contain"
|
||||
src="/img/logo-metalico.webp"
|
||||
alt="Logo Centro del Reino de Paz y Justicia"
|
||||
/>
|
||||
<p
|
||||
class="font-secondary text-colorPrimary font-bold leading-none py-2 text-lg"
|
||||
>
|
||||
<a href="/"
|
||||
>{tl("nav.logo_line1")}<br />{tl("nav.logo_line2")}
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<ul class="font-primary font-bold flex flex-col gap-1 text-lg p-0">
|
||||
<li>
|
||||
<a class="hover:text-colorPrimary transition" href="#somos"
|
||||
>{tl("nav.about")}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="hover:text-colorPrimary transition" href="#programs"
|
||||
>{tl("nav.programs")}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="hover:text-colorPrimary transition" href="#news"
|
||||
>{tl("nav.news")}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="w-50">
|
||||
<Button
|
||||
class="px-8 py-2 uppercase text-lg mt-8"
|
||||
title={tl("nav.contact")}
|
||||
url="#contact"
|
||||
variant="primary"
|
||||
/>
|
||||
</div>
|
||||
<div class="dropdown mt-10">
|
||||
<div
|
||||
tabindex="0"
|
||||
role="button"
|
||||
class="btn-ghost m-1 cursor-pointer"
|
||||
>
|
||||
<Icon name="ph:translate" class="text-2xl" />
|
||||
</div>
|
||||
<ul
|
||||
tabindex="-1"
|
||||
class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm"
|
||||
>
|
||||
<li>
|
||||
<a href={translatePath("es")}
|
||||
><Icon name="icon_flag_es" /> Español</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("en")}
|
||||
><Icon name="icon_flag_uk" /> English</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("he")}
|
||||
><Icon name="flagpack--il" /> עברית</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("pt")}
|
||||
><Icon name="flagpack--br" /> Português</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("fr")}
|
||||
><Icon name="flagpack--fr" /> Français</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("ru")}
|
||||
><Icon name="flagpack--ru" /> Русский</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("rw")}
|
||||
><Icon name="flagpack--rw" /> Kinyarwanda</a
|
||||
>
|
||||
</li>
|
||||
<li><a href={translatePath("kr")}>Kreole</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-50 hidden md:block">
|
||||
<Button
|
||||
class="px-4 py-2 uppercase"
|
||||
title={tl("nav.contact")}
|
||||
url="#contact"
|
||||
variant="primary"
|
||||
/>
|
||||
</div>
|
||||
<div class="dropdown dropdown-end lg:block hidden">
|
||||
<div tabindex="0" role="button" class="btn-ghost m-1 cursor-pointer">
|
||||
<Icon name="ph:translate" class="text-2xl" />
|
||||
</div>
|
||||
<ul
|
||||
tabindex="-1"
|
||||
class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm"
|
||||
<nav
|
||||
class="flex justify-evenly gap-10 items-center uppercase text-md text-white"
|
||||
>
|
||||
<li>
|
||||
<a href={translatePath("es")}
|
||||
><Icon name="icon_flag_es" /> Español</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("en")}
|
||||
><Icon name="icon_flag_uk" /> English</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("he")}><Icon name="flagpack--il" /> עברית</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("pt")}
|
||||
><Icon name="flagpack--br" /> Português</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("fr")}
|
||||
><Icon name="flagpack--fr" /> Français</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("ru")}
|
||||
><Icon name="flagpack--ru" /> Русский</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href={translatePath("rw")}
|
||||
><Icon name="flagpack--rw" /> Kinyarwanda</a
|
||||
>
|
||||
</li>
|
||||
<li><a href={translatePath("kr")}>Kreole</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
<div class="hidden md:flex gap-8 font-primary font-bold">
|
||||
{
|
||||
navItems.map((item) => (
|
||||
<a
|
||||
class="hover:text-colorPrimary transition"
|
||||
href={`/${currentLocale}${item.href}`}
|
||||
>
|
||||
{tl(item.key)}
|
||||
</a>
|
||||
))
|
||||
}
|
||||
<!-- <a class="hover:text-colorPrimary transition" href={`/${currentLocale}/archive`}>{tl("nav.archive")}</a>
|
||||
<a class="hover:text-colorPrimary transition" href={`/${currentLocale}/nations`}>{tl("nav.nations")}</a> -->
|
||||
</div>
|
||||
<div class="drawer lg:hidden">
|
||||
<input id="my-drawer-1" type="checkbox" class="drawer-toggle" />
|
||||
<div class="drawer-content">
|
||||
<label for="my-drawer-1" class="btn-ghost drawer-button">
|
||||
<Icon
|
||||
name="ph:list"
|
||||
class="text-white text-4xl font-bold"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
<div class="drawer-side">
|
||||
<label
|
||||
for="my-drawer-1"
|
||||
aria-label="close sidebar"
|
||||
class="drawer-overlay"></label>
|
||||
<ul
|
||||
class="menu min-h-full w-80 p-4 bg-[url(/img/opacity-logo.png)] bg-no-repeat bg-contain bg-center bg-[#22523F] text-white"
|
||||
>
|
||||
<div
|
||||
class="flex gap-2 justify-center items-center mb-8 mt-8"
|
||||
>
|
||||
<img
|
||||
class="w-1/3 object-contain"
|
||||
src="/img/logo-metalico.webp"
|
||||
alt="Logo Centro del Reino de Paz y Justicia"
|
||||
/>
|
||||
<p
|
||||
class="font-secondary text-colorPrimary font-bold leading-none py-2 text-lg"
|
||||
>
|
||||
<a href="/"
|
||||
>{tl("nav.logo_line1")}<br />{
|
||||
tl("nav.logo_line2")
|
||||
}</a
|
||||
>
|
||||
</p>
|
||||
</div>
|
||||
<ul
|
||||
class="font-primary font-bold flex flex-col gap-1 text-lg p-0"
|
||||
>
|
||||
{
|
||||
sidebarNavItems.map((item) => (
|
||||
<li>
|
||||
<a
|
||||
class="hover:text-colorPrimary transition"
|
||||
href={`/${currentLocale}${item.href}`}
|
||||
>
|
||||
{tl(item.key)}
|
||||
</a>
|
||||
</li>
|
||||
))
|
||||
}
|
||||
</ul>
|
||||
<div class="w-50">
|
||||
<Button
|
||||
class="px-8 py-2 uppercase text-lg mt-8"
|
||||
title={tl("nav.contact")}
|
||||
url="#contact"
|
||||
variant="primary"
|
||||
/>
|
||||
</div>
|
||||
<div class="dropdown mt-10">
|
||||
<div
|
||||
tabindex="0"
|
||||
role="button"
|
||||
class="btn-ghost m-1 cursor-pointer"
|
||||
>
|
||||
<Icon name="ph:translate" class="text-2xl" />
|
||||
</div>
|
||||
<ul
|
||||
tabindex="-1"
|
||||
class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm"
|
||||
>
|
||||
{
|
||||
languages.map((lang) => (
|
||||
<li>
|
||||
<a href={translatePath(lang.code)}>
|
||||
{lang.icon && (
|
||||
<Icon name={lang.icon} />
|
||||
)}{" "}
|
||||
{lang.label}
|
||||
</a>
|
||||
</li>
|
||||
))
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-50 hidden md:block">
|
||||
<Button
|
||||
class="px-4 py-2 uppercase"
|
||||
title={tl("nav.contact")}
|
||||
url="#contact"
|
||||
variant="primary"
|
||||
/>
|
||||
</div>
|
||||
<div class="dropdown dropdown-end lg:block hidden">
|
||||
<div
|
||||
tabindex="0"
|
||||
role="button"
|
||||
class="btn-ghost m-1 cursor-pointer"
|
||||
>
|
||||
<Icon name="ph:translate" class="text-2xl" />
|
||||
</div>
|
||||
<ul
|
||||
tabindex="-1"
|
||||
class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm"
|
||||
>
|
||||
{
|
||||
languages.map((lang) => (
|
||||
<li>
|
||||
<a href={translatePath(lang.code)}>
|
||||
{lang.icon && <Icon name={lang.icon} />}{" "}
|
||||
{lang.label}
|
||||
</a>
|
||||
</li>
|
||||
))
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ const imageUrl = props.image || ''
|
|||
{ props.type === 'imgText' && (
|
||||
<div class={`flex flex-col justify-between h-full bg-[${props.bgColor}]`}>
|
||||
<div class="grid grid-cols-1 gap-0 p-8 font-bold">
|
||||
<div class="px-12 py-10">
|
||||
<div class="md:px-10 md:py-10">
|
||||
<Icon name={props.icon} class="text-3xl" />
|
||||
<p class={`font-primary text-xl text-[${textColor}]`}>{props.text}</p>
|
||||
</div>
|
||||
|
|
@ -38,4 +38,4 @@ const imageUrl = props.image || ''
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -10,9 +10,10 @@ import "dayjs/locale/ru";
|
|||
import "dayjs/locale/rw";
|
||||
import dayjs from "dayjs";
|
||||
import utc from "dayjs/plugin/utc";
|
||||
import { getLocalizedRoute } from "../../i18n";
|
||||
import { getLocalizedRoute, createTranslator } from "../../i18n";
|
||||
|
||||
const locale = Astro.currentLocale || "es";
|
||||
const tl = createTranslator(locale);
|
||||
const regionNames = new Intl.DisplayNames([locale], { type: 'region' });
|
||||
dayjs.extend(utc);
|
||||
dayjs.locale(locale);
|
||||
|
|
@ -27,17 +28,27 @@ locationArray.filter(Boolean).join(', ');
|
|||
|
||||
<div class="bg-[#EBE5D0] text-[#003421] p-10">
|
||||
<Icon name="ph:arrow-circle-down-thin" class="text-8xl mb-8" />
|
||||
<p class="font-light text-2xl mb-8">
|
||||
<p class="font-light md:text-2xl text-lg md:mb-8 mb-3">
|
||||
{locationArray.filter(Boolean).join(', ')}<br />
|
||||
({nicedate}):
|
||||
</p>
|
||||
<h3 class="text-2xl font-bold mb-8"><a href={`/${locale}/${getLocalizedRoute('news', locale)}/${data.id}`}>{data.data.title}</a></h3>
|
||||
<h3 class="md:text-2xl text-lg mb-4 font-bold md:mb-8 hover:underline"><a href={`/${locale}/${getLocalizedRoute('news', locale)}/${data.id}`}>{data.data.title}</a></h3>
|
||||
|
||||
<div>
|
||||
<div class="overflow-hidden">
|
||||
<a href={`/${locale}/${getLocalizedRoute('news', locale)}/${data.id}`}>
|
||||
<Image
|
||||
src={data.data.thumbnail}
|
||||
alt={data.data.title}
|
||||
class="aspect-square object-cover"
|
||||
/>
|
||||
class="aspect-square object-cover transition-transform duration-300 hover:scale-110"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="mt-8">
|
||||
<a href={`/${locale}/${getLocalizedRoute('news', locale)}/${data.id}`} class="inline-flex items-center gap-2 px-6 py-3 bg-white text-[#22523F] hover:bg-[#22523F] hover:text-[#EBE6D2] hover:underline font-bold transition text-sm rounded-none uppercase">
|
||||
{tl("news.fullnew")}
|
||||
<Icon name="ph:arrow-right" class="transform group-hover:translate-x-1 transition-transform" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -21,99 +21,46 @@ dayjs.locale(locale);
|
|||
|
||||
const { data, content } = Astro.props;
|
||||
const nicedate = dayjs.utc(data.data.date).format("D MMMM YYYY");
|
||||
const countryName = data?.data?.country
|
||||
? regionNames.of(data.data.country)
|
||||
: "";
|
||||
const countryName = data?.data?.country ? regionNames.of(data.data.country) : "";
|
||||
|
||||
const locationArray = [data.data.city, data.data.state, countryName];
|
||||
const location = locationArray.filter(Boolean).join(", ");
|
||||
const location = [data.data.city, data.data.state, countryName].filter(Boolean).join(", ");
|
||||
|
||||
const newsUrl = `/${locale}/${getLocalizedRoute("news", locale)}/${data.id}`;
|
||||
|
||||
const rawContent = content?.body || "";
|
||||
const plainText = rawContent
|
||||
.replace(/^#.*$/gm, "")
|
||||
.replace(/^###.*$/gm, "")
|
||||
.replace(/\*\*([^*]+)\*\*/g, "$1")
|
||||
.replace(/\*([^*]+)\*/g, "$1")
|
||||
.replace(/_([^_]+)_/g, "$1")
|
||||
.replace(/\[([^\]]+)\]\([^)]+\)/g, "$1")
|
||||
.replace(/^>.*$/gm, "")
|
||||
.replace(/`[^`]+`/g, "")
|
||||
.replace(/^[-*]\s+/gm, "")
|
||||
.trim();
|
||||
const words = plainText
|
||||
.split(/\s+/)
|
||||
.filter((w) => w.length > 0)
|
||||
.slice(0, 40);
|
||||
const plainText = rawContent.replace(/^#.*$/gm, "").replace(/^###.*$/gm, "").replace(/\*\*([^*]+)\*\*/g, "$1").replace(/\*([^*]+)\*/g, "$1").replace(/_([^_]+)_/g, "$1").replace(/\[([^\]]+)\]\([^)]+\)/g, "$1").replace(/^>.*$/gm, "").replace(/`[^`]+`/g, "").replace(/^[-*]\s+/gm, "").trim();
|
||||
const words = plainText.split(/\s+/).filter((w) => w.length > 0).slice(0, 40);
|
||||
const excerpt = words.join(" ") + (words.length === 40 ? "..." : "");
|
||||
---
|
||||
|
||||
<a href={newsUrl} class="block group">
|
||||
<article
|
||||
class="flex flex-col md:flex-row gap-6 md:gap-8 p-4 md:p-6 border-b border-tertiary/20 hover:bg-tertiary/5 transition-colors"
|
||||
>
|
||||
<div
|
||||
class="md:w-1/3 flex-shrink-0 overflow-hidden justify-center items-center flex"
|
||||
>
|
||||
<Image
|
||||
src={data.data.thumbnail_square || data.data.thumbnail}
|
||||
alt={data.data.title}
|
||||
width={480}
|
||||
class="w-full h-auto object-contain transform group-hover:scale-105 transition-transform duration-300"
|
||||
/>
|
||||
<article class="flex flex-col md:flex-row gap-6 md:gap-8 p-4 md:p-6 border-b border-tertiary/20 hover:bg-tertiary/5 transition-colors">
|
||||
<div class="md:w-1/3 flex-shrink-0 overflow-hidden justify-center items-center flex">
|
||||
<Image src={data.data.thumbnail_square || data.data.thumbnail} alt={data.data.title} width={480} class="w-full h-auto object-contain transform group-hover:scale-105 transition-transform duration-300" />
|
||||
</div>
|
||||
|
||||
<div class="md:w-2/3 flex flex-col">
|
||||
<div class="flex items-center gap-2 mb-2">
|
||||
<span class="font-normal font-primary text-sm text-tertiary/70"
|
||||
>{nicedate}
|
||||
</span>
|
||||
{
|
||||
location && (
|
||||
<>
|
||||
<span class="text-tertiary/40">|</span>
|
||||
<span class="font-normal font-primary text-sm text-tertiary/70">
|
||||
{location}
|
||||
</span>
|
||||
</>
|
||||
)
|
||||
}
|
||||
<span class="font-normal font-primary text-sm text-tertiary/70">{nicedate}</span>
|
||||
{location && <><span class="text-tertiary/40">|</span><span class="font-normal font-primary text-sm text-tertiary/70">{location}</span></>}
|
||||
</div>
|
||||
|
||||
<h3
|
||||
class="text-xl md:text-2xl font-bold font-secondary text-tertiary group-hover:text-tertiary/80 transition-colors mb-2"
|
||||
>
|
||||
{data.data.title}
|
||||
</h3>
|
||||
<h3 class="text-xl md:text-2xl font-bold font-secondary text-tertiary group-hover:text-tertiary/80 transition-colors mb-2">{data.data.title}</h3>
|
||||
|
||||
<p
|
||||
class="font-primary text-base text-tertiary/80 mb-4 line-clamp-3"
|
||||
>
|
||||
{excerpt}
|
||||
</p>
|
||||
<p class="font-primary text-base text-tertiary/80 mb-4 line-clamp-3">{excerpt}</p>
|
||||
|
||||
{
|
||||
data.data.tags && data.data.tags.length > 0 && (
|
||||
<div class="flex flex-nowrap md:flex-wrap gap-2 overflow-x-auto md:overflow-visible pb-2 md:pb-0 mb-4">
|
||||
{data.data.tags.map((tag: string) => (
|
||||
<span class="badge rounded-none bg-[#EBE6D2] border-none text-[#003421] whitespace-nowrap">
|
||||
{tag}
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
{data.data.tags && data.data.tags.length > 0 && (
|
||||
<div class="flex flex-nowrap md:flex-wrap gap-2 overflow-x-auto md:overflow-visible pb-2 md:pb-0 mb-4">
|
||||
{data.data.tags.map((tag: string) => (
|
||||
<span class="badge rounded-none bg-[#EBE6D2] border-none text-[#003421] whitespace-nowrap">{tag}</span>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div class="mt-auto">
|
||||
<span
|
||||
class="inline-flex items-center gap-1 text-sm font-primary text-tertiary font-semibold group-hover:underline"
|
||||
>
|
||||
<span class="inline-flex items-center gap-1 text-sm font-primary text-tertiary font-semibold group-hover:underline">
|
||||
{tl("news.seemore")}
|
||||
<Icon
|
||||
name="ph:arrow-right"
|
||||
class="transform group-hover:translate-x-1 transition-transform"
|
||||
/>
|
||||
<Icon name="ph:arrow-right" class="transform group-hover:translate-x-1 transition-transform" />
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
---
|
||||
import { Image } from "astro:assets";
|
||||
import "swiper/css";
|
||||
import "swiper/css/navigation";
|
||||
import "swiper/css/pagination";
|
||||
import { Icon } from "astro-icon/components";
|
||||
|
||||
const isHebrew = Astro.currentLocale === "he";
|
||||
const { images, class: className } = Astro.props;
|
||||
const { images, class: className, imgClass } = Astro.props;
|
||||
---
|
||||
|
||||
<div class="bg-white">
|
||||
<div class={`bg-white ${className || ''}`}>
|
||||
<div class="mx-auto">
|
||||
<div class="swiper">
|
||||
<div class="swiper-wrapper">
|
||||
|
|
@ -23,7 +22,7 @@ const { images, class: className } = Astro.props;
|
|||
</div>
|
||||
)}
|
||||
<img
|
||||
class="w-full"
|
||||
class={`w-full ${imgClass || ''}`}
|
||||
src={image.image}
|
||||
alt={image.text}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ const tl = createTranslator(Astro.currentLocale);
|
|||
<div class="container mx-auto">
|
||||
<div class="grid grid-cols-1 sm:grid-cols-1 lg:grid-cols-3">
|
||||
{ tl("info.boxes").map((box) => (
|
||||
<BoxContainer props={box} />
|
||||
<BoxContainer props={box} />
|
||||
))}
|
||||
</div>
|
||||
<div class="grid grid-cols-1 lg:grid-cols-3 h-auto bg-white w-full">
|
||||
|
|
@ -27,7 +27,7 @@ const tl = createTranslator(Astro.currentLocale);
|
|||
<div class="col-span-1 h-full bg-[#CBA16A]">
|
||||
<BoxContainer props={tl("info.endbox")} />
|
||||
</div>
|
||||
<div class="col-span-1 py-38 lg:px-24 bg-[#21523F]">
|
||||
<div class="col-span-1 py-10 lg:px-24 bg-[#21523F]">
|
||||
<img src="/img/logo-new-white.png" alt="Logo del Centro del Reino de Paz y Justicia (CRPJ)" class="w-1/3 lg:w-100 mx-auto">
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -48,6 +48,6 @@ const tl = createTranslator(Astro.currentLocale);
|
|||
<img src="/img/DRJBP-1.webp" class="h-full object-cover" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ const { title } = Astro.props;
|
|||
---
|
||||
<div class="md:py-16 p-4 bg-white">
|
||||
<div class="container mx-auto">
|
||||
<div class="flex justify-between px-4">
|
||||
<div class="flex justify-between px-4 align-center items-center">
|
||||
<h2 id="article-title" class="text-tertiary font-secondary text-xl sm:text-2xl md:text-3xl lg:text-5xl font-bold">{title}</h2>
|
||||
<img class="md:w-20 md:h-20 w-10 h-10" src="/img/lion.svg" alt="Leon">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ slug: 2026-04-26-dr-jose-benjamin-perez-matos-destaca-el-liderazgo-de-nayib-buke
|
|||
country: SV
|
||||
city: San Salvador
|
||||
place: Palacio de los Deportes
|
||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_04_26_1_JBP_la_ultima_visitacion_o_manifestacion_del_espiritu.webp'
|
||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:cm-extract,x-0,y-1800,fo--30/2026_04_26_1_JBP_la_ultima_visitacion_o_manifestacion_del_espiritu.jpg'
|
||||
tags: [Colombia, El Salvador]
|
||||
gallery: [
|
||||
{
|
||||
|
|
|
|||
382
src/i18n/en.json
382
src/i18n/en.json
|
|
@ -1,192 +1,194 @@
|
|||
{
|
||||
"nav.logo_line1": "Kingdom of Peace",
|
||||
"nav.logo_line2": "and Justice Center",
|
||||
"nav.about": "About",
|
||||
"nav.news": "News",
|
||||
"nav.archive": "Archive",
|
||||
"nav.programs": "Programs",
|
||||
"nav.contact": "Contact",
|
||||
"nav.nations": "Nations",
|
||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||
"hero.title": "Founding Leader",
|
||||
"hero.body": "“My life’s dream is to see the prophets’ vision fulfilled: a world of justice and peace for the good of Israel and all mankind.”",
|
||||
"info.title": "Building the world dreamed of by the prophets: justice and peace for Israel and all humanity",
|
||||
"info.register": "Register",
|
||||
"info.modal.title": "Form available soon",
|
||||
"info.modal.text": "We are finalizing details to enable the volunteer form. You will be able to complete your registration from this section very soon.",
|
||||
"carousel.text1": "Peace",
|
||||
"carousel.text2": "Justice",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "Public Diplomacy and International Projection",
|
||||
"copy": "Conscious construction of ethical, cultural, and strategic links between peoples",
|
||||
"buttonLabel": "Read More",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Programs and Areas of Action",
|
||||
"copy": "Courses, seminars and training programs aimed at leaders, professionals and reference persons.",
|
||||
"buttonLabel": "Read More",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "I want to apply as a volunteer",
|
||||
"copy": "Joining means making a commitment with purpose.",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "Register",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "The <b>Kingdom of Peace and Justice Center (KPJC)</b> is an international organization dedicated to leadership development, strategic dialogue, and public action, to advance justice and peace according to the eternal values proclaimed by the prophets, with an explicit and unwavering commitment to Israel and its central role in the history and destiny of the world.",
|
||||
"info.copy_column1": "The (KPJC) develops educational initiatives, spaces for deep reflection and concrete actions in the public sphere, integrating spiritual principles, institutional responsibility, and ethical leadership. Its work is anchored in the field of <strong>public diplomacy</strong>, deemed a legitimate tool to shape the global conversation, strengthen ties between nations, and defend fundamental values against the challenges of the present and the future.",
|
||||
"info.copy_column2": "Peace is not conceived as an abstract slogan nor a naive ideal, but as the result of resolute decisions, values-driven leadership, and a sustained commitment to clear goals, recognizing Israel’s irreplaceable role in building a just and stable order for all mankind.",
|
||||
"info.endbox": {
|
||||
"title": "Mission, Vision and Institutional Values.",
|
||||
"buttonLabel": "READ MORE",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
"nav.logo_line1": "Kingdom of Peace",
|
||||
"nav.logo_line2": "and Justice Center",
|
||||
"nav.home": "Home",
|
||||
"nav.about": "About",
|
||||
"nav.news": "News",
|
||||
"nav.archive": "Archive",
|
||||
"nav.programs": "Programs",
|
||||
"nav.contact": "Contact",
|
||||
"nav.nations": "Nations",
|
||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||
"hero.title": "Founding Leader",
|
||||
"hero.body": "“My life’s dream is to see the prophets’ vision fulfilled: a world of justice and peace for the good of Israel and all mankind.”",
|
||||
"info.title": "Building the world dreamed of by the prophets: justice and peace for Israel and all humanity",
|
||||
"info.register": "Register",
|
||||
"info.modal.title": "Form available soon",
|
||||
"info.modal.text": "We are finalizing details to enable the volunteer form. You will be able to complete your registration from this section very soon.",
|
||||
"carousel.text1": "Peace",
|
||||
"carousel.text2": "Justice",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "Public Diplomacy and International Projection",
|
||||
"copy": "Conscious construction of ethical, cultural, and strategic links between peoples",
|
||||
"buttonLabel": "Read More",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "Justice"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "Peace"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "Institutional Identity",
|
||||
"identity.title": "Kingdom of Peace and Justice Center",
|
||||
"identity.body": "<p><b>The Kingdom of Peace and Justice Center</b> is an international organization made up of <b>thousands of volunteers throughout numerous countries</b>, who act in alignment under the leadership and guidance of <b>Dr. José Benjamín Pérez Matos</b>, the sole point of reference of the KPJC.</p><p>The KPJC has an active <strong>presence in different continents</strong>, bringing together individuals, leaders, communities, and institutions that share a common vision: to bring the values of the Kingdom into the public sphere and to meet the challenges that the world is currently facing with responsibility and conviction.</p><p>The KPJC was created with a clear mission: <b>to build bridges between faith and action in the public sphere</b>, integrating spiritual reflection, intellectual development, and actionable commitment, to pave the way for a new era marked by a more just order, true peace, and a better world, according to the prophetic vision.</p><p>Its vision is strategic, international, and forward-looking, mindful of emerging conflicts, cultural tensions, geopolitical challenges, and the need for steadfast leadership capable of acting with clarity in times of global transformation.</p>",
|
||||
"authority.title": "<strong>Authority</strong> | Kingdom of Peace and Justice Center",
|
||||
"authority.body": "<strong>Dr. José Benjamín Pérez Matos</strong> is the <strong>founder and sole leader of the Kingdom of Peace and Justice Center.</strong> His leadership combines spiritual vision, intellectual development, public action, and global reach.",
|
||||
"title1.title": "Dr. José Benjamín Pérez Matos | Trajectory",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "Administration Of La Gran Carpa Catedral. Puerto Rico",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "Active involvement in international scenarios.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "Biblical teaching applied to the analysis of the contemporary world.",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "Public commitment in defense, justice and peace of Israel.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "Mission",
|
||||
"color1.text": "To form leaders, promote educational initiatives, and encourage public actions in pursuit of justice and peace, based on a firm ethical and spiritual foundation, with an explicit commitment to Israel and a responsibility to contribute to the well-being and stability of mankind as a whole.",
|
||||
"color2.title": "Vision",
|
||||
"color2.text": "To position ourselves as an international benchmark in leadership development, public diplomacy, and institutional outreach, recognized for our consistency, clear values, and tangible contribution to building a world aligned with the prophetic vision of justice and peace.",
|
||||
"title2.title": "Institutional Values",
|
||||
"values.justice.title": "Justice",
|
||||
"values.justice.text": "An active commitment to a just order grounded in moral principles, respect for human dignity, and the defense of enduring values.",
|
||||
"values.integrity.title": "Integrity",
|
||||
"values.integrity.text": "Alignment of thought, word, and deed; institutional transparency and accountability in the public sphere.",
|
||||
"values.service.title": "Service with purpose",
|
||||
"values.service.text": "A calling to accompany others and act in pursuit of clear and transcendent goals.",
|
||||
"values.excellence.title": "Excellence",
|
||||
"values.excellence.text": "Intellectual rigor, professionalism, and continuous improvement in all work areas.",
|
||||
"values.dialogue.title": "Strategic dialogue",
|
||||
"values.dialogue.text": "Openness to exchange across cultures, nations, and faiths, while upholding fundamental convictions and principles.",
|
||||
"projection.title": "Public Diplomacy and International Projection",
|
||||
"projection.text": "<p>The <strong>Kingdom of Peace and Justice Center</strong> pursues an active policy of public diplomacy, defined as the intentional building of ethical, cultural, and strategic bonds between peoples, institutions, and global leaders.</p><p><strong>Through meetings, international missions, forums, and institutional relations, the KPJC promotes:</strong></p><p><ul><li>Interreligious and intercultural dialogue based on steadfast values.</li><li>The advocacy of justice and peace in international settings.</li><li>Partnership with political, academic, and social leaders.</li><li><strong>Clear and unwavering support for the Jewish people and the State of Israel, recognizing its historical, spiritual, and geopolitical significance.</li></ul></p><p>This global reach positions the KPJC as a stakeholder in the global discourse on the future of the world, international stability, and the enduring relevance of prophetic values.</p>",
|
||||
"projection.card1": "The connection with political, academic and social leaders.",
|
||||
"projection.card2": "Clear and permanent support for the Jewish people and the State of Israel",
|
||||
"formation.title": "Training and Development",
|
||||
"formation.subtitle": "Programs and Areas of Action",
|
||||
"formation.text": "The KPJC develops courses, seminars, and training programs for leaders, professionals, institutional management, and public stakeholders.",
|
||||
"formation.area.title": "Training areas",
|
||||
"formation.area.text": "<li>Ethical and strategic leadership.</li> <li>Mediation and responsible conflict resolution.</li> <li>Faith, values, and action in the public sphere.</li> <li>Analysis of global scenarios and contemporary challenges.</li> <li>Foundations for building a solid and lasting peace, with a focus on Israel.</li>",
|
||||
"formation.consulting.title": "Advisory and Consulting",
|
||||
"formation.consulting.text": "Strategic support for organizations and institutions seeking to design and implement impactful initiatives aligned with clear values, overarching objectives, and a long-term vision.",
|
||||
"formation.action.title": "Action Projects",
|
||||
"formation.action.text": "The advancement of tangible initiatives in different areas, focused on development, conflict prevention, and empowerment of local leadership with a global vision.",
|
||||
"news.title": "News",
|
||||
"news.text": "Institutional updates and global reach",
|
||||
"news.text2": "This section brings together the main events, awards, and undertakings of the Kingdom of Peace and Justice Center and its founder.",
|
||||
"news.text3": "This page brings together the main events, awards, and undertakings of the Kingdom of Peace and Justice Center and its founder.",
|
||||
"news.buttonLable": "See More News",
|
||||
"news.seemore": "See More",
|
||||
"news.all": "All",
|
||||
"news.allYears": "All years",
|
||||
"participate.title": "Participate | Collaborate",
|
||||
"participate.text": "Joining means making a commitment with purpose",
|
||||
"participate.text2": "The work of KPJC is strengthened by the participation of individuals and institutions aligned with its values and overarching objectives:",
|
||||
"participate.box1.title": "Volunteering:",
|
||||
"participate.box1.text": "participation in educational, institutional, or international projects.",
|
||||
"participate.box2.title": "Institutional outreach:",
|
||||
"participate.box2.text": "amplify the KPJC’s mission and activities in the public sphere.",
|
||||
"participate.text3": "Peace is built through responsible decisions, committed leadership, and sustained action.",
|
||||
"footer.title": "Contact",
|
||||
"footer.subtitle": "Let’s connect with vision and purpose",
|
||||
"footer.text": "The Kingdom of Peace and Justice Center has direct channels for institutional inquiries and participation in international programs and events.",
|
||||
"footer.text2": "Social media: regular updates on events and announcements.",
|
||||
"footer.email": "Email:",
|
||||
"footer.form.name": "Name and Lastname",
|
||||
"footer.form.mesagge": "Write a message",
|
||||
"footer.form.button": "Send",
|
||||
"footer.reserved": "©2026 All Rights Reserved. Kingdom of Peace and Justice Center"
|
||||
}
|
||||
{
|
||||
"title": "Programs and Areas of Action",
|
||||
"copy": "Courses, seminars and training programs aimed at leaders, professionals and reference persons.",
|
||||
"buttonLabel": "Read More",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "I want to apply as a volunteer",
|
||||
"copy": "Joining means making a commitment with purpose.",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "Register",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "The <b>Kingdom of Peace and Justice Center (KPJC)</b> is an international organization dedicated to leadership development, strategic dialogue, and public action, to advance justice and peace according to the eternal values proclaimed by the prophets, with an explicit and unwavering commitment to Israel and its central role in the history and destiny of the world.",
|
||||
"info.copy_column1": "The (KPJC) develops educational initiatives, spaces for deep reflection and concrete actions in the public sphere, integrating spiritual principles, institutional responsibility, and ethical leadership. Its work is anchored in the field of <strong>public diplomacy</strong>, deemed a legitimate tool to shape the global conversation, strengthen ties between nations, and defend fundamental values against the challenges of the present and the future.",
|
||||
"info.copy_column2": "Peace is not conceived as an abstract slogan nor a naive ideal, but as the result of resolute decisions, values-driven leadership, and a sustained commitment to clear goals, recognizing Israel’s irreplaceable role in building a just and stable order for all mankind.",
|
||||
"info.endbox": {
|
||||
"title": "Mission, Vision and Institutional Values.",
|
||||
"buttonLabel": "READ MORE",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "Justice"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "Peace"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "Institutional Identity",
|
||||
"identity.title": "Kingdom of Peace and Justice Center",
|
||||
"identity.body": "<p><b>The Kingdom of Peace and Justice Center</b> is an international organization made up of <b>thousands of volunteers throughout numerous countries</b>, who act in alignment under the leadership and guidance of <b>Dr. José Benjamín Pérez Matos</b>, the sole point of reference of the KPJC.</p><p>The KPJC has an active <strong>presence in different continents</strong>, bringing together individuals, leaders, communities, and institutions that share a common vision: to bring the values of the Kingdom into the public sphere and to meet the challenges that the world is currently facing with responsibility and conviction.</p><p>The KPJC was created with a clear mission: <b>to build bridges between faith and action in the public sphere</b>, integrating spiritual reflection, intellectual development, and actionable commitment, to pave the way for a new era marked by a more just order, true peace, and a better world, according to the prophetic vision.</p><p>Its vision is strategic, international, and forward-looking, mindful of emerging conflicts, cultural tensions, geopolitical challenges, and the need for steadfast leadership capable of acting with clarity in times of global transformation.</p>",
|
||||
"authority.title": "<strong>Authority</strong> | Kingdom of Peace and Justice Center",
|
||||
"authority.body": "<strong>Dr. José Benjamín Pérez Matos</strong> is the <strong>founder and sole leader of the Kingdom of Peace and Justice Center.</strong> His leadership combines spiritual vision, intellectual development, public action, and global reach.",
|
||||
"title1.title": "Dr. José Benjamín Pérez Matos | Trajectory",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "Administration Of La Gran Carpa Catedral. Puerto Rico",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "Active involvement in international scenarios.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "Biblical teaching applied to the analysis of the contemporary world.",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "Public commitment in defense, justice and peace of Israel.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "Mission",
|
||||
"color1.text": "To form leaders, promote educational initiatives, and encourage public actions in pursuit of justice and peace, based on a firm ethical and spiritual foundation, with an explicit commitment to Israel and a responsibility to contribute to the well-being and stability of mankind as a whole.",
|
||||
"color2.title": "Vision",
|
||||
"color2.text": "To position ourselves as an international benchmark in leadership development, public diplomacy, and institutional outreach, recognized for our consistency, clear values, and tangible contribution to building a world aligned with the prophetic vision of justice and peace.",
|
||||
"title2.title": "Institutional Values",
|
||||
"values.justice.title": "Justice",
|
||||
"values.justice.text": "An active commitment to a just order grounded in moral principles, respect for human dignity, and the defense of enduring values.",
|
||||
"values.integrity.title": "Integrity",
|
||||
"values.integrity.text": "Alignment of thought, word, and deed; institutional transparency and accountability in the public sphere.",
|
||||
"values.service.title": "Service with purpose",
|
||||
"values.service.text": "A calling to accompany others and act in pursuit of clear and transcendent goals.",
|
||||
"values.excellence.title": "Excellence",
|
||||
"values.excellence.text": "Intellectual rigor, professionalism, and continuous improvement in all work areas.",
|
||||
"values.dialogue.title": "Strategic dialogue",
|
||||
"values.dialogue.text": "Openness to exchange across cultures, nations, and faiths, while upholding fundamental convictions and principles.",
|
||||
"projection.title": "Public Diplomacy and International Projection",
|
||||
"projection.text": "<p>The <strong>Kingdom of Peace and Justice Center</strong> pursues an active policy of public diplomacy, defined as the intentional building of ethical, cultural, and strategic bonds between peoples, institutions, and global leaders.</p><p><strong>Through meetings, international missions, forums, and institutional relations, the KPJC promotes:</strong></p><p><ul><li>Interreligious and intercultural dialogue based on steadfast values.</li><li>The advocacy of justice and peace in international settings.</li><li>Partnership with political, academic, and social leaders.</li><li><strong>Clear and unwavering support for the Jewish people and the State of Israel, recognizing its historical, spiritual, and geopolitical significance.</li></ul></p><p>This global reach positions the KPJC as a stakeholder in the global discourse on the future of the world, international stability, and the enduring relevance of prophetic values.</p>",
|
||||
"projection.card1": "The connection with political, academic and social leaders.",
|
||||
"projection.card2": "Clear and permanent support for the Jewish people and the State of Israel",
|
||||
"formation.title": "Training and Development",
|
||||
"formation.subtitle": "Programs and Areas of Action",
|
||||
"formation.text": "The KPJC develops courses, seminars, and training programs for leaders, professionals, institutional management, and public stakeholders.",
|
||||
"formation.area.title": "Training areas",
|
||||
"formation.area.text": "<li>Ethical and strategic leadership.</li> <li>Mediation and responsible conflict resolution.</li> <li>Faith, values, and action in the public sphere.</li> <li>Analysis of global scenarios and contemporary challenges.</li> <li>Foundations for building a solid and lasting peace, with a focus on Israel.</li>",
|
||||
"formation.consulting.title": "Advisory and Consulting",
|
||||
"formation.consulting.text": "Strategic support for organizations and institutions seeking to design and implement impactful initiatives aligned with clear values, overarching objectives, and a long-term vision.",
|
||||
"formation.action.title": "Action Projects",
|
||||
"formation.action.text": "The advancement of tangible initiatives in different areas, focused on development, conflict prevention, and empowerment of local leadership with a global vision.",
|
||||
"news.title": "News",
|
||||
"news.text": "Institutional updates and global reach",
|
||||
"news.text2": "This section brings together the main events, awards, and undertakings of the Kingdom of Peace and Justice Center and its founder.",
|
||||
"news.text3": "This page brings together the main events, awards, and undertakings of the Kingdom of Peace and Justice Center and its founder.",
|
||||
"news.buttonLable": "See More News",
|
||||
"news.seemore": "See More",
|
||||
"news.fullnew": "Read Complete Article",
|
||||
"news.all": "All",
|
||||
"news.allYears": "All years",
|
||||
"participate.title": "Participate | Collaborate",
|
||||
"participate.text": "Joining means making a commitment with purpose",
|
||||
"participate.text2": "The work of KPJC is strengthened by the participation of individuals and institutions aligned with its values and overarching objectives:",
|
||||
"participate.box1.title": "Volunteering:",
|
||||
"participate.box1.text": "participation in educational, institutional, or international projects.",
|
||||
"participate.box2.title": "Institutional outreach:",
|
||||
"participate.box2.text": "amplify the KPJC’s mission and activities in the public sphere.",
|
||||
"participate.text3": "Peace is built through responsible decisions, committed leadership, and sustained action.",
|
||||
"footer.title": "Contact",
|
||||
"footer.subtitle": "Let’s connect with vision and purpose",
|
||||
"footer.text": "The Kingdom of Peace and Justice Center has direct channels for institutional inquiries and participation in international programs and events.",
|
||||
"footer.text2": "Social media: regular updates on events and announcements.",
|
||||
"footer.email": "Email:",
|
||||
"footer.form.name": "Name and Lastname",
|
||||
"footer.form.mesagge": "Write a message",
|
||||
"footer.form.button": "Send",
|
||||
"footer.reserved": "©2026 All Rights Reserved. Kingdom of Peace and Justice Center"
|
||||
}
|
||||
|
|
|
|||
382
src/i18n/es.json
382
src/i18n/es.json
|
|
@ -1,192 +1,194 @@
|
|||
{
|
||||
"nav.logo_line1": "Centro del Reino",
|
||||
"nav.logo_line2": "de Paz y Justicia",
|
||||
"nav.about": "Somos",
|
||||
"nav.news": "Noticias",
|
||||
"nav.programs": "Programas",
|
||||
"nav.archive": "Archivo",
|
||||
"nav.nations": "Naciones",
|
||||
"nav.contact": "Contacto",
|
||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||
"hero.title": "Líder fundador",
|
||||
"hero.body": "“El sueño de mi vida es ver cumplida la visión de los profetas: un mundo de justicia y paz para el bien de Israel y de toda la humanidad.”",
|
||||
"carousel.text1": "Paz",
|
||||
"carousel.text2": "Justicia",
|
||||
"info.title": "Construyendo el mundo soñado por los profetas: justicia y paz para Israel y toda la humanidad",
|
||||
"info.register": "Registrarse",
|
||||
"info.modal.title": "Formulario disponible próximamente",
|
||||
"info.modal.text": "Estamos ultimando detalles para habilitar el formulario de voluntariado. Muy pronto podrás completar tu inscripción desde esta sección.",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "Diplomacia Pública y proyección Internacional",
|
||||
"copy": "Construcción consciente de vínculos éticos, culturales y estratégicos entre pueblos",
|
||||
"buttonLabel": "Leer más",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Programas y áreas de Acción",
|
||||
"copy": "Cursos, seminarios y programas de formación dirigidos a líderes, profesionales, referentes.",
|
||||
"buttonLabel": "Leer más",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Quiero postularme como Voluntario",
|
||||
"copy": "Sumarse es asumir un compromiso con propósito",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "Registrarse",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "El <b>Centro del Reino de Paz y Justicia (CRPJ)</b> es una organización de alcance <b>internacional dedicada a la formación, el diálogo estratégico y la acción pública, orientada a promover la justicia y la paz</b> conforme a los valores eternos proclamados por los profetas, con un compromiso explícito y permanente con Israel y su lugar central en la historia y el destino del mundo.",
|
||||
"info.copy_column1": "El Centro del Reino de Paz y Justicia (CRPJ) desarrolla iniciativas educativas, espacios de reflexión profunda y acciones concretas en el ámbito público, integrando principios espirituales, responsabilidad institucional y liderazgo ético. Su labor se inscribe en el campo de la diplomacia pública, entendida como una herramienta legítima para influir en la conversación global, fortalecer vínculos entre naciones y defender valores fundamentales frente a los desafíos del presente y del futuro.",
|
||||
"info.copy_column2": "La paz no es concebida como una consigna abstracta ni como un ideal ingenuo, sino como el resultado de decisiones firmes, liderazgo con valores y compromiso sostenido con propósitos claros, que reconocen el rol insustituible de Israel en la construcción de un orden justo y estable para toda la humanidad.",
|
||||
"info.endbox": {
|
||||
"title": "Misión, Visión y Valores Institucionales.",
|
||||
"buttonLabel": "LEER MÁS",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
"nav.logo_line1": "Centro del Reino",
|
||||
"nav.logo_line2": "de Paz y Justicia",
|
||||
"nav.home": "Inicio",
|
||||
"nav.about": "Somos",
|
||||
"nav.news": "Noticias",
|
||||
"nav.programs": "Programas",
|
||||
"nav.archive": "Archivo",
|
||||
"nav.nations": "Naciones",
|
||||
"nav.contact": "Contacto",
|
||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||
"hero.title": "Líder fundador",
|
||||
"hero.body": "“El sueño de mi vida es ver cumplida la visión de los profetas: un mundo de justicia y paz para el bien de Israel y de toda la humanidad.”",
|
||||
"carousel.text1": "Paz",
|
||||
"carousel.text2": "Justicia",
|
||||
"info.title": "Construyendo el mundo soñado por los profetas: justicia y paz para Israel y toda la humanidad",
|
||||
"info.register": "Registrarse",
|
||||
"info.modal.title": "Formulario disponible próximamente",
|
||||
"info.modal.text": "Estamos ultimando detalles para habilitar el formulario de voluntariado. Muy pronto podrás completar tu inscripción desde esta sección.",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "Diplomacia Pública y proyección Internacional",
|
||||
"copy": "Construcción consciente de vínculos éticos, culturales y estratégicos entre pueblos",
|
||||
"buttonLabel": "Leer más",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "Justicia"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "Paz"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "Identidad Institucional",
|
||||
"identity.title": "El Centro del Reino de Paz y Justicia",
|
||||
"identity.body": "<p><b>El Centro del Reino de Paz y Justicia</b> es una organización internacional conformada por <b>miles de voluntarios distribuidos en numerosos países</b>, que actúan de manera coordinada bajo el liderazgo y la guía del <b>Dr. José Benjamín Pérez Matos</b>, único referente del Centro del Reino de Paz y Justicia (CRPJ).</p><p>El Centro cuenta con <strong>presencia activa en distintos continentes</strong>, articulando personas, líderes, comunidades e instituciones que comparten una visión común: llevar los valores del Reino al espacio público y afrontar, con responsabilidad y convicción, los desafíos que atraviesa el mundo actual.</p><p>El Centro del Reino de Paz y Justicia (CRPJ) nace con una misión clara: <b>tender puentes entre la fe y la acción en el ámbito público</b>, integrando reflexión espiritual, formación intelectual y compromiso práctico, con el objetivo de preparar el camino hacia una nueva era, marcada por un orden más justo, una paz verdadera y un mundo mejor, conforme a la visión profética.</p><p>Su mirada es estratégica, internacional y orientada al futuro, consciente de los conflictos emergentes, las tensiones culturales, los desafíos geopolíticos y la necesidad de liderazgos sólidos capaces de actuar con claridad en tiempos de transformación global.</p>",
|
||||
"authority.title": "<strong>Autoridades</strong> | Centro del Reino de Paz y Justicia",
|
||||
"authority.body": "El <strong>Dr. José Benjamín Pérez Matos</strong> es el <strong>fundador y único referente del Centro del Reino de Paz y Justicia.</strong> Su liderazgo articula visión espiritual, formación intelectual, acción pública y proyección internacional.",
|
||||
"title1.title": "Dr. José Benjamín Pérez Matos | Trayectoria",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "Dirección de La Gran Carpa Catedral. Puerto Rico",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "Participación activa en escenarios internacionales.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "Enseñanza bíblica aplicada al análisis del mundo contemporáneo.",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "Compromiso público en la defensa de Israel, la justicia y la paz.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "Misión",
|
||||
"color1.text": "Formar líderes, impulsar iniciativas educativas y promover acciones públicas orientadas a la justicia y la paz, desde una base ética y espiritual firme, con un compromiso explícito con Israel y con la responsabilidad de contribuir al bienestar y la estabilidad de la humanidad en su conjunto.",
|
||||
"color2.title": "Visión",
|
||||
"color2.text": "Consolidarse como un actor internacional de referencia en formación de liderazgo, diplomacia pública y proyección institucional, reconocido por su coherencia, su claridad de valores y su contribución concreta a la construcción de un mundo alineado con la visión profética de justicia y paz.",
|
||||
"title2.title": "Valores Institucionales",
|
||||
"values.justice.title": "Justicia",
|
||||
"values.justice.text": "Compromiso activo con un orden justo, basado en principios morales, respeto por la dignidad humana y defensa de valores permanentes.",
|
||||
"values.integrity.title": "Integridad",
|
||||
"values.integrity.text": "Coherencia entre pensamiento, palabra y acción; transparencia institucional y responsabilidad en el espacio público.",
|
||||
"values.service.title": "Servicio",
|
||||
"values.service.text": "Vocación de acompañamiento y acción orientada a objetivos claros y trascendentes.",
|
||||
"values.excellence.title": "Excelencia",
|
||||
"values.excellence.text": "Rigor intelectual, profesionalismo y mejora constante en todas las áreas de trabajo.",
|
||||
"values.dialogue.title": "Diálogo Estratégico",
|
||||
"values.dialogue.text": "Apertura al intercambio entre culturas, naciones y credos, sin renunciar a convicciones ni principios fundamentales.",
|
||||
"projection.title": "Diplomacia Pública y Proyección Internacional",
|
||||
"projection.text": "<p>El <strong>Centro del Reino de Paz y Justicia</strong> lleva adelante una activa política de diplomacia pública, entendida como la construcción consciente de vínculos éticos, culturales y estratégicos entre pueblos, instituciones y liderazgos globales.</p><p><strong>A través de encuentros, giras internacionales, foros y relaciones institucionales, el Centro del Reino de Paz y Justicia (CRPJ) impulsa:</strong></p><p><ul><li>El diálogo interreligioso e intercultural desde valores firmes.</li><li>La defensa de la justicia y la paz en escenarios internacionales.</li><li>La vinculación con líderes políticos, académicos y sociales.</li><li>El <strong>apoyo claro y permanente al pueblo judío y al Estado de Israel</strong>, reconociendo su centralidad histórica, espiritual y geopolítica.</li></ul></p><p>Esta proyección internacional posiciona al Centro del Reino de Paz y Justicia (CRPJ) como un <strong>actor relevante en el debate global sobre el futuro del mundo</strong>, la estabilidad internacional y la vigencia de los valores proféticos.</p>",
|
||||
"projection.card1": "La vinculación con líderes políticos, académicos y sociales.",
|
||||
"projection.card2": "Apoyo claro y permanente al pueblo judío y al Estado de Israel.",
|
||||
"formation.title": "Formación y Capacitación",
|
||||
"formation.subtitle": "Programas y Área de Acción",
|
||||
"formation.text": "El <strong>Centro del Reino de Paz y Justicia (CRPJ) desarrolla cursos, seminarios y programas de formación</strong> dirigidos a líderes, profesionales, referentes institucionales y actores con responsabilidad pública.",
|
||||
"formation.area.title": "Area de Formación",
|
||||
"formation.area.text": "<li>Liderazgo ético y estratégico.</li> <li>Mediación y resolución responsable de conflictos.</li> <li>Fe, valores y acción en el espacio público.</li> <li>Análisis de escenarios internacionales y desafíos contemporáneos.</li> <li>Fundamentos para la construcción de una paz sólida y duradera, con eje en Israel.</li>",
|
||||
"formation.consulting.title": "Asesoría y Consultoría",
|
||||
"formation.consulting.text": "Acompañamiento estratégico a organizaciones e instituciones que buscan diseñar e implementar iniciativas de impacto, alineadas con valores claros, objetivos transversales y una visión de largo plazo.",
|
||||
"formation.action.title": "Proyectos de Acción",
|
||||
"formation.action.text": "Desarrollo de iniciativas concretas en distintos territorios, orientadas a la formación, la prevención de conflictos y el fortalecimiento de liderazgos locales con visión internacional.",
|
||||
"news.title": "Noticias",
|
||||
"news.text": "Actualidad institucional y proyección internacional",
|
||||
"news.text2": "Esta sección reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
||||
"news.text3": "Esta página reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
||||
"news.buttonLable": "Ver Más Noticias",
|
||||
"news.seemore": "Ver Más",
|
||||
"news.all": "Todas",
|
||||
"news.allYears": "Todos los años",
|
||||
"participate.title": "Participa | Colabora",
|
||||
"participate.text": "Sumarse es asumir un compromiso con propósito",
|
||||
"participate.text2": "La labor del <strong>Centro del Reino de Paz y Justicia</strong> se fortalece mediante la participación de personas e instituciones alineadas con sus valores y objetivos generales. Formas de participar:",
|
||||
"participate.box1.title": "Voluntariado:",
|
||||
"participate.box1.text": "colaboración en proyectos formativos, institucionales o internacionales.",
|
||||
"participate.box2.title": "Difusión institucional:",
|
||||
"participate.box2.text": "amplificación de la misión y acciones del Centro del Reino de Paz y Justicia (CRPJ) en espacios públicos.",
|
||||
"participate.text3": "La paz se construye mediante decisiones responsables, liderazgo comprometido y acción sostenida.",
|
||||
"footer.title": "Contacto",
|
||||
"footer.subtitle": "Conectemos con visión y propósito ",
|
||||
"footer.text": "El <strong>Centro del Reino de Paz y Justicia</strong> dispone de canales directos para consultas institucionales, participación en programas y actividades internacionales. ",
|
||||
"footer.text2": "Redes sociales: actualizaciones permanentes sobre actividades y convocatorias.",
|
||||
"footer.email": "Correo electrónico:",
|
||||
"footer.form.name": "Nombre y Apellido",
|
||||
"footer.form.mesagge": "Escriba su mensaje",
|
||||
"footer.form.button": "Enviar",
|
||||
"footer.reserved": "©2026. Todos los Derechos Reservados. Centro del Reino de Paz y Justicia"
|
||||
}
|
||||
{
|
||||
"title": "Programas y áreas de Acción",
|
||||
"copy": "Cursos, seminarios y programas de formación dirigidos a líderes, profesionales, referentes.",
|
||||
"buttonLabel": "Leer más",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Quiero postularme como Voluntario",
|
||||
"copy": "Sumarse es asumir un compromiso con propósito",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "Registrarse",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "El <b>Centro del Reino de Paz y Justicia (CRPJ)</b> es una organización de alcance <b>internacional dedicada a la formación, el diálogo estratégico y la acción pública, orientada a promover la justicia y la paz</b> conforme a los valores eternos proclamados por los profetas, con un compromiso explícito y permanente con Israel y su lugar central en la historia y el destino del mundo.",
|
||||
"info.copy_column1": "El Centro del Reino de Paz y Justicia (CRPJ) desarrolla iniciativas educativas, espacios de reflexión profunda y acciones concretas en el ámbito público, integrando principios espirituales, responsabilidad institucional y liderazgo ético. Su labor se inscribe en el campo de la diplomacia pública, entendida como una herramienta legítima para influir en la conversación global, fortalecer vínculos entre naciones y defender valores fundamentales frente a los desafíos del presente y del futuro.",
|
||||
"info.copy_column2": "La paz no es concebida como una consigna abstracta ni como un ideal ingenuo, sino como el resultado de decisiones firmes, liderazgo con valores y compromiso sostenido con propósitos claros, que reconocen el rol insustituible de Israel en la construcción de un orden justo y estable para toda la humanidad.",
|
||||
"info.endbox": {
|
||||
"title": "Misión, Visión y Valores Institucionales.",
|
||||
"buttonLabel": "LEER MÁS",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "Justicia"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "Paz"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "Identidad Institucional",
|
||||
"identity.title": "El Centro del Reino de Paz y Justicia",
|
||||
"identity.body": "<p><b>El Centro del Reino de Paz y Justicia</b> es una organización internacional conformada por <b>miles de voluntarios distribuidos en numerosos países</b>, que actúan de manera coordinada bajo el liderazgo y la guía del <b>Dr. José Benjamín Pérez Matos</b>, único referente del Centro del Reino de Paz y Justicia (CRPJ).</p><p>El Centro cuenta con <strong>presencia activa en distintos continentes</strong>, articulando personas, líderes, comunidades e instituciones que comparten una visión común: llevar los valores del Reino al espacio público y afrontar, con responsabilidad y convicción, los desafíos que atraviesa el mundo actual.</p><p>El Centro del Reino de Paz y Justicia (CRPJ) nace con una misión clara: <b>tender puentes entre la fe y la acción en el ámbito público</b>, integrando reflexión espiritual, formación intelectual y compromiso práctico, con el objetivo de preparar el camino hacia una nueva era, marcada por un orden más justo, una paz verdadera y un mundo mejor, conforme a la visión profética.</p><p>Su mirada es estratégica, internacional y orientada al futuro, consciente de los conflictos emergentes, las tensiones culturales, los desafíos geopolíticos y la necesidad de liderazgos sólidos capaces de actuar con claridad en tiempos de transformación global.</p>",
|
||||
"authority.title": "<strong>Autoridades</strong> | Centro del Reino de Paz y Justicia",
|
||||
"authority.body": "El <strong>Dr. José Benjamín Pérez Matos</strong> es el <strong>fundador y único referente del Centro del Reino de Paz y Justicia.</strong> Su liderazgo articula visión espiritual, formación intelectual, acción pública y proyección internacional.",
|
||||
"title1.title": "Dr. José Benjamín Pérez Matos | Trayectoria",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "Dirección de La Gran Carpa Catedral. Puerto Rico",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "Participación activa en escenarios internacionales.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "Enseñanza bíblica aplicada al análisis del mundo contemporáneo.",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "Compromiso público en la defensa de Israel, la justicia y la paz.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "Misión",
|
||||
"color1.text": "Formar líderes, impulsar iniciativas educativas y promover acciones públicas orientadas a la justicia y la paz, desde una base ética y espiritual firme, con un compromiso explícito con Israel y con la responsabilidad de contribuir al bienestar y la estabilidad de la humanidad en su conjunto.",
|
||||
"color2.title": "Visión",
|
||||
"color2.text": "Consolidarse como un actor internacional de referencia en formación de liderazgo, diplomacia pública y proyección institucional, reconocido por su coherencia, su claridad de valores y su contribución concreta a la construcción de un mundo alineado con la visión profética de justicia y paz.",
|
||||
"title2.title": "Valores Institucionales",
|
||||
"values.justice.title": "Justicia",
|
||||
"values.justice.text": "Compromiso activo con un orden justo, basado en principios morales, respeto por la dignidad humana y defensa de valores permanentes.",
|
||||
"values.integrity.title": "Integridad",
|
||||
"values.integrity.text": "Coherencia entre pensamiento, palabra y acción; transparencia institucional y responsabilidad en el espacio público.",
|
||||
"values.service.title": "Servicio",
|
||||
"values.service.text": "Vocación de acompañamiento y acción orientada a objetivos claros y trascendentes.",
|
||||
"values.excellence.title": "Excelencia",
|
||||
"values.excellence.text": "Rigor intelectual, profesionalismo y mejora constante en todas las áreas de trabajo.",
|
||||
"values.dialogue.title": "Diálogo Estratégico",
|
||||
"values.dialogue.text": "Apertura al intercambio entre culturas, naciones y credos, sin renunciar a convicciones ni principios fundamentales.",
|
||||
"projection.title": "Diplomacia Pública y Proyección Internacional",
|
||||
"projection.text": "<p>El <strong>Centro del Reino de Paz y Justicia</strong> lleva adelante una activa política de diplomacia pública, entendida como la construcción consciente de vínculos éticos, culturales y estratégicos entre pueblos, instituciones y liderazgos globales.</p><p><strong>A través de encuentros, giras internacionales, foros y relaciones institucionales, el Centro del Reino de Paz y Justicia (CRPJ) impulsa:</strong></p><p><ul><li>El diálogo interreligioso e intercultural desde valores firmes.</li><li>La defensa de la justicia y la paz en escenarios internacionales.</li><li>La vinculación con líderes políticos, académicos y sociales.</li><li>El <strong>apoyo claro y permanente al pueblo judío y al Estado de Israel</strong>, reconociendo su centralidad histórica, espiritual y geopolítica.</li></ul></p><p>Esta proyección internacional posiciona al Centro del Reino de Paz y Justicia (CRPJ) como un <strong>actor relevante en el debate global sobre el futuro del mundo</strong>, la estabilidad internacional y la vigencia de los valores proféticos.</p>",
|
||||
"projection.card1": "La vinculación con líderes políticos, académicos y sociales.",
|
||||
"projection.card2": "Apoyo claro y permanente al pueblo judío y al Estado de Israel.",
|
||||
"formation.title": "Formación y Capacitación",
|
||||
"formation.subtitle": "Programas y Área de Acción",
|
||||
"formation.text": "El <strong>Centro del Reino de Paz y Justicia (CRPJ) desarrolla cursos, seminarios y programas de formación</strong> dirigidos a líderes, profesionales, referentes institucionales y actores con responsabilidad pública.",
|
||||
"formation.area.title": "Area de Formación",
|
||||
"formation.area.text": "<li>Liderazgo ético y estratégico.</li> <li>Mediación y resolución responsable de conflictos.</li> <li>Fe, valores y acción en el espacio público.</li> <li>Análisis de escenarios internacionales y desafíos contemporáneos.</li> <li>Fundamentos para la construcción de una paz sólida y duradera, con eje en Israel.</li>",
|
||||
"formation.consulting.title": "Asesoría y Consultoría",
|
||||
"formation.consulting.text": "Acompañamiento estratégico a organizaciones e instituciones que buscan diseñar e implementar iniciativas de impacto, alineadas con valores claros, objetivos transversales y una visión de largo plazo.",
|
||||
"formation.action.title": "Proyectos de Acción",
|
||||
"formation.action.text": "Desarrollo de iniciativas concretas en distintos territorios, orientadas a la formación, la prevención de conflictos y el fortalecimiento de liderazgos locales con visión internacional.",
|
||||
"news.title": "Noticias",
|
||||
"news.text": "Actualidad institucional y proyección internacional",
|
||||
"news.text2": "Esta sección reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
||||
"news.text3": "Esta página reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
||||
"news.buttonLable": "Ver Más Noticias",
|
||||
"news.seemore": "Ver Más",
|
||||
"news.fullnew": "Leer Noticia Completa",
|
||||
"news.all": "Todas",
|
||||
"news.allYears": "Todos los años",
|
||||
"participate.title": "Participa | Colabora",
|
||||
"participate.text": "Sumarse es asumir un compromiso con propósito",
|
||||
"participate.text2": "La labor del <strong>Centro del Reino de Paz y Justicia</strong> se fortalece mediante la participación de personas e instituciones alineadas con sus valores y objetivos generales. Formas de participar:",
|
||||
"participate.box1.title": "Voluntariado:",
|
||||
"participate.box1.text": "colaboración en proyectos formativos, institucionales o internacionales.",
|
||||
"participate.box2.title": "Difusión institucional:",
|
||||
"participate.box2.text": "amplificación de la misión y acciones del Centro del Reino de Paz y Justicia (CRPJ) en espacios públicos.",
|
||||
"participate.text3": "La paz se construye mediante decisiones responsables, liderazgo comprometido y acción sostenida.",
|
||||
"footer.title": "Contacto",
|
||||
"footer.subtitle": "Conectemos con visión y propósito ",
|
||||
"footer.text": "El <strong>Centro del Reino de Paz y Justicia</strong> dispone de canales directos para consultas institucionales, participación en programas y actividades internacionales. ",
|
||||
"footer.text2": "Redes sociales: actualizaciones permanentes sobre actividades y convocatorias.",
|
||||
"footer.email": "Correo electrónico:",
|
||||
"footer.form.name": "Nombre y Apellido",
|
||||
"footer.form.mesagge": "Escriba su mensaje",
|
||||
"footer.form.button": "Enviar",
|
||||
"footer.reserved": "©2026. Todos los Derechos Reservados. Centro del Reino de Paz y Justicia"
|
||||
}
|
||||
|
|
|
|||
382
src/i18n/fr.json
382
src/i18n/fr.json
|
|
@ -1,192 +1,194 @@
|
|||
{
|
||||
"nav.logo_line1": "Le Centre du Royaume",
|
||||
"nav.logo_line2": "de Paix et de Justice",
|
||||
"nav.about": "Qui sommes-nous",
|
||||
"nav.news": "Informations",
|
||||
"nav.programs": "Programmes",
|
||||
"nav.archive": "Archivo",
|
||||
"nav.nations": "Naciones",
|
||||
"nav.contact": "Contact",
|
||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||
"hero.title": "Leader fondateur",
|
||||
"hero.body": "« Le rêve de ma vie, c’est de voir la vision des prophètes accomplie : un monde de justice et de paix pour le bien d’Israël et de toute l’humanité. »",
|
||||
"carousel.text1": "Paix",
|
||||
"carousel.text2": "Justice",
|
||||
"info.title": "« Construire le monde rêvé par les prophètes : la justice et la paix pour Israël et pour toute l’humanité »",
|
||||
"info.register": "S’inscrire",
|
||||
"info.modal.title": "Formulario disponibVOIR PLUS D’INFORMATION’S le próximamente",
|
||||
"info.modal.text": "Estamos ultimando detalles para habilitar el formulario de voluntariado. Muy pronto podrás completar tu inscripción desde esta sección.",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "Diplomatie publique et projection internationale",
|
||||
"copy": "Construction consciente de liens éthiques, culturels et stratégiques entre les peuples",
|
||||
"buttonLabel": "En savoir plus",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Programmes et zones d’action",
|
||||
"copy": "Cours, séminaires et programmes de formation destinés à des leaders, des professionnels, des référents",
|
||||
"buttonLabel": "En savoir plus",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Je veux devenir volontaire",
|
||||
"copy": "Se joindre, c’est prendre un engagement avec un but",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "S’inscrire",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "Le Centre du Royaume de Paix et de Justice (CRPJ) est une organisation de portée internationale dédiée à la formation, au dialogue stratégique et à l’action publique, orientée à promouvoir la justice et la paix selon les valeurs éternelles proclamées par les prophètes, avec un engagement explicite et permanent envers Israël et sa place centrale dans l’histoire et le destin du monde.",
|
||||
"info.copy_column1": "Le Centre du Royaume de Paix et de Justice (CRPJ) développe des initiatives éducatives, des espaces de réflexion profonde et des actions concrètes dans le domaine public, intégrant des principes spirituels, la responsabilité institutionnelle et le leadership éthique. Son travail s’inscrit dans le cadre de la diplomatie publique, comprise comme étant un outil légitime pour influer sur la conversation mondiale, fortifier les liens entre les nations et défendre les valeurs fondamentales face aux défis du présent et du futur.",
|
||||
"info.copy_column2": "La paix n’est pas conçue comme une consigne abstraite ni comme un idéal naïf, mais comme le résultat de décisions fermes, d’un leadership avec des valeurs et d’un engagement soutenu avec des buts clairs, qui reconnaissent le rôle irremplaçable d’Israël dans la construction d’un ordre juste et stable pour toute l’humanité.",
|
||||
"info.endbox": {
|
||||
"title": "Mission, vision et valeurs institutionnelles",
|
||||
"buttonLabel": "En savoir plus",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
"nav.logo_line1": "Le Centre du Royaume",
|
||||
"nav.logo_line2": "de Paix et de Justice",
|
||||
"nav.home": "Accueil",
|
||||
"nav.about": "Qui sommes-nous",
|
||||
"nav.news": "Informations",
|
||||
"nav.programs": "Programmes",
|
||||
"nav.archive": "Archivo",
|
||||
"nav.nations": "Naciones",
|
||||
"nav.contact": "Contact",
|
||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||
"hero.title": "Leader fondateur",
|
||||
"hero.body": "« Le rêve de ma vie, c’est de voir la vision des prophètes accomplie : un monde de justice et de paix pour le bien d’Israël et de toute l’humanité. »",
|
||||
"carousel.text1": "Paix",
|
||||
"carousel.text2": "Justice",
|
||||
"info.title": "« Construire le monde rêvé par les prophètes : la justice et la paix pour Israël et pour toute l’humanité »",
|
||||
"info.register": "S’inscrire",
|
||||
"info.modal.title": "Formulario disponibVOIR PLUS D’INFORMATION’S le próximamente",
|
||||
"info.modal.text": "Estamos ultimando detalles para habilitar el formulario de voluntariado. Muy pronto podrás completar tu inscripción desde esta sección.",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "Diplomatie publique et projection internationale",
|
||||
"copy": "Construction consciente de liens éthiques, culturels et stratégiques entre les peuples",
|
||||
"buttonLabel": "En savoir plus",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "Justicia"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "Paz"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "Identité institutionnelle",
|
||||
"identity.title": "Le Centre du Royaume de Paix et de Justice",
|
||||
"identity.body": "<p>Le Centre du Royaume de Paix et de Justice est une organisation internationale composée de milliers de volontaires répartis dans de nombreux pays, qui agissent de manière coordonnée sous le leadership et la direction du Dr. José Benjamín Pérez Matos, seul référent du Centre du Royaume de Paix et de Justice (CRPJ).</p><p>Le Centre dispose d’une présence active sur divers continents et articule des personnes, des leaders, des communautés et des institutions qui partagent une vision commune : apporter les valeurs du Royaume dans l’espace public et affronter, avec responsabilité et conviction, les défis que traverse le monde actuel.</p><p>Le Centre du Royaume de Paix et de Justice (CRPJ) naît avec une mission claire : établir des ponts entre la foi et l’action dans le domaine public et intégrer la réflexion spirituelle, la formation intellectuelle et l’engagement pratique, dans l’objectif de préparer le chemin vers une nouvelle ère, marquée par un ordre plus juste, une paix véritable et un monde meilleur, selon la vision prophétique.</p><p>Son regard est stratégique, international et orienté vers le futur, conscient des conflits émergents, des tensions culturelles, des défis géopolitiques et de la nécessité de leaderships solides capables d’agir avec clarté en des temps de transformation mondiale.</p>",
|
||||
"authority.title": "<strong>Autorités</strong> | Centre du Royaume de Paix et de Justice",
|
||||
"authority.body": "Le Dr. José Benjamín Pérez Matos est le fondateur et l’unique référent du Centre du Royaume de Paix et de Justice. Son leadership articule vision spirituelle, formation intellectuelle, action publique et projection internationale.",
|
||||
"title1.title": "Dr. José Benjamín Pérez Matos | Trajectoire",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "Direction de La Gran Carpa Cathédrale (Porto Rico)",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "Participation active sur la scène internationale",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "Enseignement biblique appliqué à l’analyse du monde contemporain",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "Engagement public pour la défense d’Israël, la justice et la paix",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "Mission",
|
||||
"color1.text": "Former des leaders, impulser des initiatives éducatives et promouvoir des actions publiques orientées vers la justice et la paix, sur une base éthique et spirituelle ferme, avec un engagement explicite envers Israël et avec la responsabilité de contribuer au bien-être et à la stabilité de l’humanité dans son ensemble.",
|
||||
"color2.title": "Vision",
|
||||
"color2.text": "Se consolider comme un acteur international de référence dans la formation de leadership, la diplomatie publique et la projection institutionnelle, reconnu par sa cohérence, sa clarté de valeurs et sa contribution concrète à la construction d’un monde aligné sur la vision prophétique de justice et de paix.",
|
||||
"title2.title": "Valeurs Institutionnelles",
|
||||
"values.justice.title": "Justice",
|
||||
"values.justice.text": "Engagement actif avec un ordre juste, basé sur des principes moraux, le respect de la dignité humaine et la défense de valeurs permanentes",
|
||||
"values.integrity.title": "Intégrité",
|
||||
"values.integrity.text": "Cohérence entre pensée, parole et action ; transparence institutionnelle et responsabilité dans l’espace public",
|
||||
"values.service.title": "Service",
|
||||
"values.service.text": "Vocation d’accompagnement et d’action orientée vers des objectifs clairs et transcendants",
|
||||
"values.excellence.title": "Excellence",
|
||||
"values.excellence.text": "Rigueur intellectuelle, professionnalisme et amélioration constante dans tous les domaines de travail",
|
||||
"values.dialogue.title": "Dialogue stratégique",
|
||||
"values.dialogue.text": "Ouverture à l’échange entre cultures, nations et credos, sans renoncer aux convictions ni aux principes fondamentaux",
|
||||
"projection.title": "Diplomatie publique et projection internationale",
|
||||
"projection.text": "<p>Le Centre du Royaume de Paix et de Justice prône une politique active de diplomatie publique, comprise comme étant la construction consciente de liens éthiques, culturels et stratégiques entre peuples, institutions et leaderships mondiaux.</p><p><strong>À travers des rencontres, des tournées internationales, des forums et des relations institutionnelles, le Centre du Royaume de Paix et de Justice (CRPJ) impulse :</strong></p><p><ul><li>Le dialogue interreligieux et interculturel fondé sur des valeurs fermes.El diálogo interreligioso e intercultural desde valores firmes.</li><li>La défense de la justice et de la paix sur la scène internationale.</li><li>Le lien avec des leaders politiques, académiques et sociaux.</li><li>Le soutien clair et permanent au peuple juif et à l’État d’Israël, en reconnaissant sa centralité historique, spirituelle et géopolitique</li></ul></p><p>Cette projection internationale positionne le Centre du Royaume de Paix et de Justice (CRPJ) comme un acteur pertinent dans le débat global sur le futur du monde, la stabilité internationale et la validité des valeurs prophétiques.</p>",
|
||||
"projection.card1": "Le lien avec des leaders politiques, académiques et sociaux",
|
||||
"projection.card2": "Soutien clair et permanent au peuple juif et à l’État d’Israël.",
|
||||
"formation.title": "Formation et renforcement des capacités",
|
||||
"formation.subtitle": "Programmes et zone d’action",
|
||||
"formation.text": "Le Centre du Royaume de Paix et de Justice développe des cours, des séminaires et des programmes de formation destinés à des leaders, des professionnels, des référents institutionnels et des acteurs avec une responsabilité publique.",
|
||||
"formation.area.title": "Zone de formation",
|
||||
"formation.area.text": "<li>Leadership éthique et stratégique</li> <li>Médiation et résolution responsable de conflits</li> <li>Foi, valeurs et action dans l’espace public.</li> <li>Analyse de la scène internationale et des défis contemporains</li> <li>Fondements pour la construction d’une paix solide et durable, axée sur Israël.</li>",
|
||||
"formation.consulting.title": "Conseil et consulting",
|
||||
"formation.consulting.text": "Accompagnement stratégique d’organisations et d’institutions qui cherchent à concevoir et à exécuter des initiatives d’impact, alignées sur des valeurs claires, des objectifs transversaux et une vision à long terme.",
|
||||
"formation.action.title": "Projets d’action",
|
||||
"formation.action.text": "Développement d’initiatives concrètes sur divers territoires, orientées vers la formation, la prévention de conflits et le renforcement de leaderships locaux avec une vision internationale.",
|
||||
"news.title": "Informations",
|
||||
"news.text": "Actualité institutionnelle et projection internationale",
|
||||
"news.text2": "Cette section réunit les principales activités, prix et actions du Centre du Royaume de Paix et de Justice et de son fondateur.",
|
||||
"news.text3": "Esta página reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
||||
"news.buttonLable": "Voir Plus D’InformATIONS",
|
||||
"news.seemore": "Voir Plus D’InformATIONS",
|
||||
"news.all": "Todas",
|
||||
"news.allYears": "Todos los años",
|
||||
"participate.title": "Participez | Collaborez",
|
||||
"participate.text": "Se joindre, c’est prendre un engagement avec un but",
|
||||
"participate.text2": "Le travail du Centre du Royaume de Paix et de Justice se fortifie moyennant la participation de personnes et d’institutions alignées sur ses valeurs et ses objectifs généraux. Façons d’y participer :",
|
||||
"participate.box1.title": "Volontariat:",
|
||||
"participate.box1.text": "collaboration sur des projets formateurs, institutionnels ou internationaux",
|
||||
"participate.box2.title": "Diffusion institutionnelle :",
|
||||
"participate.box2.text": "amplification de la mission et des actions du Centre du Royaume de Paix et de Justice (CRPJ) dans les espaces publics",
|
||||
"participate.text3": "La paix se construit moyennant des décisions responsables, un leadership engagé et une action soutenue.",
|
||||
"footer.title": "Contact",
|
||||
"footer.subtitle": "Connectons avec une vision et un but.",
|
||||
"footer.text": "Le Centre du Royaume de Paix et de Justice dispose de canaux directs pour des consultations institutionnelles et la participation à des programmes et des activités internationales.",
|
||||
"footer.text2": "Réseaux sociaux : mises à jour permanentes sur des activités et des convocations.",
|
||||
"footer.email": "Courriel:",
|
||||
"footer.form.name": "Nom et prénom",
|
||||
"footer.form.mesagge": "Écrivez votre message",
|
||||
"footer.form.button": "Envoyer",
|
||||
"footer.reserved": "©2026. Tous droits réservés. Centre du Royaume de Paix et de Justice"
|
||||
}
|
||||
{
|
||||
"title": "Programmes et zones d’action",
|
||||
"copy": "Cours, séminaires et programmes de formation destinés à des leaders, des professionnels, des référents",
|
||||
"buttonLabel": "En savoir plus",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Je veux devenir volontaire",
|
||||
"copy": "Se joindre, c’est prendre un engagement avec un but",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "S’inscrire",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "Le Centre du Royaume de Paix et de Justice (CRPJ) est une organisation de portée internationale dédiée à la formation, au dialogue stratégique et à l’action publique, orientée à promouvoir la justice et la paix selon les valeurs éternelles proclamées par les prophètes, avec un engagement explicite et permanent envers Israël et sa place centrale dans l’histoire et le destin du monde.",
|
||||
"info.copy_column1": "Le Centre du Royaume de Paix et de Justice (CRPJ) développe des initiatives éducatives, des espaces de réflexion profonde et des actions concrètes dans le domaine public, intégrant des principes spirituels, la responsabilité institutionnelle et le leadership éthique. Son travail s’inscrit dans le cadre de la diplomatie publique, comprise comme étant un outil légitime pour influer sur la conversation mondiale, fortifier les liens entre les nations et défendre les valeurs fondamentales face aux défis du présent et du futur.",
|
||||
"info.copy_column2": "La paix n’est pas conçue comme une consigne abstraite ni comme un idéal naïf, mais comme le résultat de décisions fermes, d’un leadership avec des valeurs et d’un engagement soutenu avec des buts clairs, qui reconnaissent le rôle irremplaçable d’Israël dans la construction d’un ordre juste et stable pour toute l’humanité.",
|
||||
"info.endbox": {
|
||||
"title": "Mission, vision et valeurs institutionnelles",
|
||||
"buttonLabel": "En savoir plus",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "Justicia"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "Paz"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "Identité institutionnelle",
|
||||
"identity.title": "Le Centre du Royaume de Paix et de Justice",
|
||||
"identity.body": "<p>Le Centre du Royaume de Paix et de Justice est une organisation internationale composée de milliers de volontaires répartis dans de nombreux pays, qui agissent de manière coordonnée sous le leadership et la direction du Dr. José Benjamín Pérez Matos, seul référent du Centre du Royaume de Paix et de Justice (CRPJ).</p><p>Le Centre dispose d’une présence active sur divers continents et articule des personnes, des leaders, des communautés et des institutions qui partagent une vision commune : apporter les valeurs du Royaume dans l’espace public et affronter, avec responsabilité et conviction, les défis que traverse le monde actuel.</p><p>Le Centre du Royaume de Paix et de Justice (CRPJ) naît avec une mission claire : établir des ponts entre la foi et l’action dans le domaine public et intégrer la réflexion spirituelle, la formation intellectuelle et l’engagement pratique, dans l’objectif de préparer le chemin vers une nouvelle ère, marquée par un ordre plus juste, une paix véritable et un monde meilleur, selon la vision prophétique.</p><p>Son regard est stratégique, international et orienté vers le futur, conscient des conflits émergents, des tensions culturelles, des défis géopolitiques et de la nécessité de leaderships solides capables d’agir avec clarté en des temps de transformation mondiale.</p>",
|
||||
"authority.title": "<strong>Autorités</strong> | Centre du Royaume de Paix et de Justice",
|
||||
"authority.body": "Le Dr. José Benjamín Pérez Matos est le fondateur et l’unique référent du Centre du Royaume de Paix et de Justice. Son leadership articule vision spirituelle, formation intellectuelle, action publique et projection internationale.",
|
||||
"title1.title": "Dr. José Benjamín Pérez Matos | Trajectoire",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "Direction de La Gran Carpa Cathédrale (Porto Rico)",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "Participation active sur la scène internationale",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "Enseignement biblique appliqué à l’analyse du monde contemporain",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "Engagement public pour la défense d’Israël, la justice et la paix",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "Mission",
|
||||
"color1.text": "Former des leaders, impulser des initiatives éducatives et promouvoir des actions publiques orientées vers la justice et la paix, sur une base éthique et spirituelle ferme, avec un engagement explicite envers Israël et avec la responsabilité de contribuer au bien-être et à la stabilité de l’humanité dans son ensemble.",
|
||||
"color2.title": "Vision",
|
||||
"color2.text": "Se consolider comme un acteur international de référence dans la formation de leadership, la diplomatie publique et la projection institutionnelle, reconnu par sa cohérence, sa clarté de valeurs et sa contribution concrète à la construction d’un monde aligné sur la vision prophétique de justice et de paix.",
|
||||
"title2.title": "Valeurs Institutionnelles",
|
||||
"values.justice.title": "Justice",
|
||||
"values.justice.text": "Engagement actif avec un ordre juste, basé sur des principes moraux, le respect de la dignité humaine et la défense de valeurs permanentes",
|
||||
"values.integrity.title": "Intégrité",
|
||||
"values.integrity.text": "Cohérence entre pensée, parole et action ; transparence institutionnelle et responsabilité dans l’espace public",
|
||||
"values.service.title": "Service",
|
||||
"values.service.text": "Vocation d’accompagnement et d’action orientée vers des objectifs clairs et transcendants",
|
||||
"values.excellence.title": "Excellence",
|
||||
"values.excellence.text": "Rigueur intellectuelle, professionnalisme et amélioration constante dans tous les domaines de travail",
|
||||
"values.dialogue.title": "Dialogue stratégique",
|
||||
"values.dialogue.text": "Ouverture à l’échange entre cultures, nations et credos, sans renoncer aux convictions ni aux principes fondamentaux",
|
||||
"projection.title": "Diplomatie publique et projection internationale",
|
||||
"projection.text": "<p>Le Centre du Royaume de Paix et de Justice prône une politique active de diplomatie publique, comprise comme étant la construction consciente de liens éthiques, culturels et stratégiques entre peuples, institutions et leaderships mondiaux.</p><p><strong>À travers des rencontres, des tournées internationales, des forums et des relations institutionnelles, le Centre du Royaume de Paix et de Justice (CRPJ) impulse :</strong></p><p><ul><li>Le dialogue interreligieux et interculturel fondé sur des valeurs fermes.El diálogo interreligioso e intercultural desde valores firmes.</li><li>La défense de la justice et de la paix sur la scène internationale.</li><li>Le lien avec des leaders politiques, académiques et sociaux.</li><li>Le soutien clair et permanent au peuple juif et à l’État d’Israël, en reconnaissant sa centralité historique, spirituelle et géopolitique</li></ul></p><p>Cette projection internationale positionne le Centre du Royaume de Paix et de Justice (CRPJ) comme un acteur pertinent dans le débat global sur le futur du monde, la stabilité internationale et la validité des valeurs prophétiques.</p>",
|
||||
"projection.card1": "Le lien avec des leaders politiques, académiques et sociaux",
|
||||
"projection.card2": "Soutien clair et permanent au peuple juif et à l’État d’Israël.",
|
||||
"formation.title": "Formation et renforcement des capacités",
|
||||
"formation.subtitle": "Programmes et zone d’action",
|
||||
"formation.text": "Le Centre du Royaume de Paix et de Justice développe des cours, des séminaires et des programmes de formation destinés à des leaders, des professionnels, des référents institutionnels et des acteurs avec une responsabilité publique.",
|
||||
"formation.area.title": "Zone de formation",
|
||||
"formation.area.text": "<li>Leadership éthique et stratégique</li> <li>Médiation et résolution responsable de conflits</li> <li>Foi, valeurs et action dans l’espace public.</li> <li>Analyse de la scène internationale et des défis contemporains</li> <li>Fondements pour la construction d’une paix solide et durable, axée sur Israël.</li>",
|
||||
"formation.consulting.title": "Conseil et consulting",
|
||||
"formation.consulting.text": "Accompagnement stratégique d’organisations et d’institutions qui cherchent à concevoir et à exécuter des initiatives d’impact, alignées sur des valeurs claires, des objectifs transversaux et une vision à long terme.",
|
||||
"formation.action.title": "Projets d’action",
|
||||
"formation.action.text": "Développement d’initiatives concrètes sur divers territoires, orientées vers la formation, la prévention de conflits et le renforcement de leaderships locaux avec une vision internationale.",
|
||||
"news.title": "Informations",
|
||||
"news.text": "Actualité institutionnelle et projection internationale",
|
||||
"news.text2": "Cette section réunit les principales activités, prix et actions du Centre du Royaume de Paix et de Justice et de son fondateur.",
|
||||
"news.text3": "Esta página reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
||||
"news.buttonLable": "Voir Plus D'Informations",
|
||||
"news.seemore": "Voir Plus D'Informations",
|
||||
"news.fullnew": "Lire l'Article Complète",
|
||||
"news.all": "Todas",
|
||||
"news.allYears": "Todos los años",
|
||||
"participate.title": "Participez | Collaborez",
|
||||
"participate.text": "Se joindre, c’est prendre un engagement avec un but",
|
||||
"participate.text2": "Le travail du Centre du Royaume de Paix et de Justice se fortifie moyennant la participation de personnes et d’institutions alignées sur ses valeurs et ses objectifs généraux. Façons d’y participer :",
|
||||
"participate.box1.title": "Volontariat:",
|
||||
"participate.box1.text": "collaboration sur des projets formateurs, institutionnels ou internationaux",
|
||||
"participate.box2.title": "Diffusion institutionnelle :",
|
||||
"participate.box2.text": "amplification de la mission et des actions du Centre du Royaume de Paix et de Justice (CRPJ) dans les espaces publics",
|
||||
"participate.text3": "La paix se construit moyennant des décisions responsables, un leadership engagé et une action soutenue.",
|
||||
"footer.title": "Contact",
|
||||
"footer.subtitle": "Connectons avec une vision et un but.",
|
||||
"footer.text": "Le Centre du Royaume de Paix et de Justice dispose de canaux directs pour des consultations institutionnelles et la participation à des programmes et des activités internationales.",
|
||||
"footer.text2": "Réseaux sociaux : mises à jour permanentes sur des activités et des convocations.",
|
||||
"footer.email": "Courriel:",
|
||||
"footer.form.name": "Nom et prénom",
|
||||
"footer.form.mesagge": "Écrivez votre message",
|
||||
"footer.form.button": "Envoyer",
|
||||
"footer.reserved": "©2026. Tous droits réservés. Centre du Royaume de Paix et de Justice"
|
||||
}
|
||||
|
|
|
|||
371
src/i18n/he.json
371
src/i18n/he.json
|
|
@ -1,187 +1,188 @@
|
|||
{
|
||||
"nav.logo_line1": "מרכז הממלכה ",
|
||||
"nav.logo_line2": "לשלום ולצדק",
|
||||
"nav.about": "מי אנחנו",
|
||||
"nav.news": "חדשות",
|
||||
"nav.programs": "תוכניות",
|
||||
"nav.contact": "צור קשר",
|
||||
"hero.name": "ד\"ר חוסה בנחמין פרז מאטוס",
|
||||
"hero.title": "מנהיג ומייסד הארגון",
|
||||
"hero.body": "“החלום שלי הוא לראות את הגשמת חזון הנביאים: עולם של צדק ושלום, לטובת ישראל והאנושות כולה.”",
|
||||
"carousel.text1": "שלום",
|
||||
"carousel.text2": "צדק",
|
||||
"info.title": "בניית העולם שעליו חלמו הנביאים: עולם של צדק ושלום למען ישראל והאנושות כולה",
|
||||
"info.register": "הרשמה",
|
||||
"info.modal.title": "הטופס יעלה בקרוב",
|
||||
"info.modal.text": "אנו מסיימים את ההכנות האחרונות לפרסום טופס ההתנדבות. בקרוב תוכלו להשלים את תהליך ההרשמה בדף זה",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "דיפלומטיה ציבורית והשפעה בינלאומית",
|
||||
"copy": "הבנייה המכוונת של קשרים אתיים, תרבותיים ואסטרטגיים בין עמים",
|
||||
"buttonLabel": "קרא/י עוד",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "תוכניות ותחומי פעילות",
|
||||
"copy": "קורסים, סמינרים ותוכניות הכשרה למנהיגים, אנשי מקצוע ובכירים במוסדות",
|
||||
"buttonLabel": "קרא/י עוד",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "אני רוצה להירשם כמתנדב",
|
||||
"copy": "להצטרף אלינו זה התחייבות עם ייעוד",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "הרשמה",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "<b>מרכז הממלכה לשלום וצדק </b>הוא ארגון בינלאומי המוקדש להכשרה, דיאלוג אסטרטגי ופעולה ציבורית, שמטרתו קידום צדק ושלום לפי הערכים הנצחיים שעליהם הכריזו הנביאים, עם מחויבות ברורה ומתמשכת לישראל ומקומה המרכזי בהיסטוריה ובעתיד העולם.",
|
||||
"info.copy_column1": "המרכז מוביל יוזמות חינוכיות, פלטפורמות של חשיבה מעמיקה ופעולות ממשיות בזירה הציבורית, תוך הטמעת עקרונות רוחניים, אחריות מוסדית ומנהיגות מוסרית. פעילותו מתקיימת במסגרת <b>הדיפלומטיה הציבורית,</b> ככלי לגיטימי לעיצוב השיח העולמי, לחיזוק הקשרים בין מדינות ולהגנה על ערכי יסוד מול אתגרי ההווה והעתיד.",
|
||||
"info.copy_column2": "השלום אינו נתפס כסיסמה מופשטת או כאידיאל נאיבי, אלא כתוצאה מהחלטות מוצקות, מנהיגות ערכית ומחויבות מתמשכת למטרות ברורות, המכירות בתפקידה חסר התחליף של ישראל בבניית סדר צודק ויציב לכלל האנושות.",
|
||||
"info.endbox": {
|
||||
"title": "ייעוד, חזון וערכים",
|
||||
"buttonLabel": "קרא/י עוד",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
"nav.logo_line1": "מרכז הממלכה ",
|
||||
"nav.logo_line2": "לשלום ולצדק",
|
||||
"nav.about": "מי אנחנו",
|
||||
"nav.home": "דף הבית",
|
||||
"nav.news": "חדשות",
|
||||
"nav.programs": "תוכניות",
|
||||
"nav.contact": "צור קשר",
|
||||
"hero.name": "ד\"ר חוסה בנחמין פרז מאטוס",
|
||||
"hero.title": "מנהיג ומייסד הארגון",
|
||||
"hero.body": "“החלום שלי הוא לראות את הגשמת חזון הנביאים: עולם של צדק ושלום, לטובת ישראל והאנושות כולה.”",
|
||||
"carousel.text1": "שלום",
|
||||
"carousel.text2": "צדק",
|
||||
"info.title": "בניית העולם שעליו חלמו הנביאים: עולם של צדק ושלום למען ישראל והאנושות כולה",
|
||||
"info.register": "הרשמה",
|
||||
"info.modal.title": "הטופס יעלה בקרוב",
|
||||
"info.modal.text": "אנו מסיימים את ההכנות האחרונות לפרסום טופס ההתנדבות. בקרוב תוכלו להשלים את תהליך ההרשמה בדף זה",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "דיפלומטיה ציבורית והשפעה בינלאומית",
|
||||
"copy": "הבנייה המכוונת של קשרים אתיים, תרבותיים ואסטרטגיים בין עמים",
|
||||
"buttonLabel": "קרא/י עוד",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "צדק"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "שלום"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "זהות ארגונית",
|
||||
"identity.title": "מרכז הממלכה לשלום וצדק",
|
||||
"identity.body": "<p>מרכז ממלכת השלום והצדק הוא ארגון בינלאומי המורכב מאלפי מתנדבים הפזורים במדינות רבות, הפועלים בצורה מתואמת תחת הנהגתו והדרכתו של ד\"ר חוסה בנחמין פרס מטוס, הדמות היחידה המובילה את המרכז.</p><p>המרכז פעיל ביבשות שונות, ומחבר אנשים, מנהיגים, קהילות ומוסדות החולקים חזון משותף: להביא את ערכי המרכז אל המרחב הציבורי ולהתמודד, באחריות ובנחישות, עם האתגרים שמולם ניצב העולם כיום.</p><p>המרכז נולד עם משימה ברורה: לחבר בין האמונה לפעולה במרחב הציבורי, תוך שילוב של חשיבה רוחנית, הכשרה אינטליגנטית ומחויבות מעשית, במטרה להכין את הדרך לעידן חדש, מאופיין בסדר צודק יותר, שלום אמיתי ועולם טוב יותר, בהתאם לחזון הנבואי.</p><p>הפוקוס שלו הוא אסטרטגי, בינלאומי וממוקד בעתיד, מודע לסכסוכים המתעוררים, למתחים תרבותיים, לאתגרים גיאופוליטיים ולצורך במנהיגות חזקה המסוגלת לפעול בבירור בזמנים של שינוי גלובלי.</p>",
|
||||
"authority.title": "<strong>הנהגה</strong> | מרכז הממלכה לשלום וצדק",
|
||||
"authority.body": "ד\"ר חוסה בנחמין פרז מאטוס הוא מייסדו ומנהיגו הבלעדי של מרכז הממלכה לשלום וצדק. מנהיגותו משלבת בין חזון רוחני, הכשרה אינטלקטואלית, פעילות ציבורית והשפעה בינלאומית. ",
|
||||
"title1.title": "פעילות | ד\"ר חוסה בנחמין פרז מאטוס",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "ראשות La Gran Carpa Catedral (אוהל הקתדרלה הגדול).",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "השתתפות פעילה בזירות בינלאומיות.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "הוראת כתבי הקודש ביישום לניתוח העולם המודרני.",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "מחויבות ציבורית להגנה על ישראל, על צדק ועל שלום.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "ייעוד",
|
||||
"color1.text": "הכשרת מנהיגים, קידום יוזמות חינוכיות ועידוד עשייה ציבורית המכוונת לצדק ולשלום, על יסוד מוסרי ורוחני איתן, במחויבות מפורשת לישראל ובאחריות לתרום לרווחתה וליציבותה של האנושות בכללותה.",
|
||||
"color2.title": "חזון",
|
||||
"color2.text": "ביסוס מעמדו כגורם בינלאומי מוביל בתחומי הכשרת המנהיגות, בדיפלומטיה ציבורית ובהובלה מוסדית, הזוכה להכרה בזכות עקביותו, בהירות ערכיו ותרומתו הממשית לעיצוב עולם ההולם את החזון הנבואי של צדק ושלום.",
|
||||
"title2.title": "ערכים",
|
||||
"values.justice.title": "צדק",
|
||||
"values.justice.text": "מחויבות פעילה לסדר צודק, המבוסס על עקרונות מוסריים, על כבוד האדם ועל שמירה על ערכים נצחיים.",
|
||||
"values.integrity.title": "יושרה",
|
||||
"values.integrity.text": "הלימה בין מחשבה, דיבור ומעשה; שקיפות מוסדית ואחריותיות במרחב הציבורי.",
|
||||
"values.service.title": "שירות עם שליחות",
|
||||
"values.service.text": "הלימה בין מחשבה, דיבור ומעשה; שקיפות מוסדית ואחריותיות במרחב הציבורי.",
|
||||
"values.excellence.title": "מצוינות",
|
||||
"values.excellence.text": "קפדנות אינטלקטואלית, מקצועיות וחתירה לשיפור מתמיד בכל תחומי הפעולה.",
|
||||
"values.dialogue.title": "דיאלוג אסטרטגי",
|
||||
"values.dialogue.text": "פתיחות לחילופי תרבות, אומות ואמונות, תוך שמירה על עמדות ועקרונות יסוד.",
|
||||
"projection.title": "דיפלומטיה ציבורית והשפעה בינלאומית",
|
||||
"projection.text": "<p>מרכז הממלכה לשלום וצדק מקדם דיפלומטיה ציבורית פעילה באמצעות הבנייה המכוונת של קשרים אתיים, תרבותיים ואסטרטגיים בין עמים, מוסדות ומנהיגויות בזירה הגלובלית.</p><p><strong>באמצעות מפגשים, סיורים בינלאומיים, פורומים ושיתופי פעולה מוסדיים, המרכז מקדם:</strong></p><p><ul><li>· דיאלוג בין-דתי ובין-תרבותי על בסיס ערכים איתנים.</li><li>· הגנה על צדק ושלום בזירות בינלאומיות.</li><li>· קשרים עם מנהיגים פוליטיים, אקדמיים וחברתיים.</li><li>· תמיכה ברורה ומתמשכת בעם היהודי ובמדינת ישראל, מתוך הכרה במרכזיותה ההיסטורית, הרוחנית והגיאופוליטית.</li></ul></p><p>ההשפעה הבינלאומית הזו ממקמת את המרכז כגורם משמעותי בדיון הגלובלי על עתיד העולם, היציבות הבינלאומית רלוונטיות הערכים הנבואיים.</p>",
|
||||
"projection.card1": " קשרים עם מנהיגים פוליטיים, אקדמיים וחברתיים.",
|
||||
"projection.card2": " תמיכה ברורה ומתמשכת בעם היהודי ובמדינת ישראל, מתוך הכרה במרכזיותה ההיסטורית, הרוחנית והגיאופוליטית.",
|
||||
"formation.title": "תובניות ותחומי פעילות",
|
||||
"formation.subtitle": "הכשרה ופיתוח",
|
||||
"formation.text": "המרכז מפתח קורסים, סמינרים ותוכניות הכשרה למנהיגים, אנשי מקצוע, בכירים במוסדות ובעלי תפקידים באחריות ציבורית.",
|
||||
"formation.area.title": "תחומי הכשרה",
|
||||
"formation.area.text": "<li>מנהיגות אתית ואסטרטגית.</li> <li>אמונה, ערכים ופעולה במרחב הציבורי.</li> <li> ניתוח מצבים בזירה הבינלאומית ואתגרים עכשוויים.</li> <li>יסודות לבניית שלום יציב ומתמשך, בדגש על ישראל.</li>",
|
||||
"formation.consulting.title": "ייעוץ וליווי",
|
||||
"formation.consulting.text": "ליווי אסטרטגי לארגונים ומוסדות השואפים לעצב וליישם יוזמות בעלות השפעה, המותאמות לערכים ברורים, למטרות רוחביות ולחזון לטווח ארוך.",
|
||||
"formation.action.title": "פרויקטים מעשיים",
|
||||
"formation.action.text": "פיתוח יוזמות מעשיות באזורים שונים שמטרתן להכשיר, למנוע סכסוכים ולהעצים מנהיגות מקומית עם חזון בינלאומית.",
|
||||
"news.title": "חדשות",
|
||||
"news.text": "עשייה מוסדית והשפעה בינלאומית",
|
||||
"news.text2": "סקירה זו מציגה את עיקר העשייה, ההישגים והיוזמות של מרכז הממלכה לשלום וצדק ומייסדו.",
|
||||
"news.text3": "דף זה מציגה את עיקר העשייה, ההישגים והיוזמות של מרכז הממלכה לשלום וצדק ומייסדו.",
|
||||
"news.buttonLable": "עוד חדשות",
|
||||
"participate.title": "השתתפו | הצטרפו",
|
||||
"participate.text": "להצטרף אלינו זה התחייבות עם ייעוד",
|
||||
"participate.text2": "עבודת המרכז מתחזקת עם השתתפותם של אנשים ומוסדות החולקים ערכים ומטרות כלליות משותפות.",
|
||||
"participate.box1.title": "התנדבות:",
|
||||
"participate.box1.text": "שותפות במיזמים",
|
||||
"participate.box2.title": "תפוצה מוסדית:",
|
||||
"participate.box2.text": "הצגת הייעוד והעשייה של המרכז במרחב הציבורי.",
|
||||
"participate.text3": "השלום נבנה באמצעות החלטות אחראיות, מנהיגות מחויבת ופעולה מתמשכת.",
|
||||
"footer.title": "צור קשר",
|
||||
"footer.subtitle": "בואו נתחבר סביב חזון וייעוד משותף",
|
||||
"footer.text": "מרכז הממלכה לשלום וצדק מעמיד ערוצים ישירים לפניות מוסדיות, השתתפות במיזמים ופעילויות בינלאומיות.",
|
||||
"footer.text2": "רשתות חברתיות: עדכונים שוטפים על עשייה, פעילויות והזדמנויות להשתתפות.",
|
||||
"footer.email": "דוא\"ל:",
|
||||
"footer.form.name": "שם מלא",
|
||||
"footer.form.mesagge": "כתיבת הודעה",
|
||||
"footer.form.button": "שליחה",
|
||||
"footer.reserved": "כל הזכויות שמורות 2026 © Centro del Reino de Paz y Justicia"
|
||||
}
|
||||
{
|
||||
"title": "תוכניות ותחומי פעילות",
|
||||
"copy": "קורסים, סמינרים ותוכניות הכשרה למנהיגים, אנשי מקצוע ובכירים במוסדות",
|
||||
"buttonLabel": "קרא/י עוד",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "אני רוצה להירשם כמתנדב",
|
||||
"copy": "להצטרף אלינו זה התחייבות עם ייעוד",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "הרשמה",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "<b>מרכז הממלכה לשלום וצדק </b>הוא ארגון בינלאומי המוקדש להכשרה, דיאלוג אסטרטגי ופעולה ציבורית, שמטרתו קידום צדק ושלום לפי הערכים הנצחיים שעליהם הכריזו הנביאים, עם מחויבות ברורה ומתמשכת לישראל ומקומה המרכזי בהיסטוריה ובעתיד העולם.",
|
||||
"info.copy_column1": "המרכז מוביל יוזמות חינוכיות, פלטפורמות של חשיבה מעמיקה ופעולות ממשיות בזירה הציבורית, תוך הטמעת עקרונות רוחניים, אחריות מוסדית ומנהיגות מוסרית. פעילותו מתקיימת במסגרת <b>הדיפלומטיה הציבורית,</b> ככלי לגיטימי לעיצוב השיח העולמי, לחיזוק הקשרים בין מדינות ולהגנה על ערכי יסוד מול אתגרי ההווה והעתיד.",
|
||||
"info.copy_column2": "השלום אינו נתפס כסיסמה מופשטת או כאידיאל נאיבי, אלא כתוצאה מהחלטות מוצקות, מנהיגות ערכית ומחויבות מתמשכת למטרות ברורות, המכירות בתפקידה חסר התחליף של ישראל בבניית סדר צודק ויציב לכלל האנושות.",
|
||||
"info.endbox": {
|
||||
"title": "ייעוד, חזון וערכים",
|
||||
"buttonLabel": "קרא/י עוד",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "צדק"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "שלום"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "זהות ארגונית",
|
||||
"identity.title": "מרכז הממלכה לשלום וצדק",
|
||||
"identity.body": "<p>מרכז ממלכת השלום והצדק הוא ארגון בינלאומי המורכב מאלפי מתנדבים הפזורים במדינות רבות, הפועלים בצורה מתואמת תחת הנהגתו והדרכתו של ד\"ר חוסה בנחמין פרס מטוס, הדמות היחידה המובילה את המרכז.</p><p>המרכז פעיל ביבשות שונות, ומחבר אנשים, מנהיגים, קהילות ומוסדות החולקים חזון משותף: להביא את ערכי המרכז אל המרחב הציבורי ולהתמודד, באחריות ובנחישות, עם האתגרים שמולם ניצב העולם כיום.</p><p>המרכז נולד עם משימה ברורה: לחבר בין האמונה לפעולה במרחב הציבורי, תוך שילוב של חשיבה רוחנית, הכשרה אינטליגנטית ומחויבות מעשית, במטרה להכין את הדרך לעידן חדש, מאופיין בסדר צודק יותר, שלום אמיתי ועולם טוב יותר, בהתאם לחזון הנבואי.</p><p>הפוקוס שלו הוא אסטרטגי, בינלאומי וממוקד בעתיד, מודע לסכסוכים המתעוררים, למתחים תרבותיים, לאתגרים גיאופוליטיים ולצורך במנהיגות חזקה המסוגלת לפעול בבירור בזמנים של שינוי גלובלי.</p>",
|
||||
"authority.title": "<strong>הנהגה</strong> | מרכז הממלכה לשלום וצדק",
|
||||
"authority.body": "ד\"ר חוסה בנחמין פרז מאטוס הוא מייסדו ומנהיגו הבלעדי של מרכז הממלכה לשלום וצדק. מנהיגותו משלבת בין חזון רוחני, הכשרה אינטלקטואלית, פעילות ציבורית והשפעה בינלאומית. ",
|
||||
"title1.title": "פעילות | ד\"ר חוסה בנחמין פרז מאטוס",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "ראשות La Gran Carpa Catedral (אוהל הקתדרלה הגדול).",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "השתתפות פעילה בזירות בינלאומיות.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "הוראת כתבי הקודש ביישום לניתוח העולם המודרני.",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "מחויבות ציבורית להגנה על ישראל, על צדק ועל שלום.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "ייעוד",
|
||||
"color1.text": "הכשרת מנהיגים, קידום יוזמות חינוכיות ועידוד עשייה ציבורית המכוונת לצדק ולשלום, על יסוד מוסרי ורוחני איתן, במחויבות מפורשת לישראל ובאחריות לתרום לרווחתה וליציבותה של האנושות בכללותה.",
|
||||
"color2.title": "חזון",
|
||||
"color2.text": "ביסוס מעמדו כגורם בינלאומי מוביל בתחומי הכשרת המנהיגות, בדיפלומטיה ציבורית ובהובלה מוסדית, הזוכה להכרה בזכות עקביותו, בהירות ערכיו ותרומתו הממשית לעיצוב עולם ההולם את החזון הנבואי של צדק ושלום.",
|
||||
"title2.title": "ערכים",
|
||||
"values.justice.title": "צדק",
|
||||
"values.justice.text": "מחויבות פעילה לסדר צודק, המבוסס על עקרונות מוסריים, על כבוד האדם ועל שמירה על ערכים נצחיים.",
|
||||
"values.integrity.title": "יושרה",
|
||||
"values.integrity.text": "הלימה בין מחשבה, דיבור ומעשה; שקיפות מוסדית ואחריותיות במרחב הציבורי.",
|
||||
"values.service.title": "שירות עם שליחות",
|
||||
"values.service.text": "הלימה בין מחשבה, דיבור ומעשה; שקיפות מוסדית ואחריותיות במרחב הציבורי.",
|
||||
"values.excellence.title": "מצוינות",
|
||||
"values.excellence.text": "קפדנות אינטלקטואלית, מקצועיות וחתירה לשיפור מתמיד בכל תחומי הפעולה.",
|
||||
"values.dialogue.title": "דיאלוג אסטרטגי",
|
||||
"values.dialogue.text": "פתיחות לחילופי תרבות, אומות ואמונות, תוך שמירה על עמדות ועקרונות יסוד.",
|
||||
"projection.title": "דיפלומטיה ציבורית והשפעה בינלאומית",
|
||||
"projection.text": "<p>מרכז הממלכה לשלום וצדק מקדם דיפלומטיה ציבורית פעילה באמצעות הבנייה המכוונת של קשרים אתיים, תרבותיים ואסטרטגיים בין עמים, מוסדות ומנהיגויות בזירה הגלובלית.</p><p><strong>באמצעות מפגשים, סיורים בינלאומיים, פורומים ושיתופי פעולה מוסדיים, המרכז מקדם:</strong></p><p><ul><li>· דיאלוג בין-דתי ובין-תרבותי על בסיס ערכים איתנים.</li><li>· הגנה על צדק ושלום בזירות בינלאומיות.</li><li>· קשרים עם מנהיגים פוליטיים, אקדמיים וחברתיים.</li><li>· תמיכה ברורה ומתמשכת בעם היהודי ובמדינת ישראל, מתוך הכרה במרכזיותה ההיסטורית, הרוחנית והגיאופוליטית.</li></ul></p><p>ההשפעה הבינלאומית הזו ממקמת את המרכז כגורם משמעותי בדיון הגלובלי על עתיד העולם, היציבות הבינלאומית רלוונטיות הערכים הנבואיים.</p>",
|
||||
"projection.card1": " קשרים עם מנהיגים פוליטיים, אקדמיים וחברתיים.",
|
||||
"projection.card2": " תמיכה ברורה ומתמשכת בעם היהודי ובמדינת ישראל, מתוך הכרה במרכזיותה ההיסטורית, הרוחנית והגיאופוליטית.",
|
||||
"formation.title": "תובניות ותחומי פעילות",
|
||||
"formation.subtitle": "הכשרה ופיתוח",
|
||||
"formation.text": "המרכז מפתח קורסים, סמינרים ותוכניות הכשרה למנהיגים, אנשי מקצוע, בכירים במוסדות ובעלי תפקידים באחריות ציבורית.",
|
||||
"formation.area.title": "תחומי הכשרה",
|
||||
"formation.area.text": "<li>מנהיגות אתית ואסטרטגית.</li> <li>אמונה, ערכים ופעולה במרחב הציבורי.</li> <li> ניתוח מצבים בזירה הבינלאומית ואתגרים עכשוויים.</li> <li>יסודות לבניית שלום יציב ומתמשך, בדגש על ישראל.</li>",
|
||||
"formation.consulting.title": "ייעוץ וליווי",
|
||||
"formation.consulting.text": "ליווי אסטרטגי לארגונים ומוסדות השואפים לעצב וליישם יוזמות בעלות השפעה, המותאמות לערכים ברורים, למטרות רוחביות ולחזון לטווח ארוך.",
|
||||
"formation.action.title": "פרויקטים מעשיים",
|
||||
"formation.action.text": "פיתוח יוזמות מעשיות באזורים שונים שמטרתן להכשיר, למנוע סכסוכים ולהעצים מנהיגות מקומית עם חזון בינלאומית.",
|
||||
"news.title": "חדשות",
|
||||
"news.text": "עשייה מוסדית והשפעה בינלאומית",
|
||||
"news.text2": "סקירה זו מציגה את עיקר העשייה, ההישגים והיוזמות של מרכז הממלכה לשלום וצדק ומייסדו.",
|
||||
"news.text3": "דף זה מציגה את עיקר העשייה, ההישגים והיוזמות של מרכז הממלכה לשלום וצדק ומייסדו.",
|
||||
"news.buttonLable": "עוד חדשות",
|
||||
"participate.title": "השתתפו | הצטרפו",
|
||||
"participate.text": "להצטרף אלינו זה התחייבות עם ייעוד",
|
||||
"participate.text2": "עבודת המרכז מתחזקת עם השתתפותם של אנשים ומוסדות החולקים ערכים ומטרות כלליות משותפות.",
|
||||
"participate.box1.title": "התנדבות:",
|
||||
"participate.box1.text": "שותפות במיזמים",
|
||||
"participate.box2.title": "תפוצה מוסדית:",
|
||||
"participate.box2.text": "הצגת הייעוד והעשייה של המרכז במרחב הציבורי.",
|
||||
"participate.text3": "השלום נבנה באמצעות החלטות אחראיות, מנהיגות מחויבת ופעולה מתמשכת.",
|
||||
"footer.title": "צור קשר",
|
||||
"footer.subtitle": "בואו נתחבר סביב חזון וייעוד משותף",
|
||||
"footer.text": "מרכז הממלכה לשלום וצדק מעמיד ערוצים ישירים לפניות מוסדיות, השתתפות במיזמים ופעילויות בינלאומיות.",
|
||||
"footer.text2": "רשתות חברתיות: עדכונים שוטפים על עשייה, פעילויות והזדמנויות להשתתפות.",
|
||||
"footer.email": "דוא\"ל:",
|
||||
"footer.form.name": "שם מלא",
|
||||
"footer.form.mesagge": "כתיבת הודעה",
|
||||
"footer.form.button": "שליחה",
|
||||
"footer.reserved": "כל הזכויות שמורות 2026 © Centro del Reino de Paz y Justicia"
|
||||
}
|
||||
|
|
|
|||
382
src/i18n/pt.json
382
src/i18n/pt.json
|
|
@ -1,192 +1,194 @@
|
|||
{
|
||||
"nav.logo_line1": "Centro do Reino",
|
||||
"nav.logo_line2": "de Paz e Justiça",
|
||||
"nav.about": "Sobre nós",
|
||||
"nav.news": "Notícias",
|
||||
"nav.programs": "Programas",
|
||||
"nav.archive": "Arquivo",
|
||||
"nav.nations": "Nações",
|
||||
"nav.contact": "Contato",
|
||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||
"hero.title": "Líder fundador",
|
||||
"hero.body": "“O sonho da minha vida é ver cumprida a visão dos profetas: um mundo de justiça e paz para o bem de Israel e de toda a humanidade.”",
|
||||
"carousel.text1": "Paz",
|
||||
"carousel.text2": "Justiça",
|
||||
"info.title": "Construindo o mundo sonhado pelos profetas: justiça e paz para Israel e toda a humanidade",
|
||||
"info.register": "Cadastrar-me",
|
||||
"info.modal.title": "Formulário disponível em breve",
|
||||
"info.modal.text": "Estamos finalizando os detalhes para disponibilizar o formulário de voluntariado. Em breve, você poderá se inscrever nesta seção.",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "Diplomacia Pública e projeção Internacional",
|
||||
"copy": "Construção consciente de vínculos éticos, culturais e estratégicos entre povos",
|
||||
"buttonLabel": "Ler mais",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Programas e áreas de Ação",
|
||||
"copy": "Cursos, seminários e programas de formação dirigidos a líderes, profissionais e referências.",
|
||||
"buttonLabel": "Ler mais",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Quero me candidatar como Voluntário",
|
||||
"copy": "Unir-se é assumir um compromisso com propósito",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "Cadastrar-me",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "O <strong>Centro do Reino de Paz e Justiça (CRPJ)</strong> é uma organização de alcance <strong>internacional dedicada à formação, ao diálogo estratégico e à ação pública, orientada a promover a justiça e a paz</strong> conforme os valores eternos proclamados pelos profetas, com um compromisso explícito e permanente com Israel e seu lugar central na história e no destino do mundo.",
|
||||
"info.copy_column1": "O Centro do Reino de Paz e Justiça (CRPJ) desenvolve iniciativas educacionais, espaços de reflexão profunda e ações concretas no âmbito público, integrando princípios espirituais, responsabilidade institucional e liderança ética. Seu trabalho se insere no campo da diplomacia pública, entendida como uma ferramenta legítima para influenciar a conversa global, fortalecer vínculos entre nações e defender valores fundamentais diante dos desafios do presente e do futuro.",
|
||||
"info.copy_column2": "A paz não é concebida como uma consigna abstrata nem como um ideal ingênuo, mas como o resultado de decisões firmes, liderança com valores e compromisso sustentado com propósitos claros, que reconhecem o papel insubstituível de Israel na construção de uma ordem justa e estável para toda a humanidade.",
|
||||
"info.endbox": {
|
||||
"title": "Missão, Visão e Valores Institucionais.",
|
||||
"buttonLabel": "Ler mais",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
"nav.logo_line1": "Centro do Reino",
|
||||
"nav.logo_line2": "de Paz e Justiça",
|
||||
"nav.home": "home",
|
||||
"nav.about": "Sobre nós",
|
||||
"nav.news": "Notícias",
|
||||
"nav.programs": "Programas",
|
||||
"nav.archive": "Arquivo",
|
||||
"nav.nations": "Nações",
|
||||
"nav.contact": "Contato",
|
||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||
"hero.title": "Líder fundador",
|
||||
"hero.body": "“O sonho da minha vida é ver cumprida a visão dos profetas: um mundo de justiça e paz para o bem de Israel e de toda a humanidade.”",
|
||||
"carousel.text1": "Paz",
|
||||
"carousel.text2": "Justiça",
|
||||
"info.title": "Construindo o mundo sonhado pelos profetas: justiça e paz para Israel e toda a humanidade",
|
||||
"info.register": "Cadastrar-me",
|
||||
"info.modal.title": "Formulário disponível em breve",
|
||||
"info.modal.text": "Estamos finalizando os detalhes para disponibilizar o formulário de voluntariado. Em breve, você poderá se inscrever nesta seção.",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "Diplomacia Pública e projeção Internacional",
|
||||
"copy": "Construção consciente de vínculos éticos, culturais e estratégicos entre povos",
|
||||
"buttonLabel": "Ler mais",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "Justiça"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "Paz"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "Identidade Institucional",
|
||||
"identity.title": "O Centro do Reino de Paz e Justiça",
|
||||
"identity.body": "<p><strong>O Centro do Reino de Paz e Justiça</strong> é uma organização internacional formada por <strong>milhares de voluntários distribuídos em inúmeros países</strong>, que atuam de maneira coordenada sob a liderança e a orientação do <strong>Dr. José Benjamín Pérez Matos</strong>, único referencial do Centro do Reino de Paz e Justiça (CRPJ).</p><p>O Centro conta com <strong>presença ativa em diferentes continentes</strong>, articulando pessoas, líderes, comunidades e instituições que compartilham uma visão comum: levar os valores do Reino ao espaço público e enfrentar, com responsabilidade e convicção, os desafios que o mundo atual atravessa.</p><p>O Centro do Reino de Paz e Justiça (CRPJ) nasce com uma missão clara: <strong>construir pontes entre a fé e a ação no âmbito público</strong>, integrando reflexão espiritual, formação intelectual e compromisso prático, com o objetivo de preparar o caminho para uma nova era, marcada por uma ordem mais justa, uma paz verdadeira e um mundo melhor, conforme a visão profética.</p><p>Sua perspectiva é estratégica, internacional e orientada para o futuro, consciente dos conflitos emergentes, das tensões culturais, dos desafios geopolíticos e da necessidade de lideranças sólidas, capazes de atuar com clareza em tempos de transformação global.</p>",
|
||||
"authority.title": "<strong>Autoridades</strong> | Centro do Reino de Paz e Justiça",
|
||||
"authority.body": "O <strong>Dr. José Benjamín Pérez Matos</strong> é o <strong>fundador e único referencial do Centro do Reino de Paz e Justiça</strong>. Sua liderança articula visão espiritual, formação intelectual, ação pública e projeção internacional.",
|
||||
"title1.title": "Dr. José Benjamín Pérez Matos | Trajetória",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "Administração da Grande Carpa (“Tenda”) Catedral. Porto Rico",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "Participação ativa em cenários internacionais.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "Ensinamento bíblico aplicado à análise do mundo contemporâneo.",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "Compromisso público na defesa de Israel, da justiça e da paz.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "Missão",
|
||||
"color1.text": "Formar líderes, impulsionar iniciativas educacionais e promover ações públicas orientadas à justiça e à paz, a partir de uma base ética e espiritual sólida, com um compromisso explícito com Israel e com a responsabilidade de contribuir para o bem-estar e a estabilidade da humanidade como um todo.",
|
||||
"color2.title": "Visão",
|
||||
"color2.text": "Consolidar-se como um ator internacional de referência na formação de liderança, diplomacia pública e projeção institucional, reconhecido por sua coerência, sua clareza de valores e sua contribuição concreta para a construção de um mundo alinhado com a visão profética de justiça e paz.",
|
||||
"title2.title": "Valores Institucionais",
|
||||
"values.justice.title": "Justiça",
|
||||
"values.justice.text": "Compromisso ativo com uma ordem justa, baseada em princípios morais, respeito à dignidade humana e defesa de valores permanentes.",
|
||||
"values.integrity.title": "Integridade",
|
||||
"values.integrity.text": "Coerência entre pensamento, palavra e ação; transparência institucional e responsabilidade no espaço público.",
|
||||
"values.service.title": "Serviço",
|
||||
"values.service.text": "Vocação de acompanhamento e ação orientada a objetivos claros e transcendentes.",
|
||||
"values.excellence.title": "Excelência",
|
||||
"values.excellence.text": "Rigor intelectual, profissionalismo e melhoria constante em todas as áreas de atuação.",
|
||||
"values.dialogue.title": "Diálogo Estratégico",
|
||||
"values.dialogue.text": "Abertura ao intercâmbio entre culturas, nações e credos, sem renunciar às convicções nem aos princípios fundamentais.",
|
||||
"projection.title": "Diplomacia Pública e Projeção Internacional",
|
||||
"projection.text": "<p><strong>O Centro do Reino de Paz e Justiça</strong> leva adiante uma ativa política de diplomacia pública, entendida como a construção consciente de vínculos éticos, culturais e estratégicos entre povos, instituições e lideranças globais.</p><p><strong>Por meio de encontros, percorridos internacionais, fóruns e relações institucionais, o Centro do Reino de Paz e Justiça (CRPJ) impulsiona:</strong></p><p><ul><li>O diálogo inter-religioso e intercultural a partir de valores firmes.</li><li>A defesa da justiça e da paz em cenários internacionais.</li><li>A vinculação com líderes políticos, acadêmicos e sociais.</li><li>O <strong>apoio claro e permanente ao povo judeu e ao Estado de Israel</strong>, reconhecendo sua centralidade histórica, espiritual e geopolítica.</li></ul></p><p>Essa projeção internacional posiciona o Centro do Reino de Paz e Justiça (CRPJ) como um <strong>ator relevante no debate global sobre o futuro do mundo</strong>, a estabilidade internacional e a vigência dos valores proféticos.</p>",
|
||||
"projection.card1": "A vinculação com líderes políticos, acadêmicos e sociais.",
|
||||
"projection.card2": "Apoio claro e permanente ao povo judeu e ao Estado de Israel.",
|
||||
"formation.title": "Formação e Capacitação",
|
||||
"formation.subtitle": "Programas e Área de Ação",
|
||||
"formation.text": "O <strong>Centro do Reino de Paz e Justiça (CRPJ) desenvolve cursos, seminários e programas de formação</strong> dirigidos a líderes, profissionais, referências institucionais e atores com responsabilidade pública.",
|
||||
"formation.area.title": "Área de Formação",
|
||||
"formation.area.text": "<li>Liderança ética e estratégica.</li> <li>Mediação e resolução responsável de conflitos.</li> <li>Fé, valores e ação no espaço público.</li> <li>Análise de cenários internacionais e desafios contemporâneos.</li> <li>Fundamentos para a construção de uma paz sólida e duradoura, com eixo em Israel.</li>",
|
||||
"formation.consulting.title": "Assessoria e Consultoria",
|
||||
"formation.consulting.text": "Acompanhamento estratégico a organizações e instituições que buscam desenhar e implementar iniciativas de impacto, alinhadas a valores claros, objetivos transversais e uma visão de longo prazo.",
|
||||
"formation.action.title": "Projetos de Ação",
|
||||
"formation.action.text": "Desenvolvimento de iniciativas concretas em diferentes territórios, orientadas à formação, à prevenção de conflitos e ao fortalecimento de lideranças locais com visão internacional.",
|
||||
"news.title": "Notícias",
|
||||
"news.text": "Atualidade Institucional e projeção internacional",
|
||||
"news.text2": "Esta seção reúne as principais atividades, reconhecimentos e ações do Centro do Reino de Paz e Justiça e de seu fundador.",
|
||||
"news.text3": "Esta página reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
||||
"news.buttonLable": "Ver Mais notícias",
|
||||
"news.seemore": "Ver Mais",
|
||||
"news.all": "Todos",
|
||||
"news.allYears": "Todos os anos",
|
||||
"participate.title": "Participe | Colabore",
|
||||
"participate.text": "Unir-se é assumir um compromisso com propósito.",
|
||||
"participate.text2": "O trabalho do <strong>Centro do Reino de Paz e Justiça</strong> se fortalece por meio da participação de pessoas e instituições alinhadas com seus valores e objetivos gerais. Formas de participar:",
|
||||
"participate.box1.title": "Voluntariado:",
|
||||
"participate.box1.text": "colaboração em projetos formativos, institucionais ou internacionais.",
|
||||
"participate.box2.title": "Difusão institucional:",
|
||||
"participate.box2.text": "amplificação da missão e das ações do Centro do Reino de Paz e Justiça (CRPJ) em espaços públicos.",
|
||||
"participate.text3": "A paz se constrói por meio de decisões responsáveis, liderança comprometida e ação sustentada.",
|
||||
"footer.title": "Contato",
|
||||
"footer.subtitle": "Conectemos com visão e propósito",
|
||||
"footer.text": "O <strong>Centro do Reino de Paz e Justiça</strong> dispõe de canais diretos para consultas institucionais, participação em programas e atividades internacionais.",
|
||||
"footer.text2": "Redes sociais: atualizações permanentes sobre atividades e convocações.",
|
||||
"footer.email": "E-mail: ",
|
||||
"footer.form.name": "Nome completo",
|
||||
"footer.form.mesagge": "Escreva a sua mensagem",
|
||||
"footer.form.button": "Enviar",
|
||||
"footer.reserved": "©2026. Todos os Direitos Reservados. Centro do Reino de Paz e Justiça."
|
||||
}
|
||||
{
|
||||
"title": "Programas e áreas de Ação",
|
||||
"copy": "Cursos, seminários e programas de formação dirigidos a líderes, profissionais e referências.",
|
||||
"buttonLabel": "Ler mais",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Quero me candidatar como Voluntário",
|
||||
"copy": "Unir-se é assumir um compromisso com propósito",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "Cadastrar-me",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "O <strong>Centro do Reino de Paz e Justiça (CRPJ)</strong> é uma organização de alcance <strong>internacional dedicada à formação, ao diálogo estratégico e à ação pública, orientada a promover a justiça e a paz</strong> conforme os valores eternos proclamados pelos profetas, com um compromisso explícito e permanente com Israel e seu lugar central na história e no destino do mundo.",
|
||||
"info.copy_column1": "O Centro do Reino de Paz e Justiça (CRPJ) desenvolve iniciativas educacionais, espaços de reflexão profunda e ações concretas no âmbito público, integrando princípios espirituais, responsabilidade institucional e liderança ética. Seu trabalho se insere no campo da diplomacia pública, entendida como uma ferramenta legítima para influenciar a conversa global, fortalecer vínculos entre nações e defender valores fundamentais diante dos desafios do presente e do futuro.",
|
||||
"info.copy_column2": "A paz não é concebida como uma consigna abstrata nem como um ideal ingênuo, mas como o resultado de decisões firmes, liderança com valores e compromisso sustentado com propósitos claros, que reconhecem o papel insubstituível de Israel na construção de uma ordem justa e estável para toda a humanidade.",
|
||||
"info.endbox": {
|
||||
"title": "Missão, Visão e Valores Institucionais.",
|
||||
"buttonLabel": "Ler mais",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "Justiça"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "Paz"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "Identidade Institucional",
|
||||
"identity.title": "O Centro do Reino de Paz e Justiça",
|
||||
"identity.body": "<p><strong>O Centro do Reino de Paz e Justiça</strong> é uma organização internacional formada por <strong>milhares de voluntários distribuídos em inúmeros países</strong>, que atuam de maneira coordenada sob a liderança e a orientação do <strong>Dr. José Benjamín Pérez Matos</strong>, único referencial do Centro do Reino de Paz e Justiça (CRPJ).</p><p>O Centro conta com <strong>presença ativa em diferentes continentes</strong>, articulando pessoas, líderes, comunidades e instituições que compartilham uma visão comum: levar os valores do Reino ao espaço público e enfrentar, com responsabilidade e convicção, os desafios que o mundo atual atravessa.</p><p>O Centro do Reino de Paz e Justiça (CRPJ) nasce com uma missão clara: <strong>construir pontes entre a fé e a ação no âmbito público</strong>, integrando reflexão espiritual, formação intelectual e compromisso prático, com o objetivo de preparar o caminho para uma nova era, marcada por uma ordem mais justa, uma paz verdadeira e um mundo melhor, conforme a visão profética.</p><p>Sua perspectiva é estratégica, internacional e orientada para o futuro, consciente dos conflitos emergentes, das tensões culturais, dos desafios geopolíticos e da necessidade de lideranças sólidas, capazes de atuar com clareza em tempos de transformação global.</p>",
|
||||
"authority.title": "<strong>Autoridades</strong> | Centro do Reino de Paz e Justiça",
|
||||
"authority.body": "O <strong>Dr. José Benjamín Pérez Matos</strong> é o <strong>fundador e único referencial do Centro do Reino de Paz e Justiça</strong>. Sua liderança articula visão espiritual, formação intelectual, ação pública e projeção internacional.",
|
||||
"title1.title": "Dr. José Benjamín Pérez Matos | Trajetória",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "Administração da Grande Carpa (“Tenda”) Catedral. Porto Rico",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "Participação ativa em cenários internacionais.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "Ensinamento bíblico aplicado à análise do mundo contemporâneo.",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "Compromisso público na defesa de Israel, da justiça e da paz.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "Missão",
|
||||
"color1.text": "Formar líderes, impulsionar iniciativas educacionais e promover ações públicas orientadas à justiça e à paz, a partir de uma base ética e espiritual sólida, com um compromisso explícito com Israel e com a responsabilidade de contribuir para o bem-estar e a estabilidade da humanidade como um todo.",
|
||||
"color2.title": "Visão",
|
||||
"color2.text": "Consolidar-se como um ator internacional de referência na formação de liderança, diplomacia pública e projeção institucional, reconhecido por sua coerência, sua clareza de valores e sua contribuição concreta para a construção de um mundo alinhado com a visão profética de justiça e paz.",
|
||||
"title2.title": "Valores Institucionais",
|
||||
"values.justice.title": "Justiça",
|
||||
"values.justice.text": "Compromisso ativo com uma ordem justa, baseada em princípios morais, respeito à dignidade humana e defesa de valores permanentes.",
|
||||
"values.integrity.title": "Integridade",
|
||||
"values.integrity.text": "Coerência entre pensamento, palavra e ação; transparência institucional e responsabilidade no espaço público.",
|
||||
"values.service.title": "Serviço",
|
||||
"values.service.text": "Vocação de acompanhamento e ação orientada a objetivos claros e transcendentes.",
|
||||
"values.excellence.title": "Excelência",
|
||||
"values.excellence.text": "Rigor intelectual, profissionalismo e melhoria constante em todas as áreas de atuação.",
|
||||
"values.dialogue.title": "Diálogo Estratégico",
|
||||
"values.dialogue.text": "Abertura ao intercâmbio entre culturas, nações e credos, sem renunciar às convicções nem aos princípios fundamentais.",
|
||||
"projection.title": "Diplomacia Pública e Projeção Internacional",
|
||||
"projection.text": "<p><strong>O Centro do Reino de Paz e Justiça</strong> leva adiante uma ativa política de diplomacia pública, entendida como a construção consciente de vínculos éticos, culturais e estratégicos entre povos, instituições e lideranças globais.</p><p><strong>Por meio de encontros, percorridos internacionais, fóruns e relações institucionais, o Centro do Reino de Paz e Justiça (CRPJ) impulsiona:</strong></p><p><ul><li>O diálogo inter-religioso e intercultural a partir de valores firmes.</li><li>A defesa da justiça e da paz em cenários internacionais.</li><li>A vinculação com líderes políticos, acadêmicos e sociais.</li><li>O <strong>apoio claro e permanente ao povo judeu e ao Estado de Israel</strong>, reconhecendo sua centralidade histórica, espiritual e geopolítica.</li></ul></p><p>Essa projeção internacional posiciona o Centro do Reino de Paz e Justiça (CRPJ) como um <strong>ator relevante no debate global sobre o futuro do mundo</strong>, a estabilidade internacional e a vigência dos valores proféticos.</p>",
|
||||
"projection.card1": "A vinculação com líderes políticos, acadêmicos e sociais.",
|
||||
"projection.card2": "Apoio claro e permanente ao povo judeu e ao Estado de Israel.",
|
||||
"formation.title": "Formação e Capacitação",
|
||||
"formation.subtitle": "Programas e Área de Ação",
|
||||
"formation.text": "O <strong>Centro do Reino de Paz e Justiça (CRPJ) desenvolve cursos, seminários e programas de formação</strong> dirigidos a líderes, profissionais, referências institucionais e atores com responsabilidade pública.",
|
||||
"formation.area.title": "Área de Formação",
|
||||
"formation.area.text": "<li>Liderança ética e estratégica.</li> <li>Mediação e resolução responsável de conflitos.</li> <li>Fé, valores e ação no espaço público.</li> <li>Análise de cenários internacionais e desafios contemporâneos.</li> <li>Fundamentos para a construção de uma paz sólida e duradoura, com eixo em Israel.</li>",
|
||||
"formation.consulting.title": "Assessoria e Consultoria",
|
||||
"formation.consulting.text": "Acompanhamento estratégico a organizações e instituições que buscam desenhar e implementar iniciativas de impacto, alinhadas a valores claros, objetivos transversais e uma visão de longo prazo.",
|
||||
"formation.action.title": "Projetos de Ação",
|
||||
"formation.action.text": "Desenvolvimento de iniciativas concretas em diferentes territórios, orientadas à formação, à prevenção de conflitos e ao fortalecimento de lideranças locais com visão internacional.",
|
||||
"news.title": "Notícias",
|
||||
"news.text": "Atualidade Institucional e projeção internacional",
|
||||
"news.text2": "Esta seção reúne as principais atividades, reconhecimentos e ações do Centro do Reino de Paz e Justiça e de seu fundador.",
|
||||
"news.text3": "Esta página reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
||||
"news.buttonLable": "Ver Mais notícias",
|
||||
"news.seemore": "Ver Mais",
|
||||
"news.fullnew": "Ler o Artigo Completo",
|
||||
"news.all": "Todos",
|
||||
"news.allYears": "Todos os anos",
|
||||
"participate.title": "Participe | Colabore",
|
||||
"participate.text": "Unir-se é assumir um compromisso com propósito.",
|
||||
"participate.text2": "O trabalho do <strong>Centro do Reino de Paz e Justiça</strong> se fortalece por meio da participação de pessoas e instituições alinhadas com seus valores e objetivos gerais. Formas de participar:",
|
||||
"participate.box1.title": "Voluntariado:",
|
||||
"participate.box1.text": "colaboração em projetos formativos, institucionais ou internacionais.",
|
||||
"participate.box2.title": "Difusão institucional:",
|
||||
"participate.box2.text": "amplificação da missão e das ações do Centro do Reino de Paz e Justiça (CRPJ) em espaços públicos.",
|
||||
"participate.text3": "A paz se constrói por meio de decisões responsáveis, liderança comprometida e ação sustentada.",
|
||||
"footer.title": "Contato",
|
||||
"footer.subtitle": "Conectemos com visão e propósito",
|
||||
"footer.text": "O <strong>Centro do Reino de Paz e Justiça</strong> dispõe de canais diretos para consultas institucionais, participação em programas e atividades internacionais.",
|
||||
"footer.text2": "Redes sociais: atualizações permanentes sobre atividades e convocações.",
|
||||
"footer.email": "E-mail: ",
|
||||
"footer.form.name": "Nome completo",
|
||||
"footer.form.mesagge": "Escreva a sua mensagem",
|
||||
"footer.form.button": "Enviar",
|
||||
"footer.reserved": "©2026. Todos os Direitos Reservados. Centro do Reino de Paz e Justiça."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"nav.logo_line1": "Центр Царства за ",
|
||||
"nav.logo_line2": "мир и справедливость",
|
||||
"nav.home": "Главная",
|
||||
"nav.about": "О нас",
|
||||
"nav.news": "Новости",
|
||||
"nav.programs": "Программы",
|
||||
|
|
|
|||
382
src/i18n/rw.json
382
src/i18n/rw.json
|
|
@ -1,192 +1,194 @@
|
|||
{
|
||||
"nav.logo_line1": "Centro del Reino",
|
||||
"nav.logo_line2": "de Paz y Justicia",
|
||||
"nav.about": "Abo turi bo",
|
||||
"nav.news": "Amakuru",
|
||||
"nav.programs": "Porogaramu",
|
||||
"nav.archive": "Archivo",
|
||||
"nav.nations": "Naciones",
|
||||
"nav.contact": "Twandikire",
|
||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||
"hero.title": "Umuyobozi wabishinze",
|
||||
"hero.body": "“Inzozi z’ubuzima bwanjye ni ukubona isohozwa ry’iyerekwa ry’abahanuzi: isi irimo ubutabera n’amahoro ku bw’inyungu ya Isirayeli n’ibiremwabantubose.”",
|
||||
"carousel.text1": "Amahoro",
|
||||
"carousel.text2": "Ubutabera",
|
||||
"info.title": "Kubaka isi abahanuzi barose: isi irimo ubutabera n’amahoro ku Isirayeli n’abantu bose",
|
||||
"info.register": "Kwiyandikisha",
|
||||
"info.modal.title": "Ifishi iracyategurwa",
|
||||
"info.modal.text": "Turimo kunonosora ibisobanuro bya nyuma kugira ngo dufungure ifishi yo kwiyandikisha ku bakorerabushake. Vuba cyane uzashobora kuzuza kwiyandikisha uhereye hano.",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "Diplomasi rusange n’icyerekezo mpuzamahanga",
|
||||
"copy": "“Kubaka ku bushishozi isano ishingiye ku ndangagaciro z’ubunyangamugayo, umuco n’ingamba hagati y’abantu”",
|
||||
"buttonLabel": "Soma byinshi",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Gahunda n’aho gukorera",
|
||||
"copy": "“Amasomo, amahugurwa na gahunda zitoza zigenewe abayobozi, abanyamwuga n’abafatwa nk’intangarugero.”",
|
||||
"buttonLabel": "Soma byinshi",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Ndifuza gusaba kuba umukorerabushake",
|
||||
"copy": "Kwinjira ni ukwemera inshingano ifite intego",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "Kwiyandikisha",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "El Centro del Reino de Paz y Justicia (CRPJ) ni umuryango ukorera ku rwego mpuzamahanga, wibanda ku mahugurwa, ibiganiro by’ingamba n’ibikorwa bya rusange, ugamije guteza imbere ubutabera n’amahoro hakurikijwe indangagaciro z’iteka zatangajwe n’abahanuzi, kandi ufite umuhigo ugaragara kandi uhoraho kuri Isirayeli n’uruhare rwayo rukomeye mu mateka no mu hazaza h’isi",
|
||||
"info.copy_column1": "El Centro del Reino de Paz y Justicia (CRPJ) gitegura ibikorwa by’uburezi, ahantu ho gutekereza cyane no kuganira ku byimbitse, ndetse n’ibikorwa bifatika mu rwego rwa rusange, gihuza amahame y’umwuka, inshingano z’inzego n’ubuyobozi bushingiye ku ndangagaciro nziza. Imirimo yacyo iri mu murongo wa diplomasi rusange, ifatwa nk’igikoresho cyemewe cyo kugira uruhare mu biganiro mpuzamahanga, gushimangira amasano hagati y’ibihugu no kurengera indangagaciro z’ingenzi imbere y’imbogamizi z’iki gihe n’iz’ahazaza.",
|
||||
"info.copy_column2": "Amahoro ntabwo afatwa nk’ijambo ry’amatwara ridafite ishingiro cyangwa nk’icyifuzo cyoroshye, ahubwo afatwa nk’ingaruka z’ibyemezo bikomeye, ubuyobozi bushingiye ku ndangagaciro n’ubwitange buhoraho ku ntego zisobanutse, zemeranya n’uruhare rudashobora gusimburwa rwa Isirayeli mu kubaka gahunda y’isi irimo ubutabera n’ituze ku nyokomuntu yose.",
|
||||
"info.endbox": {
|
||||
"title": "Inshingano, Icyerekezo n’Indangagaciro z’Ikigo",
|
||||
"buttonLabel": "Soma byinshi",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
"nav.logo_line1": "Centro del Reino",
|
||||
"nav.logo_line2": "de Paz y Justicia",
|
||||
"nav.home": "Home",
|
||||
"nav.about": "Abo turi bo",
|
||||
"nav.news": "Amakuru",
|
||||
"nav.programs": "Porogaramu",
|
||||
"nav.archive": "Archivo",
|
||||
"nav.nations": "Naciones",
|
||||
"nav.contact": "Twandikire",
|
||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||
"hero.title": "Umuyobozi wabishinze",
|
||||
"hero.body": "“Inzozi z’ubuzima bwanjye ni ukubona isohozwa ry’iyerekwa ry’abahanuzi: isi irimo ubutabera n’amahoro ku bw’inyungu ya Isirayeli n’ibiremwabantubose.”",
|
||||
"carousel.text1": "Amahoro",
|
||||
"carousel.text2": "Ubutabera",
|
||||
"info.title": "Kubaka isi abahanuzi barose: isi irimo ubutabera n’amahoro ku Isirayeli n’abantu bose",
|
||||
"info.register": "Kwiyandikisha",
|
||||
"info.modal.title": "Ifishi iracyategurwa",
|
||||
"info.modal.text": "Turimo kunonosora ibisobanuro bya nyuma kugira ngo dufungure ifishi yo kwiyandikisha ku bakorerabushake. Vuba cyane uzashobora kuzuza kwiyandikisha uhereye hano.",
|
||||
"info.boxes": [
|
||||
{
|
||||
"title": "Diplomasi rusange n’icyerekezo mpuzamahanga",
|
||||
"copy": "“Kubaka ku bushishozi isano ishingiye ku ndangagaciro z’ubunyangamugayo, umuco n’ingamba hagati y’abantu”",
|
||||
"buttonLabel": "Soma byinshi",
|
||||
"bgColor": "#CBA16A",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#1F5349]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": true,
|
||||
"url": "#projection",
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "Ubutabera"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "Amahoro"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "Indangamuntu y’Ikigo",
|
||||
"identity.title": "Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera",
|
||||
"identity.body": "<p>Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera ni umuryango mpuzamahanga ugizwe n’ibihumbi by’abakorerabushake bari mu bihugu bitandukanye, bakora mu buryo buhuza ibikorwa, bayobowe kandi bagengwa n’ubuyobozi bwa Dr. José Benjamín Pérez Matos, ari we wenyine uhagarariye Centro del Reino de Paz y Justicia (CRPJ).</p><p>Ikigo gifite ibikorwa bikora mu migabane itandukanye y’isi, gihuza abantu, abayobozi, imiryango n’inzego zisangiye icyerekezo kimwe: kugeza indangagaciro z’Ubwami mu buzima bwa rusange no guhangana, mu buryo bufite inshingano n’icyizere, n’imbogamizi isi ihura na zo muri iki gihe.</p><p>Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera cyashinzwe gifite inshingano isobanutse: kubaka ibiraro bihuriza hamwe ukwizera n’ibikorwa mu rwego rwa rusange, gihuza gutekereza ko mumwuka, uburezi bw’ubwenge n’ubwitange bufatika, kigamije gutegura inzira igana mu gihe gishya, kirangwa n’umuco w’ubutabera bwisumbuyeho, amahoro nyakuri n’isi nziza kurushaho, hakurikijwe iyerekwa ry’abahanuzi.”</p><p>Icyerekezo cyayo gishingiye ku ngamba, ku rwego mpuzamahanga kandi kigana ku hazaza, kizi neza amakimbirane agaragara, amakimbirane y’umuco, imbogamizi za geopolitiki no gukenerwa k’ubuyobozi bukomeye bushobora gukora neza mu gihe cy’impinduka z’isi yose.</p>",
|
||||
"authority.title": "<strong>Abayobozi</strong> | Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera",
|
||||
"authority.body": "Dr. José Benjamín Pérez Matos ni we washinze kandi akaba ari we wenyine uhagarariye Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera. Ubuyobozi bwe buhuza icyerekezo cyo mu mwuka, uburezi bw’ubwenge, ibikorwa bya rusange n’icyerekezo mpuzamahanga",
|
||||
"title1.title": "Dr. José Benjamín Pérez Matos | Inzira",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "Aderesi y'ihema rinini Katedrali. Porto Rico",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "Kwitabira no kugira uruhare rugaragara mu bikorwa mpuzamahanga.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "Inyigisho za Bibiliya zikoreshwa mu gusesengura isi y’iki gihe",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "Ubwitange bwa rusange mu kurengera Isirayeli, ubutabera n’amahoro.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "Inshingano",
|
||||
"color1.text": "Gutoza abayobozi, guteza imbere ibikorwa by’uburezi no gushyigikira ibikorwa bya rusange bigamije ubutabera n’amahoro, bishingiye ku ndangagaciro z’ubunyangamugayo n’imbaraga zo mu mwuka zihamye, hamwe n’iyemezwa ryeruye ku Isirayeli no ku nshingano yo kugira uruhare mu mibereho myiza n’ituze ry’ikiremwamuntucyose muri rusange",
|
||||
"color2.title": "Icyerekezo",
|
||||
"color2.text": "Kuba ikigo kizwi ku rwego mpuzamahanga nk’icyitegererezo mu gutegura ubuyobozi, diplomasi rusange n’iterambere ry’inzego, gishimirwa ku bw’ukwiyubaha kwacyo, ubusobanuro bw’indangagaciro zacyo n’uruhare rufatika kigira mu kubaka isi ijyanye n’iyerekwa ry’abahanuzi ry’ubutabera n’amahoro",
|
||||
"title2.title": "Indangagaciro z’Ikigo",
|
||||
"values.justice.title": "Ubutabera",
|
||||
"values.justice.text": "Kwiyemeza mu bikorwa byo gushyigikira gahunda y’ ubutabera, ishingiye ku ndangagaciro nziza, kubaha umuntu no kurengera amahame adahinduka.”",
|
||||
"values.integrity.title": "Ubunyangamugayo",
|
||||
"values.integrity.text": "Guhuza ibitekerezo, ijambo n'ibikorwa; gukorera mu mucyo n'inshingano mu nzego rusange",
|
||||
"values.service.title": "Serivisi",
|
||||
"values.service.text": "Impano yo guherekeza no gukora ibikorwa bigamije intego zisobanutse kandi zifite agaciro karenze",
|
||||
"values.excellence.title": "Ubudashyikirwa",
|
||||
"values.excellence.text": "Ubusobanuro bwimbitse mu bwenge, ubunyamwuga no gukomeza gutera imbere mu buryo buhoraho mu nzego zose z’imirimo.”",
|
||||
"values.dialogue.title": "Ikiganiro gishingiye ku ngamba",
|
||||
"values.dialogue.text": "Gufungukira kungurana ibitekerezo hagati y’imuco, ibihugu n’imyemerere, ariko hatitawe ku kureka imyemerere cyangwa amahame y’ibanze",
|
||||
"projection.title": "Diplomasi rusange n’ikorwa ry’icyerekezo mpuzamahanga",
|
||||
"projection.text": "<p>“Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera giteza imbere diplomasi rusange igamije kubaka ku bushishozi amasano meza ashingiye ku ndangagaciro, umuco n’ingamba hagati y’abaturage, inzego n’abayobozi ku isi.”</p><p><strong>Binyuze mu nama, ingendo mpuzamahanga, amahuriro n’imikoranire y’inzegoCentro del Reino de Paz y Justicia (CRPJ) gikomeza imbere</strong></p><p><ul><li>Ikiganiro hagati y’amadini atandukanye n’imico itandukanye gishingiye ku ndangagaciro zihamye.</li><li>Kurengera ubutabera n’amahoro mu rwego mpuzamahanga.</li><li>Guhuza imikoranire n’abayobozi ba politiki, abashakashatsi no mu mibereho rusange</li><li>Gushyigikira kugaragara kandi guhoraho ubwoko bw’Abayahudi ndetse na Leta ya Isiraheli, hamenyekanishwa akamaro kabo mu mateka, mu by’umwuka no mu ruhando rwa politiki mpuzamahanga.</li></ul></p><p>Uku kwaguka ku rwego mpuzamahanga gushyira Centro del Reino de Paz y Justicia (CRPJ) mu rwego rw’abagize uruhare rukomeye mu biganiro mpuzamahanga ku hazaza h’isi, ituze mpuzamahanga n’iyubahirizwa ry’indangagaciro z’ubuhanuzi.</p>",
|
||||
"projection.card1": "Guhuza imikoranire n’abayobozi ba politiki, abashakashatsi no mu mibereho rusange",
|
||||
"projection.card2": "Gushyigikira mu buryo bugaragara kandi buhoraho Abayahudi ndetse na Leta ya Isiraheli.",
|
||||
"formation.title": "Amahugurwa n’Ubushobozi",
|
||||
"formation.subtitle": "Gahunda n’Inzego z’Ibikorwa",
|
||||
"formation.text": "El <strong>Centro del Reino de Paz y Justicia (CRPJ) gitegura amasomo, amahugurwa na gahunda zo kongerera ubumenyi zigenewe abayobozi, abahanga mu by’umwuga, abahagarariye inzego zitandukanye n’abafite inshingano mu ruhame.",
|
||||
"formation.area.title": "Agace k'amahugurwa",
|
||||
"formation.area.text": "<li>Ubuyobozi bufite indangagaciro n’icyerekezo gihamye.</li> <li>Ubuhuza no gukemura amakimbirane mu buryo bw’ inshingano.</li> <li>Ukwizera, indangagaciro n’ibikorwa mu ruhame.</li> <li>Isesengura ry’imiterere mpuzamahanga n’imbogamizi z’iki gihe.</li> <li>Ishingiro ryo kubaka amahoro akomeye kandi arambye, ashingiye ku Isiraheli.</li>",
|
||||
"formation.consulting.title": "Impanuro n’Ubujyanama",
|
||||
"formation.consulting.text": "Guherekeza mu buryo bw’ingenzi imiryango n’inzego zishaka gutegura no gushyira mu bikorwa gahunda zigira ingaruka nziza, zishingiye ku ndangagaciro zihamye, intego zihuza inzego zitandukanye n’icyerekezo kirambye kireba kure.",
|
||||
"formation.action.title": "Imishinga y’ibikorwa",
|
||||
"formation.action.text": "Gushyira mu bikorwa imishinga ifatika mu turere dutandukanye, igamije amahugurwa, gukumira amakimbirane no kongerera imbaraga ubuyobozi bw’aho hantu bufite icyerekezo mpuzamahanga.",
|
||||
"news.title": "Amakuru",
|
||||
"news.text": "Amakuru y’inzego n’aho umuryango ugeze ku rwego mpuzamahanga",
|
||||
"news.text2": "Iki gice gikusanya ibikorwa by’ingenzi, ishimwe n’ibikorwa bya buri munsi bya Centro del Reino de Paz y Justician’iby’wawushinze",
|
||||
"news.text3": "Esta página reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
||||
"news.buttonLable": "Reba andi makuru",
|
||||
"news.seemore": "Reba byinshi",
|
||||
"news.all": "byose",
|
||||
"news.allYears": "Amaezi yose",
|
||||
"participate.title": "Uruhare rwawe | Imikoranire",
|
||||
"participate.text": "Kwinjira ni ukwiyemeza inshingano ifite intego.",
|
||||
"participate.text2": "Umurimo wa Centro del Reino de Paz y Justicia urushaho gukomera binyuze mu ruhare rw’abantu n’inzego zihuza n’indangagaciro n’intego zacyo rusange. Uburyo bwo kugira uruhare:",
|
||||
"participate.box1.title": "Ubukorerabushake:",
|
||||
"participate.box1.text": "Gufatanya mu mishinga y’amahugurwa, iy’inzego cyangwa mpuzamahanga.",
|
||||
"participate.box2.title": "Gukwirakwiza amakuru y’ikigo:",
|
||||
"participate.box2.text": "Gukwiza no gutangaza ubutumwa n’ibikorwa bya Centro del Reino de Paz y Justicia (CRPJ) mu ruhame.",
|
||||
"participate.text3": "Amahoro yubakwa binyuze mu byemezo bifite inshingano, ubuyobozi bufite ubushake n’inyito ihamye, ndetse n’ibikorwa bikomeza kandi birambye.",
|
||||
"footer.title": "Twandikire",
|
||||
"footer.subtitle": "Reka duhuze imbaraga dufite icyerekezo n’intego imwe.",
|
||||
"footer.text": "El <strong>Centro del Reino de Paz y Justicia</strong> inzira zitaziguye zo gutanga ibibazo by’inzego, kugira uruhare muri gahunda n’ibikorwa mpuzamahanga.",
|
||||
"footer.text2": "Imbuga nkoranyambaga: amakuru ahoraho ku bikorwa n’amatangazo y’inama cyangwa ibikorwa bitandukanye.",
|
||||
"footer.email": "Imeyili: ",
|
||||
"footer.form.name": "Amazina yombi",
|
||||
"footer.form.mesagge": "Andika ubutumwa bwawe",
|
||||
"footer.form.button": "Ohereza",
|
||||
"footer.reserved": "© 2026. Uburenganzira bwose bufitwe na Centro del Reino de Paz y Justicia(Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera)"
|
||||
}
|
||||
{
|
||||
"title": "Gahunda n’aho gukorera",
|
||||
"copy": "“Amasomo, amahugurwa na gahunda zitoza zigenewe abayobozi, abanyamwuga n’abafatwa nk’intangarugero.”",
|
||||
"buttonLabel": "Soma byinshi",
|
||||
"bgColor": "#003421",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#EDE9D9]",
|
||||
"sizeText": "text-xl",
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"url": "#programs",
|
||||
"hasButton": true,
|
||||
"hasIcon": true,
|
||||
"hasInput": false
|
||||
},
|
||||
{
|
||||
"title": "Ndifuza gusaba kuba umukorerabushake",
|
||||
"copy": "Kwinjira ni ukwemera inshingano ifite intego",
|
||||
"bgColor": "#EBE6D2",
|
||||
"buttonLabel": "Kwiyandikisha",
|
||||
"sizeTitle": "text-2xl",
|
||||
"titleColor": "text-[#CBA16A]",
|
||||
"textColor": "text-[#003421]",
|
||||
"sizeText": "text-xl",
|
||||
"hasButton": false,
|
||||
"hasIcon": true,
|
||||
"hasInput": true
|
||||
}
|
||||
],
|
||||
"info.copy1": "El Centro del Reino de Paz y Justicia (CRPJ) ni umuryango ukorera ku rwego mpuzamahanga, wibanda ku mahugurwa, ibiganiro by’ingamba n’ibikorwa bya rusange, ugamije guteza imbere ubutabera n’amahoro hakurikijwe indangagaciro z’iteka zatangajwe n’abahanuzi, kandi ufite umuhigo ugaragara kandi uhoraho kuri Isirayeli n’uruhare rwayo rukomeye mu mateka no mu hazaza h’isi",
|
||||
"info.copy_column1": "El Centro del Reino de Paz y Justicia (CRPJ) gitegura ibikorwa by’uburezi, ahantu ho gutekereza cyane no kuganira ku byimbitse, ndetse n’ibikorwa bifatika mu rwego rwa rusange, gihuza amahame y’umwuka, inshingano z’inzego n’ubuyobozi bushingiye ku ndangagaciro nziza. Imirimo yacyo iri mu murongo wa diplomasi rusange, ifatwa nk’igikoresho cyemewe cyo kugira uruhare mu biganiro mpuzamahanga, gushimangira amasano hagati y’ibihugu no kurengera indangagaciro z’ingenzi imbere y’imbogamizi z’iki gihe n’iz’ahazaza.",
|
||||
"info.copy_column2": "Amahoro ntabwo afatwa nk’ijambo ry’amatwara ridafite ishingiro cyangwa nk’icyifuzo cyoroshye, ahubwo afatwa nk’ingaruka z’ibyemezo bikomeye, ubuyobozi bushingiye ku ndangagaciro n’ubwitange buhoraho ku ntego zisobanutse, zemeranya n’uruhare rudashobora gusimburwa rwa Isirayeli mu kubaka gahunda y’isi irimo ubutabera n’ituze ku nyokomuntu yose.",
|
||||
"info.endbox": {
|
||||
"title": "Inshingano, Icyerekezo n’Indangagaciro z’Ikigo",
|
||||
"buttonLabel": "Soma byinshi",
|
||||
"hasButton": true,
|
||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||
"hasIcon": true,
|
||||
"url": "#mision",
|
||||
"bgColor": "#CBA16A",
|
||||
"titleColor": "text-tertiary",
|
||||
"sizeTitle": "text-2xl"
|
||||
},
|
||||
"carousel1.images": [
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
"text": "Ubutabera"
|
||||
},
|
||||
{
|
||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
"text": "Amahoro"
|
||||
}
|
||||
],
|
||||
"identity.initTitle": "Indangamuntu y’Ikigo",
|
||||
"identity.title": "Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera",
|
||||
"identity.body": "<p>Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera ni umuryango mpuzamahanga ugizwe n’ibihumbi by’abakorerabushake bari mu bihugu bitandukanye, bakora mu buryo buhuza ibikorwa, bayobowe kandi bagengwa n’ubuyobozi bwa Dr. José Benjamín Pérez Matos, ari we wenyine uhagarariye Centro del Reino de Paz y Justicia (CRPJ).</p><p>Ikigo gifite ibikorwa bikora mu migabane itandukanye y’isi, gihuza abantu, abayobozi, imiryango n’inzego zisangiye icyerekezo kimwe: kugeza indangagaciro z’Ubwami mu buzima bwa rusange no guhangana, mu buryo bufite inshingano n’icyizere, n’imbogamizi isi ihura na zo muri iki gihe.</p><p>Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera cyashinzwe gifite inshingano isobanutse: kubaka ibiraro bihuriza hamwe ukwizera n’ibikorwa mu rwego rwa rusange, gihuza gutekereza ko mumwuka, uburezi bw’ubwenge n’ubwitange bufatika, kigamije gutegura inzira igana mu gihe gishya, kirangwa n’umuco w’ubutabera bwisumbuyeho, amahoro nyakuri n’isi nziza kurushaho, hakurikijwe iyerekwa ry’abahanuzi.”</p><p>Icyerekezo cyayo gishingiye ku ngamba, ku rwego mpuzamahanga kandi kigana ku hazaza, kizi neza amakimbirane agaragara, amakimbirane y’umuco, imbogamizi za geopolitiki no gukenerwa k’ubuyobozi bukomeye bushobora gukora neza mu gihe cy’impinduka z’isi yose.</p>",
|
||||
"authority.title": "<strong>Abayobozi</strong> | Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera",
|
||||
"authority.body": "Dr. José Benjamín Pérez Matos ni we washinze kandi akaba ari we wenyine uhagarariye Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera. Ubuyobozi bwe buhuza icyerekezo cyo mu mwuka, uburezi bw’ubwenge, ibikorwa bya rusange n’icyerekezo mpuzamahanga",
|
||||
"title1.title": "Dr. José Benjamín Pérez Matos | Inzira",
|
||||
"grid.cards": [
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-down-thin",
|
||||
"text": "Aderesi y'ihema rinini Katedrali. Porto Rico",
|
||||
"bgColor": "#EBE5D0",
|
||||
"textColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-right-thin",
|
||||
"text": "Kwitabira no kugira uruhare rugaragara mu bikorwa mpuzamahanga.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#BEA48D"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-up-thin",
|
||||
"text": "Inyigisho za Bibiliya zikoreshwa mu gusesengura isi y’iki gihe",
|
||||
"textColor": "#EBE5D0",
|
||||
"bgColor": "#003421"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"icon": "ph:arrow-circle-left-thin",
|
||||
"text": "Ubwitange bwa rusange mu kurengera Isirayeli, ubutabera n’amahoro.",
|
||||
"textColor": "#003421",
|
||||
"bgColor": "#EBE5D0"
|
||||
}
|
||||
],
|
||||
"color1.title": "Inshingano",
|
||||
"color1.text": "Gutoza abayobozi, guteza imbere ibikorwa by’uburezi no gushyigikira ibikorwa bya rusange bigamije ubutabera n’amahoro, bishingiye ku ndangagaciro z’ubunyangamugayo n’imbaraga zo mu mwuka zihamye, hamwe n’iyemezwa ryeruye ku Isirayeli no ku nshingano yo kugira uruhare mu mibereho myiza n’ituze ry’ikiremwamuntucyose muri rusange",
|
||||
"color2.title": "Icyerekezo",
|
||||
"color2.text": "Kuba ikigo kizwi ku rwego mpuzamahanga nk’icyitegererezo mu gutegura ubuyobozi, diplomasi rusange n’iterambere ry’inzego, gishimirwa ku bw’ukwiyubaha kwacyo, ubusobanuro bw’indangagaciro zacyo n’uruhare rufatika kigira mu kubaka isi ijyanye n’iyerekwa ry’abahanuzi ry’ubutabera n’amahoro",
|
||||
"title2.title": "Indangagaciro z’Ikigo",
|
||||
"values.justice.title": "Ubutabera",
|
||||
"values.justice.text": "Kwiyemeza mu bikorwa byo gushyigikira gahunda y’ ubutabera, ishingiye ku ndangagaciro nziza, kubaha umuntu no kurengera amahame adahinduka.”",
|
||||
"values.integrity.title": "Ubunyangamugayo",
|
||||
"values.integrity.text": "Guhuza ibitekerezo, ijambo n'ibikorwa; gukorera mu mucyo n'inshingano mu nzego rusange",
|
||||
"values.service.title": "Serivisi",
|
||||
"values.service.text": "Impano yo guherekeza no gukora ibikorwa bigamije intego zisobanutse kandi zifite agaciro karenze",
|
||||
"values.excellence.title": "Ubudashyikirwa",
|
||||
"values.excellence.text": "Ubusobanuro bwimbitse mu bwenge, ubunyamwuga no gukomeza gutera imbere mu buryo buhoraho mu nzego zose z’imirimo.”",
|
||||
"values.dialogue.title": "Ikiganiro gishingiye ku ngamba",
|
||||
"values.dialogue.text": "Gufungukira kungurana ibitekerezo hagati y’imuco, ibihugu n’imyemerere, ariko hatitawe ku kureka imyemerere cyangwa amahame y’ibanze",
|
||||
"projection.title": "Diplomasi rusange n’ikorwa ry’icyerekezo mpuzamahanga",
|
||||
"projection.text": "<p>“Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera giteza imbere diplomasi rusange igamije kubaka ku bushishozi amasano meza ashingiye ku ndangagaciro, umuco n’ingamba hagati y’abaturage, inzego n’abayobozi ku isi.”</p><p><strong>Binyuze mu nama, ingendo mpuzamahanga, amahuriro n’imikoranire y’inzegoCentro del Reino de Paz y Justicia (CRPJ) gikomeza imbere</strong></p><p><ul><li>Ikiganiro hagati y’amadini atandukanye n’imico itandukanye gishingiye ku ndangagaciro zihamye.</li><li>Kurengera ubutabera n’amahoro mu rwego mpuzamahanga.</li><li>Guhuza imikoranire n’abayobozi ba politiki, abashakashatsi no mu mibereho rusange</li><li>Gushyigikira kugaragara kandi guhoraho ubwoko bw’Abayahudi ndetse na Leta ya Isiraheli, hamenyekanishwa akamaro kabo mu mateka, mu by’umwuka no mu ruhando rwa politiki mpuzamahanga.</li></ul></p><p>Uku kwaguka ku rwego mpuzamahanga gushyira Centro del Reino de Paz y Justicia (CRPJ) mu rwego rw’abagize uruhare rukomeye mu biganiro mpuzamahanga ku hazaza h’isi, ituze mpuzamahanga n’iyubahirizwa ry’indangagaciro z’ubuhanuzi.</p>",
|
||||
"projection.card1": "Guhuza imikoranire n’abayobozi ba politiki, abashakashatsi no mu mibereho rusange",
|
||||
"projection.card2": "Gushyigikira mu buryo bugaragara kandi buhoraho Abayahudi ndetse na Leta ya Isiraheli.",
|
||||
"formation.title": "Amahugurwa n’Ubushobozi",
|
||||
"formation.subtitle": "Gahunda n’Inzego z’Ibikorwa",
|
||||
"formation.text": "El <strong>Centro del Reino de Paz y Justicia (CRPJ) gitegura amasomo, amahugurwa na gahunda zo kongerera ubumenyi zigenewe abayobozi, abahanga mu by’umwuga, abahagarariye inzego zitandukanye n’abafite inshingano mu ruhame.",
|
||||
"formation.area.title": "Agace k'amahugurwa",
|
||||
"formation.area.text": "<li>Ubuyobozi bufite indangagaciro n’icyerekezo gihamye.</li> <li>Ubuhuza no gukemura amakimbirane mu buryo bw’ inshingano.</li> <li>Ukwizera, indangagaciro n’ibikorwa mu ruhame.</li> <li>Isesengura ry’imiterere mpuzamahanga n’imbogamizi z’iki gihe.</li> <li>Ishingiro ryo kubaka amahoro akomeye kandi arambye, ashingiye ku Isiraheli.</li>",
|
||||
"formation.consulting.title": "Impanuro n’Ubujyanama",
|
||||
"formation.consulting.text": "Guherekeza mu buryo bw’ingenzi imiryango n’inzego zishaka gutegura no gushyira mu bikorwa gahunda zigira ingaruka nziza, zishingiye ku ndangagaciro zihamye, intego zihuza inzego zitandukanye n’icyerekezo kirambye kireba kure.",
|
||||
"formation.action.title": "Imishinga y’ibikorwa",
|
||||
"formation.action.text": "Gushyira mu bikorwa imishinga ifatika mu turere dutandukanye, igamije amahugurwa, gukumira amakimbirane no kongerera imbaraga ubuyobozi bw’aho hantu bufite icyerekezo mpuzamahanga.",
|
||||
"news.title": "Amakuru",
|
||||
"news.text": "Amakuru y’inzego n’aho umuryango ugeze ku rwego mpuzamahanga",
|
||||
"news.text2": "Iki gice gikusanya ibikorwa by’ingenzi, ishimwe n’ibikorwa bya buri munsi bya Centro del Reino de Paz y Justician’iby’wawushinze",
|
||||
"news.text3": "Esta página reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
||||
"news.buttonLable": "Reba andi makuru",
|
||||
"news.seemore": "Reba byinshi",
|
||||
"news.fullnew": "Read Complete Article",
|
||||
"news.all": "byose",
|
||||
"news.allYears": "Amaezi yose",
|
||||
"participate.title": "Uruhare rwawe | Imikoranire",
|
||||
"participate.text": "Kwinjira ni ukwiyemeza inshingano ifite intego.",
|
||||
"participate.text2": "Umurimo wa Centro del Reino de Paz y Justicia urushaho gukomera binyuze mu ruhare rw’abantu n’inzego zihuza n’indangagaciro n’intego zacyo rusange. Uburyo bwo kugira uruhare:",
|
||||
"participate.box1.title": "Ubukorerabushake:",
|
||||
"participate.box1.text": "Gufatanya mu mishinga y’amahugurwa, iy’inzego cyangwa mpuzamahanga.",
|
||||
"participate.box2.title": "Gukwirakwiza amakuru y’ikigo:",
|
||||
"participate.box2.text": "Gukwiza no gutangaza ubutumwa n’ibikorwa bya Centro del Reino de Paz y Justicia (CRPJ) mu ruhame.",
|
||||
"participate.text3": "Amahoro yubakwa binyuze mu byemezo bifite inshingano, ubuyobozi bufite ubushake n’inyito ihamye, ndetse n’ibikorwa bikomeza kandi birambye.",
|
||||
"footer.title": "Twandikire",
|
||||
"footer.subtitle": "Reka duhuze imbaraga dufite icyerekezo n’intego imwe.",
|
||||
"footer.text": "El <strong>Centro del Reino de Paz y Justicia</strong> inzira zitaziguye zo gutanga ibibazo by’inzego, kugira uruhare muri gahunda n’ibikorwa mpuzamahanga.",
|
||||
"footer.text2": "Imbuga nkoranyambaga: amakuru ahoraho ku bikorwa n’amatangazo y’inama cyangwa ibikorwa bitandukanye.",
|
||||
"footer.email": "Imeyili: ",
|
||||
"footer.form.name": "Amazina yombi",
|
||||
"footer.form.mesagge": "Andika ubutumwa bwawe",
|
||||
"footer.form.button": "Ohereza",
|
||||
"footer.reserved": "© 2026. Uburenganzira bwose bufitwe na Centro del Reino de Paz y Justicia(Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera)"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -90,12 +90,12 @@ const dateISO = `${y}-${m}-${d}`;
|
|||
<Header />
|
||||
</div>
|
||||
|
||||
<a href={`/${locale}/${news_slug}/${post.id}`} class="block">
|
||||
<a class="block">
|
||||
<TitleSection title={post.data.title} />
|
||||
</a>
|
||||
|
||||
<div class="container mx-auto">
|
||||
<a href={`/${locale}/${news_slug}/${post.id}`} class="block">
|
||||
<a class="block">
|
||||
{
|
||||
post.data.gallery?.length ? (
|
||||
<CarouselSection images={post.data.gallery} />
|
||||
|
|
|
|||
|
|
@ -12,9 +12,9 @@ const tl = createTranslator(Astro.currentLocale);
|
|||
export function getStaticPaths() {
|
||||
const locales = Object.keys(routeTranslations.news);
|
||||
return locales.map((locale) => ({
|
||||
params: {
|
||||
locale,
|
||||
news_slug: getLocalizedRoute('news', locale)
|
||||
params: {
|
||||
locale,
|
||||
news_slug: getLocalizedRoute('news', locale)
|
||||
},
|
||||
}));
|
||||
}
|
||||
|
|
@ -52,9 +52,9 @@ const allYears = [...new Set(
|
|||
<div class="container mx-auto mt-4">
|
||||
<div class="flex flex-col lg:w-1/2 items-center mx-auto py-8">
|
||||
<h1 class="text-white text-2xl uppercase font-bold text-center mb-4 font-primary md:mt-20 mt-10">{tl("news.title")}</h1>
|
||||
<h2 class="text-white text-3xl lg:text-5xl font-bold text-center font-secondary mb-4">{tl("news.text")}</h2>
|
||||
<h2 class="text-white text-3xl lg:text-5xl font-bold text-center font-secondary mb-4 md:p-0 px-2">{tl("news.text")}</h2>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
{allTags.length > 0 && (
|
||||
<div class="container mx-auto mb-8 px-4 md:px-0">
|
||||
|
|
@ -186,4 +186,4 @@ const allYears = [...new Set(
|
|||
initTags();
|
||||
initYearFilter();
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -47,12 +47,14 @@ const carouselImages3 = [
|
|||
---
|
||||
|
||||
<MainLayout>
|
||||
|
||||
|
||||
<HeroHome />
|
||||
|
||||
<InfoSection bgColor="bg-white" title="Construyendo el mundo soñado por los profetas: justicia y paz para Israel y toda la humanidad" />
|
||||
|
||||
<CarouselSection class="object-cover" images={carouselImages3} />
|
||||
<div class="carousel-full md:h-[110vh] h-[30vh]">
|
||||
<CarouselSection class="h-full" images={carouselImages3} imgClass="object-cover w-full h-full" />
|
||||
</div>
|
||||
|
||||
<IdentitySection bgColor="bg-white" colorText="text-[#003421]" initTitle="Identidad Institucional" title="El Centro del Reino de Paz y Justicia" />
|
||||
|
||||
|
|
@ -85,7 +87,9 @@ const carouselImages3 = [
|
|||
|
||||
<FormationSection />
|
||||
|
||||
<CarouselSection images={carouselImages2} />
|
||||
<div class="carousel-full md:h-[110vh] h-[30vh]">
|
||||
<CarouselSection class="h-full" images={carouselImages2} imgClass="object-cover w-full h-full" />
|
||||
</div>
|
||||
|
||||
<NewsSection />
|
||||
|
||||
|
|
@ -94,3 +98,13 @@ const carouselImages3 = [
|
|||
<FooterSection />
|
||||
|
||||
</MainLayout>
|
||||
|
||||
<style>
|
||||
.carousel-full :global(.mx-auto),
|
||||
.carousel-full :global(.swiper),
|
||||
.carousel-full :global(.swiper-wrapper),
|
||||
.carousel-full :global(.swiper-slide),
|
||||
.carousel-full :global(.swiper-slide > div) {
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -18,33 +18,49 @@ import ColumnsSection from "../components/section/ColumnsSection.astro";
|
|||
import FormationSection from "../components/section/FormationSection.astro";
|
||||
import FooterSection from "../components/section/FooterSection.astro";
|
||||
|
||||
const { locale } = Astro.params;
|
||||
|
||||
import { createTranslator } from '../i18n';
|
||||
const tl = createTranslator(Astro.currentLocale);
|
||||
|
||||
const carouselImages2 = [
|
||||
{
|
||||
image: "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
text: tl("carousel.text1"),
|
||||
},
|
||||
{
|
||||
image: "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
text: tl("carousel.text2"),
|
||||
},
|
||||
];
|
||||
|
||||
const carouselImages3 = [
|
||||
{
|
||||
image: "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp",
|
||||
text: "Justicia",
|
||||
text: tl("carousel.text1"),
|
||||
},
|
||||
{
|
||||
image: "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||
text: "Paz",
|
||||
text: tl("carousel.text2"),
|
||||
},
|
||||
];
|
||||
---
|
||||
|
||||
<MainLayout>
|
||||
|
||||
<HeroHome />
|
||||
|
||||
<InfoSection />
|
||||
<InfoSection bgColor="bg-white" title="Construyendo el mundo soñado por los profetas: justicia y paz para Israel y toda la humanidad" />
|
||||
|
||||
<CarouselSection images={tl("carousel1.images")} />
|
||||
<div class="carousel-full md:h-[110vh] h-[30vh]">
|
||||
<CarouselSection class="h-full" images={carouselImages3} imgClass="object-cover w-full h-full" />
|
||||
</div>
|
||||
|
||||
<IdentitySection />
|
||||
<IdentitySection bgColor="bg-white" colorText="text-[#003421]" initTitle="Identidad Institucional" title="El Centro del Reino de Paz y Justicia" />
|
||||
|
||||
<AuthoritySection />
|
||||
<AuthoritySection bgColor="bg-[#003421]" titleColor="text-colorSecondary" descColor="text-[#EBE6D2]" />
|
||||
|
||||
<TitleSection title="Dr. José Benjamín Pérez Matos | Trayectoria" />
|
||||
<TitleSection title={tl("title1.title")} />
|
||||
|
||||
<GridSection />
|
||||
|
||||
|
|
@ -53,25 +69,27 @@ const carouselImages3 = [
|
|||
bgColor="#22523F"
|
||||
titleColor="text-[#ffffff]"
|
||||
textColor="text-[#CBA16A] font-bold"
|
||||
title="Misión"
|
||||
text="Formar líderes, impulsar iniciativas educativas y promover acciones públicas orientadas a la justicia y la paz, desde una base ética y espiritual firme, con un compromiso explícito con Israel y con la responsabilidad de contribuir al bienestar y la estabilidad de la humanidad en su conjunto." />
|
||||
title={tl("color1.title")}
|
||||
text={tl("color1.text")} />
|
||||
|
||||
<ColorSection
|
||||
bgColor="#CBA16A"
|
||||
titleColor="text-[#ffffff]"
|
||||
textColor="text-[#ffffff] font-bold"
|
||||
title="Visión"
|
||||
text="Consolidarse como un actor internacional de referencia en formación de liderazgo, diplomacia pública y proyección institucional, reconocido por su coherencia, su claridad de valores y su contribución concreta a la construcción de un mundo alineado con la visión profética de justicia y paz." />
|
||||
title={tl("color2.title")}
|
||||
text={tl("color2.text")} />
|
||||
|
||||
<TitleSection title="Valores Intitucionales" />
|
||||
<TitleSection title={tl("title2.title")} />
|
||||
|
||||
<ColumnsSection />
|
||||
|
||||
<ProjectionSection />
|
||||
<ProjectionSection title={tl("projection.title")} />
|
||||
|
||||
<FormationSection />
|
||||
|
||||
<CarouselSection images={tl("carousel1.images")} />
|
||||
<div class="carousel-full md:h-[110vh] h-[30vh]">
|
||||
<CarouselSection class="h-full" images={carouselImages2} imgClass="object-cover w-full h-full" />
|
||||
</div>
|
||||
|
||||
<NewsSection />
|
||||
|
||||
|
|
@ -80,3 +98,13 @@ const carouselImages3 = [
|
|||
<FooterSection />
|
||||
|
||||
</MainLayout>
|
||||
|
||||
<style>
|
||||
.carousel-full :global(.mx-auto),
|
||||
.carousel-full :global(.swiper),
|
||||
.carousel-full :global(.swiper-wrapper),
|
||||
.carousel-full :global(.swiper-slide),
|
||||
.carousel-full :global(.swiper-slide > div) {
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in New Issue