feat: add internationalization support and localized content for Kinyarwanda, English, Spanish, Korean, Hebrew, French, and Portuguese

This commit is contained in:
Esteban 2026-05-17 08:13:15 -05:00
parent cacf641e7e
commit 714d9d96cc
11 changed files with 337 additions and 311 deletions

View File

@ -12,16 +12,17 @@ const currentLocale = Astro.currentLocale;
const currentPath = Astro.url.pathname;
function translatePath(newLocale: string) {
const segments = currentPath.split('/').filter(Boolean);
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 => {
const translatedSegments = remainingSegments.map((segment) => {
for (const key in routeTranslations) {
const translations = routeTranslations[key as keyof typeof routeTranslations];
const translations =
routeTranslations[key as keyof typeof routeTranslations];
if (Object.values(translations).includes(segment)) {
return translations[newLocale as keyof typeof translations] || segment;
}
@ -32,47 +33,62 @@ function translatePath(newLocale: string) {
// 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
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
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}#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>
@ -80,56 +96,162 @@ const { locale } = Astro.params;
<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>
<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">
<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="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" />
<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>
</ul>
</div>
<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" />
<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">
<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>
<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>
</nav>

View File

@ -2,7 +2,7 @@
locale: pt
title: 'Urgência pela paz: o Dr. José Benjamín Pérez Matos pede a libertação imediata dos reféns em Israel '
date: 2025-04-27
slug: 2025-04-27-urgencia-por-la-paz-el-dr-jose-benjamin-perez-matos-llama-a-la-liberacion-inmediata-de-rehenes-de-israel
slug: 2025-04-27-urgencia-pela-paz-o-dr-jose-benjamin-perez-matos-pede-a-libertacao-imediata-dos-refens-em-israel
place: ''
country: 'PR'
city: 'Cayey'

View File

@ -2,7 +2,7 @@
locale: pt
title: 'Geopolítica e profecia: o Dr. José Benjamín Pérez Matos adverte sobre o juízo às nações e projeta um novo cenário para a América Latina'
date: 2025-09-14
slug: 2025-09-14-geopolitica-y-profecia-el-dr-jose-benjamin-perez-matos-advierte-sobre-el-juicio-a-las-naciones-y-proyecta-un-nuevo-escenario-para-america-latina
slug: 2025-09-14-geopolitica-e-profecia-o-dr-jose-benjamin-perez-matos-adverte-sobre-o-jui-zo-as-nacoes-e-projeta-um-novo-cenario-para-a-america-latina
tags: [Geopolítica, Israel, Porto Rico, Espanha, Venezuela, Nicarágua, Cuba]
coutry: 'PR'
city: Cayey

View File

@ -1,8 +1,8 @@
---
locale: rw
title: 'Dr. José Benjamín Pérez Matos destaca el liderazgo de Nayib Bukele en un acto en San Salvador'
title: 'Umuyobozi mpuzamahanga yashimye uburyo bwimiyoborere bwa El Salvador nuruhare rwayo mu karere mu gikorwa cyabereye muri Palacio de los Deportes.'
date: 2026-04-26
slug: 2026-04-26-dr-jose-benjamin-perez-matos-destaca-el-liderazgo-de-nayib-bukele-en-un-acto-en-san-salvador
slug: 2026-04-26-umuyobozi-mpuzamahanga-yashimye-uburyobwimiyoborerebwa-elsalvadornuruhaerwayomukareremukigikorwacyabereyemuri-palaciodelosdeportes
country: SV
city: San Salvador
place: Palacio de los Deportes
@ -16,7 +16,7 @@ gallery: [
---
# Dr. José Benjamín Pérez Matos destaca el liderazgo de Nayib Bukele en un acto en San Salvador
# Umuyobozi mpuzamahanga yashimye uburyo bwimiyoborere bwa El Salvador nuruhare rwayo mu karere mu gikorwa cyabereye muri Palacio de los Deportes.
*San Salvador, El Salvador 26 Mata 2026*

View File

@ -10,7 +10,6 @@
"hero.name": "Dr. José Benjamín Pérez Matos",
"hero.title": "Founding Leader",
"hero.body": "“My lifes 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",
@ -28,7 +27,7 @@
"textColor": "text-[#003421]",
"sizeText": "text-xl",
"hasButton": true,
"url":"#projection",
"url": "#projection",
"hasIcon": true,
"hasInput": false
},
@ -70,87 +69,78 @@
"hasButton": true,
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
"hasIcon": true,
"url":"#mision",
"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"
"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" : [
"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 involment 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"
}
"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 involment 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",
@ -161,12 +151,10 @@
"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>El <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.",
@ -176,7 +164,6 @@
"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.",
@ -185,8 +172,6 @@
"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:",
@ -195,14 +180,13 @@
"participate.box2.title": "Institutional outreach:",
"participate.box2.text": "amplify the KPJCs 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": "Lets 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": "Email: <br> <strong>developer@centrodelreinodepazyjusticia.com</strong><br /> Social media: regular updates on events and announcements.",
"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"
}

View File

@ -7,14 +7,11 @@
"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",
@ -30,7 +27,7 @@
"textColor": "text-[#003421]",
"sizeText": "text-xl",
"hasButton": true,
"url":"#projection",
"url": "#projection",
"hasIcon": true,
"hasInput": false
},
@ -72,33 +69,28 @@
"hasButton": true,
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
"hasIcon": true,
"url":"#mision",
"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"
"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" : [
"grid.cards": [
{
"type": "text",
"icon": "ph:arrow-circle-down-thin",
@ -144,35 +136,25 @@
"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.",
@ -182,7 +164,6 @@
"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.",
@ -191,7 +172,6 @@
"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:",
@ -200,11 +180,11 @@
"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": "Correo electrónico:<br> <strong>developer@centrodelreinodepazyjusticia.com</strong><br /> Redes sociales: actualizaciones permanentes sobre actividades y convocatorias.",
"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",

View File

@ -183,7 +183,8 @@
"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": "Courriel:<br> <strong>developer@centrodelreinodepazyjusticia.com</strong><br /> Réseaux sociaux : mises à jour permanentes sur des activités et des convocations.",
"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",

View File

@ -5,14 +5,11 @@
"nav.news": "חדשות",
"nav.programs": "תוכניות",
"nav.contact": "צור קשר",
"hero.name": "ד\"ר חוסה בנחמין פרז מאטוס",
"hero.title": "מנהיג ומייסד הארגון",
"hero.body": "“החלום שלי הוא לראות את הגשמת חזון הנביאים: עולם של צדק ושלום, לטובת ישראל והאנושות כולה.”",
"carousel.text1": "שלום",
"carousel.text2": "צדק",
"info.title": "בניית העולם שעליו חלמו הנביאים: עולם של צדק ושלום למען ישראל והאנושות כולה",
"info.register": "הרשמה",
"info.modal.title": "הטופס יעלה בקרוב",
@ -28,7 +25,7 @@
"textColor": "text-[#003421]",
"sizeText": "text-xl",
"hasButton": true,
"url":"#projection",
"url": "#projection",
"hasIcon": true,
"hasInput": false
},
@ -70,33 +67,28 @@
"hasButton": true,
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
"hasIcon": true,
"url":"#mision",
"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": "שלום"
"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" : [
"grid.cards": [
{
"type": "text",
"icon": "ph:arrow-circle-down-thin",
@ -142,35 +134,25 @@
"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": "המרכז מפתח קורסים, סמינרים ותוכניות הכשרה למנהיגים, אנשי מקצוע, בכירים במוסדות ובעלי תפקידים באחריות ציבורית.",
@ -180,13 +162,11 @@
"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": "עבודת המרכז מתחזקת עם השתתפותם של אנשים ומוסדות החולקים ערכים ומטרות כלליות משותפות.",
@ -195,15 +175,13 @@
"participate.box2.title": "תפוצה מוסדית:",
"participate.box2.text": "הצגת הייעוד והעשייה של המרכז במרחב הציבורי.",
"participate.text3": "השלום נבנה באמצעות החלטות אחראיות, מנהיגות מחויבת ופעולה מתמשכת.",
"footer.title": "צור קשר",
"footer.subtitle": "בואו נתחבר סביב חזון וייעוד משותף",
"footer.text": "מרכז הממלכה לשלום וצדק מעמיד ערוצים ישירים לפניות מוסדיות, השתתפות במיזמים ופעילויות בינלאומיות.",
"footer.text2": "דוא\"ל: info@centrodelreinodepazyjusticia.com<br /> רשתות חברתיות: עדכונים שוטפים על עשייה, פעילויות והזדמנויות להשתתפות.",
"footer.text2": "רשתות חברתיות: עדכונים שוטפים על עשייה, פעילויות והזדמנויות להשתתפות.",
"footer.email": "דוא\"`ל:",
"footer.form.name": "שם מלא",
"footer.form.mesagge": "כתיבת הודעה",
"footer.form.button": "שליחה",
"footer.reserved": "כל הזכויות שמורות 2026 © Centro del Reino de Paz y Justicia"
}

View File

@ -1,6 +1,6 @@
{
"nav.logo_line1": "Centro del Reino",
"nav.logo_line2": "de Paz y Justicia",
"nav.logo_line1": "Sant Wayòm nan",
"nav.logo_line2": "pou Lapè ak Jistis",
"nav.about": "Osijè nou",
"nav.news": "Nouvèl",
"nav.programs": "Pwogram",
@ -10,10 +10,10 @@
"hero.name": "Doktè. José Benjamín Pérez Matos",
"hero.title": "Lidè fondatè",
"hero.body": "“Rèv lavi mwen se wè vizyon pwofèt yo akonpli: yon mond ki gen jistis ak lapè pou byen Izrayèl e pou tout limanite”",
"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",
"carousel.text1": "Lapè",
"carousel.text2": "Jistis",
"info.title": "Bati mond pwofèt yo te reve a: jistis ak lapè pou Izrayèl e pou tout limanite",
"info.register": "Anrejistre m",
"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": [
@ -60,11 +60,11 @@
"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.copy1": "Sant Wayòm pou Lapè ak Jistis ( CRPJ) se yon òganizasyon entènasyonal Ki dedye pou fòmasyon dyalòg estratejik ak aksyon piblik, ki vize pou ankouraje jistis ak lapè an akò ak vale etènèl pwofèt yo te pwoklame, avèk yon angajman klè e pèmanan anvè Izrayèl e plas santral li nan lista e desten mond lan",
"info.copy_column1": "Sant Wayòm pou Lapè ak Jistis (CPRJ) devlope inisyativ edikasyonèl, espas pou refleksyon pwofon, ak aksyon konkrè nan esfè piblik la, li entegre prensip espirityèl, responsablite enstitisyonèl, ak lidèchip etik. Travay li kadre nan domèn diplomasi piblik , yo konprann li kòm yon zouti lejitim pou enfliyanse nan konvèsasyon mondyal la, li ranfòse lyen nan mitan nasyon yo, epi li defann valè fondamantal yo fas a defi prezan yo e pou pi devan.",
"info.copy_column2": "Lapè pa fèt tankou yon slogan abstrè oswa yon ideyal nayif, men se rezilta desizyon ki fèm, lidèchip ki baze sou valè yo, ak yon angajman ki soutni nan objektif klè, ki rekonèt wòl iranplasab Izrayèl nan konstriksyon yon lòd ki jis e ki estab pou tout limanite.",
"info.endbox": {
"title": "Misión, Visión y Valores Institucionales.",
"title": "Misión,Vizyon ak Valè Enstitisyonèl yo",
"buttonLabel": "Kontinye li plis",
"hasButton": true,
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
@ -77,24 +77,24 @@
"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"
"text": "Jistis"
},
{
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
"text": "Paz"
"text": "Lapè"
}
],
"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",
"identity.initTitle": "Idantite enstitisyonèl",
"identity.title": "Sant Wayòm nan pou Lapè ak Jistis",
"identity.body": "<p>Sant Wayòm pou Lapè ak Jistis se yon òganizasyon entènasyonal ki konpoze de plizyè milye volontè ki nan plizyè peyi, k ap aji yon fason kowòdone anba lidèchip ak gidans Dr. José Benjamín Pérez Matos, ki se sèl reprezantan Sant Wayòm pou Lapè ak Jistis (CRPJ).</p><p>Sant lan gen yon prezans aktif nan diferan kontinan, li reyini moun, lidè, kominote ak enstitisyon ki pataje yon vizyon komen: pote valè Wayòm nan nan esfè piblik la epi fè fas, avèk responsablite ak konviksyon, defi yo mond lan ap fè fas jounen jodi a.</p><p>Sant Wayòm Lapè ak Jistis (CRPJ) fèt ak yon misyon klè: bati pon ant lafwa ak aksyon nan esfè piblik la, entegre refleksyon espirityèl, fòmasyon entelektyèl ak angajman pratik, ak objektif pou prepare chemen pou yon nouvèl epòk, ki make pa yon lòd ki pi jis, yon vrè lapè ak yon pi bon mond, an akò ak vizyon pwofetik la.</p><p>Vizyon li estratejik, entènasyonal e li oryante sou lavni, li konsyan de konfli emèjan yo, tansyon kiltirèl yo, defi jeopolitik yo ak nesesite pou lidèchip solid yo ki kapab aji klèman nan moman transfòmasyon mondyal.</p>",
"authority.title": "<strong>Otorite yo</strong> | Sant Wayòm nan pou Lapè ak Jistis",
"authority.body": "Doktè José Benjamín Pérez Matos se fondatè epi Li se sèl reprezantan Sant Wayòm Lapè ak Jistis . Lidèchip li konbine vizyon espirityèl, devlopman entelektyèl, aksyon piblik, ak pwojeksyon entènasyonal.",
"title1.title": "Doktè José Benjamín Pérez Matos | Pwojèktwa",
"grid.cards": [
{
"type": "text",
"icon": "ph:arrow-circle-down-thin",
"text": "Dirección de La Gran Carpa Catedral. Puerto Rico",
"text": "Adrès Gran Tant Katedral la. Pòtoriko",
"bgColor": "#EBE5D0",
"textColor": "#003421"
},
@ -105,7 +105,7 @@
{
"type": "text",
"icon": "ph:arrow-circle-right-thin",
"text": "Participación activa en escenarios internacionales.",
"text": "Patisipasyon aktif nan anviwònman entènasyonal yo.",
"textColor": "#003421",
"bgColor": "#BEA48D"
},
@ -120,7 +120,7 @@
{
"type": "text",
"icon": "ph:arrow-circle-up-thin",
"text": "Enseñanza bíblica aplicada al análisis del mundo contemporáneo.",
"text": "Ansèyman biblik ki aplike nan analiz mond kontanporen an.",
"textColor": "#EBE5D0",
"bgColor": "#003421"
},
@ -131,61 +131,62 @@
{
"type": "text",
"icon": "ph:arrow-circle-left-thin",
"text": "Compromiso público en la defensa de Israel, la justicia y la paz.",
"text": "Angajman piblik pou defans Izrayèl, jistis ak lapè.",
"textColor": "#003421",
"bgColor": "#EBE5D0"
}
],
"color1.title": "Misn",
"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.",
"color1.title": "Misyon",
"color1.text": "fòme lidè yo, ankouraje inisyativ edikasyonèl epi ankouraje aksyon piblik yo ki vize jistis ak lapè, apati yon fondasyon etik ak espirityèl solid, avèk yon angajman klè pou Izrayèl epi avèk responsablite pou kontribye nan byennèt ak estabilite limanite an jeneral.",
"color2.title": "Vizyon",
"color2.text": "Konsolide tèt li kòm yon aktè entènasyonal ki gen referans nan fòmasyon lidèchip, diplomasi piblik ak pwojeksyon enstitisyonèl, ki rekonèt pa koyerans li, klète valè li yo ak kontribisyon konkrè li pou bati yon mond ki aliyen ak vizyon pwofetik la ak jistis e lapè .",
"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.",
"values.justice.title": "Jistis",
"values.justice.text": "Angajman aktif ak yon lòd jis, ki baze sou prensip moral yo, respè pou diyite moun e defans valè pèmanan yo.",
"values.integrity.title": "Entegrite",
"values.integrity.text": "Koerans ant panse, pawòl ak aksyon; transparans enstitisyonèl ak responsablite nan esfè piblik la.",
"values.service.title": "Sèvis",
"values.service.text": "Vokasyon pou akonpayman ak aksyon ki baze vè objektif ki klè e ki enpòtan.",
"values.excellence.title": "Ekselans",
"values.excellence.text": "Rigè entelektyèl, pwofesyonalis ak amelyorasyon konstan nan tout domèn travay yo.",
"values.dialogue.title": "Dyalòg Estratejik",
"values.dialogue.text": "Ouvèti nan echanj kilti yo, nasyon yo ak kwayans yo, san abandone konviksyon yo ni prensip fondamantal yo.",
"projection.title": "Diplomasi Piblik ak Pwojeksyon Entènasyonal",
"projection.text": "<p>Sant Wayòm pou Lapè ak Jistis pouswiv yon politik aktif nan diplomasi piblik, ki aji nan konstriksyon konsyan de lyen etik, kiltirèl ak estratejik nan mitan pèp yo, enstitisyon yo ak lidèchip mondyal yo.</p><p><strong>Atravè reyinyon, v , Sant Wayòm pou Lapè ak Jistis (CRPJ) ankouraje:</p><p><ul><li>Dyalòg entèrelijye ak entèkiltirèl ki baze sou valè solid yo.</li><li>Defann jistis ak lapè nan kontèks entènasyonal yo.</li><li>Koneksyon avèk lidè politik yo, akademik e sosyal yo.</li><li>Yon sipò klè e pèmanan pou pèp jwif la ak Eta Izrayèl la, nou rekonèt santralite istorik , espirityèl e jeopolitik li.</li></ul></p><p>Pwojeksyon entènasyonal sa a pozisyone Sant Wayòm pou Lapè ak Jistis (CRPJ) kòm yon aktè enpòtan nan deba mondyal sou lavni mond lan, estabilite entènasyonal la ak validite valè pwofetik yo.</p>",
"projection.card1": "Koneksyon avèk lidè politik yo, akademik e sosyal yo.",
"projection.card2": "Yon sipò klè e pèmanan pou pèp jwif la ak Eta Izrayèl la.",
"formation.title": "Pwogram yo ak Zòn Aksyon",
"formation.subtitle": "Pwogram yo ak Zòn Aksyon",
"formation.text": "Sant Wayòm pou Lapè ak Jistis (CRPJ) devlope kou, seminè ak pwogram fòmasyon pou lidè yo, pwofesyonèl yo, reprezantan enstitisyonèl yo ak aktè ki gen responsablite piblik.",
"formation.area.title": "Zòn fòmasyon",
"formation.area.text": "<li>Lidèchip etik ak estratejik.</li> <li>Medyasyon ak rezolisyon ki responsab pou konfli yo.</li> <li>Lafwa, valè yo ak aksyon nan esfè piblik la.</li> <li>Analiz pou sèn entènasyonal yo ak defi kontanporen yo.</li> <li>Fondasyon pou bati yon lapè solid e k ap dire, ki santre sou Izrayèl.</li>",
"formation.consulting.title": "Oryantasyon ak Konsiltasyon",
"formation.consulting.text": "Sipò estratejik pou òganizasyon ak enstitisyon k ap chache ankadre e etabli inisyativ ki gen enpak, ki aliyen ak valè klè yo, objektif transvèsal yo ak yon vizyon alontèm.",
"formation.action.title": "Pwojè ki gen Aksyon",
"formation.action.text": "Devlopman inisyativ espesifik nan diferan teritwa, ki oryante nan fòmasyon, prevansyon konfli ak ranfòsman lidèchip lokal yo ak yon vizyon entènasyonal.",
"news.title": "Nouvèl",
"news.text": "Sitiyasyon enstitisyonèl aktyèl ak pwojeksyon entènasyonal",
"news.text2": "Seksyon sa a rasanble prensipal aktivite yo, rekonesans yo ak aksyon yo ki nan Sant Wayòm pou Lapè ak Jistis ansanm ak fondatè li a.",
"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": "Correo electrónico:<br> <strong>developer@centrodelreinodepazyjusticia.com</strong><br /> Redes sociales: actualizaciones permanentes sobre actividades y convocatorias.",
"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"
"news.buttonLable": "Voir plus de nouvelles",
"news.seemore": "Voir Plus",
"news.all": "Tozut",
"news.allYears": "Tout ane yo",
"participate.title": "Patisipe/ kolabore",
"participate.text": "Rantre vle di pran yon angajman ak yon objektif",
"participate.text2": "Travay Sant Wayòm pou Lapè ak Jistis ranfòse gras ak patisipasyon moun ak enstitisyon yo ki annakò ak valè e objektif jeneral li yo.",
"participate.box1.title": "Volontè:",
"participate.box1.text": "kolaborasyon nan pwojè fòmasyon yo, enstitisyonèl yo oswa entènasyonal yo.",
"participate.box2.title": "Difizyon enstitisyonèl:",
"participate.box2.text": "anplifikasyon misyon an ak aksyon yo nan Sant Wayòm pou Lapè ak Jistis (CRPJ) nan espas piblik yo.",
"participate.text3": "Lapè bati atravè desizyon responsab yo, lidèchip angaje, ak aksyon ki soutni.",
"footer.title": "Kontakte",
"footer.subtitle": "Ann konekte ak vizyon e objektif",
"footer.text": "Sant Wayòm pou Lapè ak Jistis la mete chanèl dirèk pou kesyon enstitisyonèl yo, patisipasyon nan pwogram ak aktivite entènasyonal yo.",
"footer": "Imèl:",
"footer.text2": "Rezo sosyal yo: mizajou konstan sou aktivite yo e sou anons yo",
"footer.form.name": "Non e Siyati",
"footer.form.mesagge": "Tape mesaj ou",
"footer.form.button": "Voye",
"footer.reserved": "©2026. Tout dwa yo rezève. Sant Wayòm pou Lapè ak Jistis"
}

View File

@ -7,14 +7,11 @@
"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",
@ -30,7 +27,7 @@
"textColor": "text-[#003421]",
"sizeText": "text-xl",
"hasButton": true,
"url":"#projection",
"url": "#projection",
"hasIcon": true,
"hasInput": false
},
@ -72,33 +69,28 @@
"hasButton": true,
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
"hasIcon": true,
"url":"#mision",
"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"
"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>O Centro do Reino de Paz e Justiça é uma organização internacional formada por milhares de voluntários distribuídos em inúmeros países, que atuam de maneira coordenada sob a liderança e a orientação do Dr. José Benjamín Pérez Matos, único referencial do Centro do Reino de Paz e Justiça (CRPJ).</p><p>O Centro conta com presença ativa em diferentes continentes, 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: construir pontes entre a fé e a ação no âmbito público, 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 Dr. José Benjamín Pérez Matos é o fundador e único referencial do Centro do Reino de Paz e Justiça. 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" : [
"grid.cards": [
{
"type": "text",
"icon": "ph:arrow-circle-down-thin",
@ -144,35 +136,25 @@
"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>O Centro do Reino de Paz e Justiça 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>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 apoio claro e permanente ao povo judeu e ao Estado de Israel, 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 ator relevante no debate global sobre o futuro do mundo, 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 Centro do Reino de Paz e Justiça (CRPJ) desenvolve cursos, seminários e programas de formação dirigidos a líderes, profissionais, referências institucionais e atores com responsabilidade pública.",
@ -182,7 +164,6 @@
"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.",
@ -191,7 +172,6 @@
"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 Centro do Reino de Paz e Justiça se fortalece por meio da participação de pessoas e instituições alinhadas com seus valores e objetivos gerais. Formas de participar:",
@ -200,11 +180,11 @@
"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 Centro do Reino de Paz e Justiça dispõe de canais diretos para consultas institucionais, participação em programas e atividades internacionais.",
"footer.text2": "e-mail:<br> <strong>developer@centrodelreinodepazyjusticia.com</strong><br /> Redes sociais: atualizações permanentes sobre atividades e convocações.",
"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",

View File

@ -7,14 +7,11 @@
"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 zubuzima bwanjye ni ukubona isohozwa ryiyerekwa ryabahanuzi: isi irimo ubutabera namahoro ku bwinyungu ya Isirayeli nibiremwabantubose.”",
"carousel.text1": "Amahoro",
"carousel.text2": "Ubutabera",
"info.title": "Kubaka isi abahanuzi barose: isi irimo ubutabera namahoro ku Isirayeli nabantu bose",
"info.register": "Kwiyandikisha",
"info.modal.title": "Ifishi iracyategurwa",
@ -30,7 +27,7 @@
"textColor": "text-[#003421]",
"sizeText": "text-xl",
"hasButton": true,
"url":"#projection",
"url": "#projection",
"hasIcon": true,
"hasInput": false
},
@ -72,33 +69,28 @@
"hasButton": true,
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
"hasIcon": true,
"url":"#mision",
"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"
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
"text": "Amahoro"
}
],
"identity.initTitle": "Indangamuntu yIkigo",
"identity.title": "Ihuriro ryUbwami bwAmahoro nUbutabera",
"identity.body": "<p>Ihuriro ryUbwami bwAmahoro nUbutabera ni umuryango mpuzamahanga ugizwe nibihumbi byabakorerabushake bari mu bihugu bitandukanye, bakora mu buryo buhuza ibikorwa, bayobowe kandi bagengwa nubuyobozi 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 yisi, gihuza abantu, abayobozi, imiryango ninzego zisangiye icyerekezo kimwe: kugeza indangagaciro zUbwami mu buzima bwa rusange no guhangana, mu buryo bufite inshingano nicyizere, nimbogamizi isi ihura na zo muri iki gihe.</p><p>Ihuriro ryUbwami bwAmahoro nUbutabera cyashinzwe gifite inshingano isobanutse: kubaka ibiraro bihuriza hamwe ukwizera nibikorwa mu rwego rwa rusange, gihuza gutekereza ko mumwuka, uburezi bwubwenge nubwitange bufatika, kigamije gutegura inzira igana mu gihe gishya, kirangwa numuco wubutabera bwisumbuyeho, amahoro nyakuri nisi nziza kurushaho, hakurikijwe iyerekwa ryabahanuzi.”</p><p>Icyerekezo cyayo gishingiye ku ngamba, ku rwego mpuzamahanga kandi kigana ku hazaza, kizi neza amakimbirane agaragara, amakimbirane yumuco, imbogamizi za geopolitiki no gukenerwa kubuyobozi bukomeye bushobora gukora neza mu gihe cyimpinduka zisi yose.</p>",
"authority.title": "<strong>Abayobozi</strong> | Ihuriro ryUbwami bwAmahoro nUbutabera",
"authority.body": "Dr. José Benjamín Pérez Matos ni we washinze kandi akaba ari we wenyine uhagarariye Ihuriro ryUbwami bwAmahoro nUbutabera. Ubuyobozi bwe buhuza icyerekezo cyo mu mwuka, uburezi bwubwenge, ibikorwa bya rusange nicyerekezo mpuzamahanga",
"title1.title": "Dr. José Benjamín Pérez Matos | Inzira",
"grid.cards" : [
"grid.cards": [
{
"type": "text",
"icon": "ph:arrow-circle-down-thin",
@ -144,35 +136,25 @@
"bgColor": "#EBE5D0"
}
],
"color1.title": "Inshingano",
"color1.text": "Gutoza abayobozi, guteza imbere ibikorwa byuburezi no gushyigikira ibikorwa bya rusange bigamije ubutabera namahoro, bishingiye ku ndangagaciro zubunyangamugayo nimbaraga zo mu mwuka zihamye, hamwe niyemezwa ryeruye ku Isirayeli no ku nshingano yo kugira uruhare mu mibereho myiza nituze ryikiremwamuntucyose muri rusange",
"color2.title": "Icyerekezo",
"color2.text": "Kuba ikigo kizwi ku rwego mpuzamahanga nkicyitegererezo mu gutegura ubuyobozi, diplomasi rusange niterambere ryinzego, gishimirwa ku bwukwiyubaha kwacyo, ubusobanuro bwindangagaciro zacyo nuruhare rufatika kigira mu kubaka isi ijyanye niyerekwa ryabahanuzi ryubutabera namahoro",
"title2.title": "Indangagaciro zIkigo",
"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 zimirimo.”",
"values.dialogue.title": "Ikiganiro gishingiye ku ngamba",
"values.dialogue.text": "Gufungukira kungurana ibitekerezo hagati yimuco, ibihugu nimyemerere, ariko hatitawe ku kureka imyemerere cyangwa amahame yibanze",
"projection.title": "Diplomasi rusange nikorwa ryicyerekezo mpuzamahanga",
"projection.text": "<p>“Ihuriro ryUbwami bwAmahoro nUbutabera giteza imbere diplomasi rusange igamije kubaka ku bushishozi amasano meza ashingiye ku ndangagaciro, umuco ningamba hagati yabaturage, inzego nabayobozi ku isi.”</p><p><strong>Binyuze mu nama, ingendo mpuzamahanga, amahuriro nimikoranire yinzegoCentro del Reino de Paz y Justicia (CRPJ) gikomeza imbere</strong></p><p><ul><li>Ikiganiro hagati yamadini atandukanye nimico itandukanye gishingiye ku ndangagaciro zihamye.</li><li>Kurengera ubutabera namahoro mu rwego mpuzamahanga.</li><li>Guhuza imikoranire nabayobozi ba politiki, abashakashatsi no mu mibereho rusange</li><li>Gushyigikira kugaragara kandi guhoraho ubwoko bwAbayahudi ndetse na Leta ya Isiraheli, hamenyekanishwa akamaro kabo mu mateka, mu byumwuka 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 rwabagize uruhare rukomeye mu biganiro mpuzamahanga ku hazaza hisi, ituze mpuzamahanga niyubahirizwa ryindangagaciro zubuhanuzi.</p>",
"projection.card1": "Guhuza imikoranire nabayobozi ba politiki, abashakashatsi no mu mibereho rusange",
"projection.card2": "Gushyigikira mu buryo bugaragara kandi buhoraho Abayahudi ndetse na Leta ya Isiraheli.",
"formation.title": "Amahugurwa nUbushobozi",
"formation.subtitle": "Gahunda nInzego zIbikorwa",
"formation.text": "El <strong>Centro del Reino de Paz y Justicia (CRPJ) gitegura amasomo, amahugurwa na gahunda zo kongerera ubumenyi zigenewe abayobozi, abahanga mu byumwuga, abahagarariye inzego zitandukanye nabafite inshingano mu ruhame.",
@ -182,7 +164,6 @@
"formation.consulting.text": "Guherekeza mu buryo bwingenzi imiryango ninzego zishaka gutegura no gushyira mu bikorwa gahunda zigira ingaruka nziza, zishingiye ku ndangagaciro zihamye, intego zihuza inzego zitandukanye nicyerekezo kirambye kireba kure.",
"formation.action.title": "Imishinga yibikorwa",
"formation.action.text": "Gushyira mu bikorwa imishinga ifatika mu turere dutandukanye, igamije amahugurwa, gukumira amakimbirane no kongerera imbaraga ubuyobozi bwaho hantu bufite icyerekezo mpuzamahanga.",
"news.title": "Amakuru",
"news.text": "Amakuru yinzego naho umuryango ugeze ku rwego mpuzamahanga",
"news.text2": "Iki gice gikusanya ibikorwa byingenzi, ishimwe nibikorwa bya buri munsi bya Centro del Reino de Paz y Justicianibywawushinze",
@ -191,7 +172,6 @@
"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 rwabantu ninzego zihuza nindangagaciro nintego zacyo rusange. Uburyo bwo kugira uruhare:",
@ -200,11 +180,11 @@
"participate.box2.title": "Gukwirakwiza amakuru yikigo:",
"participate.box2.text": "Gukwiza no gutangaza ubutumwa nibikorwa bya Centro del Reino de Paz y Justicia (CRPJ) mu ruhame.",
"participate.text3": "Amahoro yubakwa binyuze mu byemezo bifite inshingano, ubuyobozi bufite ubushake ninyito ihamye, ndetse nibikorwa bikomeza kandi birambye.",
"footer.title": "Twandikire",
"footer.subtitle": "Reka duhuze imbaraga dufite icyerekezo nintego imwe.",
"footer.text": "El <strong>Centro del Reino de Paz y Justicia</strong> inzira zitaziguye zo gutanga ibibazo byinzego, kugira uruhare muri gahunda nibikorwa mpuzamahanga.",
"footer.text2": "Imeyili:<br> <strong>developer@centrodelreinodepazyjusticia.com</strong><br /> Imbuga nkoranyambaga: amakuru ahoraho ku bikorwa namatangazo yinama cyangwa ibikorwa bitandukanye.",
"footer.text2": "Imbuga nkoranyambaga: amakuru ahoraho ku bikorwa namatangazo yinama cyangwa ibikorwa bitandukanye.",
"footer.email": "Imeyili: ",
"footer.form.name": "Amazina yombi",
"footer.form.mesagge": "Andika ubutumwa bwawe",
"footer.form.button": "Ohereza",