Compare commits

...

10 Commits

87 changed files with 884 additions and 475 deletions

View File

@ -12,7 +12,7 @@ import react from "@astrojs/react";
// https://astro.build/config
export default defineConfig({
vite: {
plugins: [tailwindcss()],
plugins: [tailwindcss()],
},
site: "https://centrodelreinodepazyjusticia.com/",
//base: '/mockup/',
@ -20,12 +20,12 @@ export default defineConfig({
integrations: [markdoc(), icon(), vue(), react()],
i18n: {
locales: ["es", "en", "fr", "he", "uk", "pt", "ru", "rw"],
locales: ["es", "en", "fr", "he", "uk", "pt", "ru", "rw", "kr"],
defaultLocale: "es",
},
image: {
domains: ['placehold.co','ik.imagekit.io','picsum.photos'],
domains: ['placehold.co', 'ik.imagekit.io', 'picsum.photos'],
service: imageService(),
},
output: "server",

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

@ -19,19 +19,38 @@ const isHebrew = Astro.currentLocale === "he";
<h4
class="text-lg text-center font-bold uppercase"
set:html={tl("footer.title")}
/>
>
</h4>
<h2
class="text-2xl lg:text-5xl text-center font-bold font-secondary my-8"
set:html={tl("footer.subtitle")}
/>
>
</h2>
<div class="px-12 lg:px-4 lg:w-2/5 mx-auto">
<p class="text-lg font-light mb-10" set:html={tl("footer.text")} />
<p class="text-lg font-light mb-10" set:html={tl("footer.text")}></p>
<p class="text-lg font-regular">
{tl("footer.email")}
<!--email_off-->
<a
class="font-light hover:text-[#D4C7A1] transition-all hover:underline hover:underline-offset-4 hidden lg:block"
href="mailto:joseperez@centrodelreinodepazyjusticia.com"
>joseperez@centrodelreinodepazyjusticia.com</a
>
<!--/email_off-->
</p>
<!--email_off-->
<a
class="font-light hover:text-[#D4C7A1] transition-all hover:underline hover:underline-offset-4 block lg:hidden overflow-hidden overflow-ellipsis"
href="mailto:joseperez@centrodelreinodepazyjusticia.com"
>joseperez@centrodelreinodepazyjusticia.com</a
>
<!--/email_off-->
<p
class="text-lg font-light mb-10 break-words"
set:html={tl("footer.text2")}
/>
>
</p>
<FormContact client:load locale={Astro.currentLocale} />
</div>

View File

@ -98,25 +98,31 @@ const handleSubmit = async (e) => {
<ul class="flex flex-row gap-2">
<li class="border-r pr-2">
<a href="https://x.com/CRPazYJusticia" target="_blank">
<Icon icon="ph:x-logo-thin" class="text-3xl" />
<Icon icon="ph:x-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
</a>
</li>
<li class="border-r pr-2">
<a href="https://www.instagram.com/centrodelreinodepazyjusticia/" target="_blank">
<Icon icon="ph:instagram-logo-thin" class="text-3xl" />
<Icon icon="ph:instagram-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
</a>
</li>
<li class="border-r pr-2">
<a href="https://www.facebook.com/Centrodelreinodepazyjusticia" target="_blank">
<Icon icon="ph:facebook-logo-thin" class="text-3xl" />
<Icon icon="ph:facebook-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
</a>
</li>
<li class="border-r pr-2">
<a href="https://www.youtube.com/@CentrodelReinodePazyJusticia" target="_blank">
<Icon icon="ph:youtube-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
</a>
</li>
<li>
<a href="https://www.youtube.com/@CentrodelReinodePazyJusticia" target="_blank">
<Icon icon="ph:youtube-logo-thin" class="text-3xl" />
<a href="https://t.me/CentroRPJ" target="_blank">
<Icon icon="ph:telegram-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
</a>
</li>
</ul>

View File

@ -6,7 +6,7 @@ date: 2025-09-05
place: The basement
city: Jacareí
country: BR
tags: [Brasil]
tags: [Brazil]
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2025-09-04-19.53.04.jpg?updatedAt=1770780193361
gallery: [
{

View File

@ -7,7 +7,7 @@ place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_12-42-30.jpg'
tags: [Israel, Irán]
tags: [Israel, Iran]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_12-42-30.jpg',

View File

@ -35,13 +35,13 @@ The analysis acknowledges the historical upheavals of the Jewish people—includ
For Dr. José Benjamín Pérez Matos, Israels current positioning is no coincidence. Its political, technological, and military influence, combined with its constant presence on the global agenda, make it an unavoidable actor in any analysis of regional and global stability.
Beyond the ongoing tensions in the Middle East, his argument suggests that Israel functions as a strategic node where geopolitical interests, ideological disputes, and power dynamics on a global scale.
Beyond the ongoing tensions in the Middle East, his argument suggests that Israel functions as a **strategic node** where geopolitical interests, ideological disputes, and power dynamics on a global scale.
In this context, the city of Jerusalem takes on unique significance, not only as a political and religious center, but also as a constant point of reference for the international community.
## Strategic Expectations and Future Projections
One of the most significant aspects of this argument is the idea that Israel is currently undergoing a period of “strategic expectation,” in which, despite ongoing conflicts, a greater change is taking shape.
One of the most significant aspects of this argument is the idea that Israel is currently undergoing a period of **“strategic expectation,”** in which, despite ongoing conflicts, a greater change is taking shape.
On this point, Dr. José Benjamín Pérez Matos affirmed: **“Israel is at a moment of strategic expectation. Everything points to a decisive sign that will mark the beginning of a new stage in its history,”** introducing the notion of a process that is still unfinished, but underway.

View File

@ -19,13 +19,13 @@ gallery: [
*Jerusalem, Israel December 17, 2024*
During a recent visit to Israel, Dr. José Benjamín Pérez Matos visited Yesod HaTorah Yeshiva, in Jerusalem, where he was welcomed in a setting of scholarly tradition dedicated to the teaching of the Torah and the Talmud. The meeting, held in a relevant academic-religious environment, was underscored by a message centered on the value of spiritual knowledge and its global reach.
During a recent visit to Israel, Dr. José Benjamín Pérez Matos visited Yesod HaTorah Yeshiva, in Jerusalem, where he was welcomed in a setting of scholarly tradition dedicated to the teaching of the Torah and the Talmud. The meeting, held in a relevant academic-religious environment, was underscored by a message centered on the value of spiritual knowledge and its global reach.
Upon speaking, Dr. José Benjamín Pérez Matos emphasized the importance of an education grounded in sacred texts to build a society with a solid foundation, conveying a vision about the future of Israel in the global landscape:
Upon speaking, Dr. José Benjamín Pérez Matos emphasized the importance of an education grounded in sacred texts to build a society with a solid foundation, conveying a vision about the future of Israel in the global landscape:
“Its a blessing and an honor to be here in the yeshivah of my friend Moshe, and to see the different classrooms where the Torah and Talmud are studied. Continue holding onto the Torah, to the Word of God. And may the Eternal One continue giving you plenty of wisdom and understanding. And may you soon see the establishment of that long awaited Kingdom: the Kingdom of peace, of happiness and prosperity, that Israel longs for. Which is very near.
And Israel will be the capital of the entire world. And you are part of that Kingdom; it will be established soon.”
> **“Its a blessing and an honor to be here in the yeshivah of my friend Moshe, and to see the different classrooms where the Torah and Talmud are studied. Continue holding onto the Torah, to the Word of God. And may the Eternal One continue giving you plenty of wisdom and understanding. And may you soon see the establishment of that long awaited Kingdom: the Kingdom of peace, of happiness and prosperity, that Israel longs for. Which is very near.**
>
> **And Israel will be the capital of the entire world. And you are part of that Kingdom; it will be established soon.”**
The visit unfolded amid growing interest in the role of religious institutions in shaping visions for the future, particularly in terms of the relationship between tradition, leadership, and global transformation.

View File

@ -8,7 +8,7 @@ country: 'US'
state: 'Illinois'
city: 'Chicago'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-37.jpg'
tags: [Estados Unidos, Venezuela]
tags: [United States, Venezuela]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-37.jpg',

View File

@ -6,7 +6,7 @@ slug: 2025-05-07-india-and-pakistan-on-the-brink-of-major-escalation-global-aler
city: 'Bogotá'
state: 'Distrito Capital'
country: 'CO'
tags: ['Colombia', 'India', 'Pakistán']
tags: ['Colombia', 'India', 'Pakistan']
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-08_21-54-54.jpg
gallery: [
{
@ -17,7 +17,7 @@ gallery: [
## India and Pakistan on the Brink of Major Escalation: Global Alert Over a Conflict Reshaping the Geopolitical Balance
*Bogotá, Colombia 7 de mayo de 2025*
*Bogotá, Colombia May 7, 2025*
***From Bogotá, an assessment warns of an international scenario of upheaval marked by military tensions, institutional fragility, and signs of a systemic crisis.***

View File

@ -8,7 +8,7 @@ country: 'MX'
city: 'Monterrey'
state: 'Nuevo León'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-13.jpg'
tags: [México, Israel]
tags: [Mexico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-13.jpg',

View File

@ -7,7 +7,7 @@ place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel, Irán]
tags: [Puerto Rico, Israel, Iran]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',

View File

@ -27,7 +27,7 @@ During his message on Sunday, June 15, 2025, the leader noted that much of the c
Dr. José Benjamín Pérez Matos referred specifically to new generations and certain opinion outlets which, in his analysis, address the conflict without considering its background and underlying causes.
Along those lines, he maintained that many of these sectors **“dont know the history or the promises”** that support Israels existence and sovereignty, highlighting a gap between global perceptions and what he considers to be the conflicts structural reality.
Along those lines, he maintained that many of these sectors **“dont know the history or the promises” that support Israels** existence and sovereignty, highlighting a gap between global perceptions and what he considers to be the conflicts structural reality.
His presentation introduces a recurring topic in his remarks: the need to reinterpret the Middle East situation from a perspective that combines history, politics, and long-term projections.

View File

@ -19,7 +19,7 @@ gallery: [
*Cayey, Puerto Rico June 18, 2025*
In a statement with strong geopolitical impact, Dr. José Benjamín Pérez Matos issued a declaration on June 18, 2025, in which he reaffirms his absolute support for Israels right to self-defense, validating both its military actions and its neutralization strategy against external threats.
In a statement with strong geopolitical impact, Dr. José Benjamín Pérez Matos issued a declaration on June 18, 2025, in which he reaffirms his **absolute support for Israels right to self-defense**, validating both its military actions and its neutralization strategy against external threats.
The message introduces a conceptual framework that combines historical reference, strategic interpretation, and political positioning, within a context marked by escalating tensions in the Middle East.

View File

@ -29,7 +29,7 @@ gallery: [
---
*Bnei Brak, Israel July 3, 2025*
In one of the most impactful stops during his visit to Israel, Dr. José Benjamín Pérez Matos toured the ruins of a special education center recently hit by a missile. The visit, marked by tension and direct evidence, led to a **strong international statement on the nature of the attacks and the need to present the reality of the conflict without distortion.**
In one of the most impactful stops during his visit to Israel, Dr. José Benjamín Pérez Matos toured the ruins of a special education center recently hit by a missile. The visit, marked by tension and direct evidence, led to a **strong international statement on the nature of the attacks and the need to present the reality of the conflict without distortion.**
Joined by local officials and representatives of the affected institution, the visiting leader surveyed the site of the strike, which occurred about 10 days earlier. The blast not only damaged the schools infrastructure but also impacted nearby homes and other buildings.
@ -39,13 +39,13 @@ During the visit, Dr. José Benjamín Pérez Matos focused on the nature of the
In this context, he emphasized: **“Here a school for special needs children was struck. Thats their target,”** drawing a clear distinction from Israels operational doctrine, adding: **“Israel warns in advance so that people can leave before attacking terrorist targets, but their attackers dont do the same; they strike wherever it lands, and their targets are students.”**
His statements introduce a central axis of his message: the distinction between military and civilian targets and the denunciation of practices that, in his view, violate basic principles of international humanitarian law.
His statements introduce a central axis of his message: the distinction between military and civilian targets and the denunciation of practices that, in his view, violate basic principles of international humanitarian law.
## Criticizing the International Narrative and Disinformation
Another key point in his remarks was his criticism of how the conflict is perceived in the West. Dr. José Benjamín Pérez Matos argued that there is an information gap that leads to incomplete or biased interpretations of events in the region.
Another key point in his remarks was his criticism of how the conflict is perceived in the West. Dr. José Benjamín Pérez Matos argued that there is an **information gap** that leads to incomplete or biased interpretations of events in the region.
In that regard, he stated: **“You dont see that information in the West. You always see the other side, saying that Israel is the bad guy, but you don't see the real side of the coin,”** criticizing the way that certain content is spread worldwide.
In that regard, he stated: **“You dont see that information in the West. You always see the other side, saying that Israel is the bad guy, but you don't see the real side of the coin,”** criticizing the way that certain content is spread worldwide.
He further expanded on what he considers to be the root of the problem, saying: **“In what country in the world are there laws that say that another nation should be wiped off the face of the Earth? Thats not something you see in democratic governments, but over there, from childhood, they are taught to exterminate Israel,”** in direct criticism of ideological frameworks that, in his view, feed the conflict.

View File

@ -5,9 +5,9 @@ date: 2025-07-06
slug: 2025-07-06-strategic-alliance-in-jerusalem-panamas-ambassador-supports-dr-jose-benjamin-perez-matos-mission
place: ''
country: 'IL'
city: 'Jerusalén'
city: 'Jerusalem'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-720,cm-pad_resize,bg-blurred/photo_2025-08-06_18-57-55.webp'
tags: [Israel, Panamá]
tags: [Israel, Panama]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-720,cm-pad_resize,bg-blurred/photo_2025-08-06_18-57-55.webp',
@ -17,11 +17,11 @@ gallery: [
# Strategic Alliance in Jerusalem: Panamas Ambassador Supports Dr. José Benjamín Pérez Matos Mission
*Jerusalén, Israel July 6, 2025*
*Jerusalem, Israel July 6, 2025*
As part of his tour through the Middle East, Dr. José Benjamín Pérez Matos secured a new front of international support following a high-level meeting with Panamas Ambassador to Israel, in an engagement that strengthened his diplomatic position and broadened his network of support in the region.
The meeting took place in an atmosphere of shared understanding and political openness, where the Panamanian representative not only recognized the Puerto Rican leaders work but also described it as a “noble cause,” marking a moment of institutional recognition amid a complex regional context.
The meeting took place in an atmosphere of shared understanding and political openness, where the Panamanian representative not only recognized the Puerto Rican leaders work but also described it as a **“noble cause,”** marking a moment of institutional recognition amid a complex regional context.
## Fundamentals of Action: A Structured Vision for Israel and Global Peace

View File

@ -5,7 +5,7 @@ date: 2025-07-07
slug: 2025-07-07-meeting-in-jerusalem-rabbi-eliahu-birnbaum-highlights-the-spiritual-dimension-of-dr-jose-benjamin-perez-matos-mission-amid-war
place: ''
country: 'IL'
city: 'Jerusalén'
city: 'Jerusalem'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/2026-05-09 13.24.43.jpg'
tags: [Israel]
gallery: [
@ -17,7 +17,7 @@ gallery: [
# Meeting in Jerusalem: Rabbi Eliahu Birnbaum Highlights the Spiritual Dimension of Dr. José Benjamín Pérez Matos Mission Amid War
*Jerusalén, Israel July 7, 2025*
*Jerusalem, Israel July 7, 2025*
As part of his agenda in Israel, Dr. José Benjamín Pérez Matos took part in a highly symbolic meeting with the renowned Rabbi Eliahu Birnbaum, in a brief but conceptually rich meeting, which offered a spiritual assessment of the current geopolitical context.
@ -29,7 +29,7 @@ Rabbi Birnbaum, a leading figure in the study of the “Torat Chaim” (Living T
In this context, he stated: **“You dont come with a technical perspective, but with a spiritual and futuristic one,”** emphasizing that Dr. José Benjamín Pérez Matos presence in Israeli territory (following the conflict) is not in response to conventional logic, but to a broader interpretation of the historical moment.
According to the rabbi, just as the text describes one who lifts his gaze and contemplates Israel under the Spirit of God, the visit of the Puerto Rican leader fits within a vision that transcends traditional political or diplomatic understanding.
According to the rabbi, just as the text describes one who lifts his gaze and contemplates Israel under the Spirit of God, the visit of the Puerto Rican leader fits within a **vision that transcends traditional political or diplomatic understanding**.
## A New Stage in the Historical Narrative of Israel

View File

@ -14,12 +14,10 @@ gallery: [
tags: [Puerto Rico, Israel, Gaza]
---
## Dr. José Benjamín Pérez Matos Returns from Israel with an Urgent and Hopeful Message:
## Dr. José Benjamín Pérez Matos Returns from Israel with an Urgent and Hopeful Message: “The time to work for peace is now”
*Cayey, Puerto Rico July 9, 2025*
## “The time to work for peace is now”
On July 9, after an intense tour through Israeli territory amid an atmosphere of active conflict, **Dr. José Benjamín Pérez Matos** shared **publicly, from Cayey**, the powerful testimonies and experiences gathered during his recent trip. In an account that combined the harsh reality of war with a profound prophetic vision, Pérez emphasized the resilience of the Hebrew people and the urgency of working toward a definitive Kingdom of Peace.
## On the Front Lines: Visit to the Gaza Border
@ -38,10 +36,10 @@ Dr. José Benjamín Pérez Matos denounced what he called a “tragedy for manki
Despite missile alerts that forced the delegation to remain alert even during rest hours, Dr. José Benjamín Pérez Matos maintained an agenda that included meetings with diplomats. In a meeting with the Argentine ambassador to Israel, the Puerto Rican leader was asked about his personal purpose in the region.
“My dream is to establish the Throne and the Kingdom of David, the Kingdom of Peace in Jerusalem; that is what I am working for,” he stated firmly. For Pérez, the physical security offered by Israel —endorsed even by Argentine diplomats in the area— is a reflection of the spiritual security found by the “elect” in what he called the “heavenly Israel.”
**“My dream is to establish the Throne and the Kingdom of David, the Kingdom of Peace in Jerusalem; that is what I am working for”**, he stated firmly. For Pérez, the physical security offered by Israel —endorsed even by Argentine diplomats in the area— is a reflection of the spiritual security found by the “elect” in what he called the “heavenly Israel.”
## Strategic Coordination in Response to the Crisis
The leader detailed the logistical difficulties of entering the country, as flights were reserved primarily for Israeli citizens returning to serve or protect their families. However, he described how a “timely” opportunity arose in California, allowing them to fulfill an agenda that, though improvised due to the war, led to highlevel contacts that were not originally planned.
“There are no coincidences for God. We were received by people who were astonished to see us there in the midst of war,” concluded Dr. José Benjamín Pérez Matos, reaffirming that despite the struggles Israel still has ahead of it, the end of the journey is the establishment of a Kingdom of prosperity and happiness from Jerusalem for the entire world.
**“There are no coincidences for God. We were received by people who were astonished to see us there in the midst of war”**, concluded Dr. José Benjamín Pérez Matos, reaffirming that despite the struggles Israel still has ahead of it, the end of the journey is the establishment of a Kingdom of prosperity and happiness from Jerusalem for the entire world.

View File

@ -7,7 +7,7 @@ place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
country: 'PR'
city: 'Cayey'
tags: [Puerto Rico, Israel, Irán]
tags: [Puerto Rico, Israel, Iran]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
@ -17,7 +17,7 @@ gallery: [
# Gaza Under the Magnifying Glass: Media Manipulation and Judgment Warning for Nations that Oppose Israel
*Cayey, Puerto Rico August 17, 2025*
*Cayey, Puerto Rico September 17, 2025*
In a recent speech, Dr. José Benjamín Pérez Matos offered a critical and spiritual perspective on the conflict at the Gaza Strip, harshly questioning the role of the international press and reaffirming Israels right to self-defense following the escalation of attacks beginning on October 7, 2023.

View File

@ -11,7 +11,7 @@ gallery: [
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-41.jpg',
},
]
tags: [Puerto Rico, Israel, Irán]
tags: [Puerto Rico, Israel, Iran]
---
# Water Crisis In Iran: Israel Offers Conditional Cooperation Tied to a Strategic Shift in the Middle East

View File

@ -6,7 +6,7 @@ city: 'Monterrey'
state: 'Nuevo León'
date: 2025-09-27
slug: '2025-09-27-venezuela-in-the-spotlight-dr-jose-benjamin-perez-warns-of-possible-intervention-amid-global-realignment'
tags: [Israel, México, Francia, España]
tags: [Israel, Mexico, France, Spain]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-32.jpg'
gallery: [
{

View File

@ -29,7 +29,7 @@ Dr. José Benjamín Pérez Matos also challenged what he described as inconsiste
In his remarks, the Puerto Rican leader maintained that the current decisions of States are not isolated events, but are instead setting the stage for future consequences. As he put it: **“That dimension inspires them to do something, so that the judgment that was already determined may then be issued. Its not for no reason that they will receive judgment.”**
Referring specifically to Europe, Dr. José Benjamín Pérez Matos adopted a particularly critical tone, noting that certain statements and political stances could have a significant impact on the regions future. In that context, he said: “Spain… now that president is saying what hes saying about Israel: Spain has already secured its judgment! Spain will be destroyed! The same goes for England, France, Germany, that entire part of Europe.”
Referring specifically to Europe, Dr. José Benjamín Pérez Matos adopted a particularly critical tone, noting that certain statements and political stances could have a significant impact on the regions future. In that context, he said: **“Spain… now that president is saying what hes saying about Israel: Spain has already secured its judgment! Spain will be destroyed! The same goes for England, France, Germany, that entire part of Europe.”**
In his analysis, he warned of grave potential outcomes in which, according to his interpretation, current decisions could lead to large-scale conflicts that directly impact these nations.

View File

@ -7,7 +7,7 @@ place: ''
country: 'IL'
city: 'Jerusalém'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, 'Bolívia', 'Argentina']
tags: [Israel, 'Bolivia', 'Argentina']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
@ -17,7 +17,7 @@ gallery: [
***From Jerusalem, an analysis connects the changes in Argentina and Bolivia to a reshaping of diplomatic stances regarding Israel***
*Jerusalém, Israel - October 27, 2025*
*Jerusalem, Israel - October 27, 2025*
In an address delivered from one of the worlds foremost political and symbolic centers, Dr. José Benjamín Pérez Matos, president of the Kingdom of Peace and Justice Center, offered a comprehensive assessment of the recent political changes in South America, linking them to a broader process of international reordering and diplomatic realignment.

View File

@ -7,7 +7,7 @@ place: ''
country: 'PE'
city: 'Lima'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: ['Israel', 'Perú', 'Irán']
tags: ['Israel', 'Peru', 'Iran']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
@ -19,7 +19,7 @@ gallery: [
***From Lima, the analysis by the Kingdom of Peace and Justice Center argues that current diplomatic decisions will shape nations futures.***
*Lima, Perú November 17, 2025*
*Lima, Peru November 17, 2025*
Against a backdrop of growing international tensions and strategic realignments, the Kingdom of Peace and Justice Center has released an analysis examining the impact of states stance toward Israel as a central element of contemporary global politics.

View File

@ -7,7 +7,7 @@ place: ''
country: 'PE'
city: 'Lima'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-09.jpg'
tags: [Israel, 'Perú']
tags: [Israel, 'Peru']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-09.jpg',
@ -19,7 +19,7 @@ gallery: [
_**The leader of the Kingdom of Peace and Justice Center analyzed the role of electoral processes in the region and their impact on states international stance.**_
_Lima, Perú — November 17, 2025_
_Lima, Peru — November 17, 2025_
In an address delivered in San Juan de Miraflores, Dr. José Benjamín Pérez Matos presented a proposal centered on the strategic role of voting in Latin America, underscoring foreign policy as a deciding factor in the selection of public officials.

View File

@ -7,7 +7,7 @@ place: ''
country: 'PE'
city: 'Lima'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-37-03.jpg'
tags: [Israel, 'Perú']
tags: [Israel, 'Peru']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-37-03.jpg',
@ -22,7 +22,7 @@ gallery: [
***The leader of the Kingdom of Peace and Justice Center analyzed the global political landscape and argued for a strategic realignment among nations.***
*Lima, Perú — November 18, 2025*
*Lima, Peru — November 18, 2025*
In an address delivered in Shangrila, Puente Piedra, Dr. José Benjamín Pérez Matos presented an assessment of the evolving international political system, noting that the current model is undergoing a period of transformation and that current government decisions will directly impact their future position.

View File

@ -18,7 +18,7 @@ gallery: [
***From Puerto Rico, an address presents Jerusalem as the center of the world order and calls on countries to relocate their diplomatic missions.***
*Cayey, Puerto Rico 30 de noviembre de 2025.*
*Cayey, Puerto Rico November 30, 2025*
In a recent address projecting a profound transformation of the international system, a vision was presented that positions Jerusalem as the future axis of global governance, urging States to relocate their embassies to the city in the near term.
The proposal introduces a paradigm shift in foreign policy, suggesting that the centrality of Jerusalem will carry not only symbolic but also practical implications for the structure of international power.

View File

@ -14,7 +14,7 @@ gallery: [
]
---
*Cayey, Puerto Rico 28 de febrero de 2026*
*Cayey, Puerto Rico February 28, 2026*
***Analysis from Puerto Rico warns of coordinated attacks, regional retaliation, and the risk of a global military escalation***

View File

@ -15,7 +15,7 @@ gallery: [
# Remarks for International Womens Day, dedicated to the Women of the Israeli Defense Forces
*March 8, 2026*
*Cayey, Puerto Rico March 8, 2026*
This International Womens Day, I want to congratulate every woman who wears the uniform of the Israeli army.

View File

@ -17,7 +17,7 @@ tags: [Puerto Rico, Israel]
*Cayey, Puerto Rico April 18, 2025*
**Puerto Rico, April 18, 2025**.As part of an event held in Cayey, Dr. José Benjamín Pérez Matos delivered a message with strong humanitarian and geopolitical content, focusing on the current situation in the State of Israel and the urgent need to free the hostages who remain in captivity.
As part of an event held in Cayey, Dr. José Benjamín Pérez Matos delivered a message with strong humanitarian and geopolitical content, focusing on the current situation in the State of Israel and the urgent need to free the hostages who remain in captivity.
During his remarks, Dr. José Benjamín Pérez Matos called for prayers for the safety of Israel and its officials, emphasizing the need for protection and guidance in a highly complex situation:

View File

@ -23,11 +23,11 @@ En un contexto internacional marcado por tensiones crecientes en el Medio Orient
Desde Cayey, Puerto Rico, el Dr. José Benjamín Pérez Matos dirigió sus palabras tanto a los líderes como al pueblo hebreo, enfatizando la necesidad de actuar con sabiduría y responsabilidad en un escenario de alta complejidad:
“Que Dios bendiga a Israel, que Dios bendiga al pueblo hebreo, que tomen las decisiones correctas”.
**“Que Dios bendiga a Israel, que Dios bendiga al pueblo hebreo, que tomen las decisiones correctas”**.
El mensaje no solo transmitió apoyo, sino también una perspectiva de esperanza vinculada a acontecimientos futuros. En ese sentido, el Dr. José Benjamín Pérez Matos expresó su anhelo de que el pueblo de Israel pueda recibir con claridad y prontitud aquello que, según su visión, se aproxima:
“Que Dios les ponga en su corazón lo que pronto ellos van a recibir”.
**“Que Dios les ponga en su corazón lo que pronto ellos van a recibir”**.
Estas declaraciones se inscriben en una línea de acompañamiento constante, donde la fe y la dimensión espiritual se presentan como elementos centrales de cohesión y orientación. En este marco, la comunidad que sigue al Dr. José Benjamín Pérez Matos reafirma su respaldo a Israel, destacando el papel de la oración y la convicción como factores que trascienden fronteras.

View File

@ -10,7 +10,7 @@ thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_14-49-46.jpg'
tags: [Venezuela, Puerto Rico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_14-49-46.jpg',
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/',
},
]
---
@ -23,11 +23,11 @@ En el marco mundial donde predominan los conflictos sociopolíticos, el Dr. Jos
El mensaje, cargado de sentido de urgencia, planteó la necesidad de restaurar el orden y la estabilidad en regiones clave, destacando el impacto que estos procesos tienen sobre los derechos fundamentales y el bienestar de sus poblaciones:
“Que Dios bendiga a Israel, que Dios bendiga también a Venezuela, que son los países que actualmente están pasando por situaciones difíciles; y demás países también, porque de una forma u otra ya los reinos de este mundo pronto vendrán a ser los Reinos del Mesías”.
**“Que Dios bendiga a Israel, que Dios bendiga también a Venezuela, que son los países que actualmente están pasando por situaciones difíciles; y demás países también, porque de una forma u otra ya los reinos de este mundo pronto vendrán a ser los Reinos del Mesías”**.
Uno de los ejes centrales del mensaje estuvo puesto en la situación de Venezuela, donde el Dr. José Benjamín Pérez Matos hizo referencia al sufrimiento prolongado de la población y a la necesidad de un cambio estructural que permita recuperar la libertad y la dignidad:
“El clamor de los hijos de Dios es que puedan estar libres de esa condición que los ha estado oprimiendo por tantos años”.
**“El clamor de los hijos de Dios es que puedan estar libres de esa condición que los ha estado oprimiendo por tantos años”**.
El pronunciamiento también incorporó una perspectiva más amplia sobre los conflictos en el Medio Oriente, interpretando los acontecimientos actuales como parte de un proceso de transformación de mayor alcance. En este marco, las “situaciones difíciles” que atraviesan distintas naciones fueron presentadas como señales de una transición hacia un nuevo orden.

View File

@ -32,7 +32,7 @@ En cuanto a Venezuela, el Dr. José Benjamín Pérez Matos se refirió a las lim
Finalmente, el mensaje proyectó una visión de transformación global, planteando la necesidad de un nuevo orden que garantice estabilidad y justicia en las naciones. En este marco, el Dr. José Benjamín Pérez Matos delineó una perspectiva de gobernanza futura basada en la alineación de los países con un modelo de autoridad superior:
**«Los que quieran entrar al glorioso Reino Milenial tendrán que alinearse con ese gobierno».**
**«Los que quieran entrar al glorioso Reino Mesiánico tendrán que alinearse con ese gobierno».**
El pronunciamiento concluye con una idea central: la libertad efectiva de los pueblos no depende de declaraciones formales, sino de decisiones firmes y acciones sostenidas. En este sentido, el mensaje posiciona la fe, el liderazgo y la determinación política como elementos clave para enfrentar los desafíos actuales y avanzar hacia un escenario de mayor estabilidad global.

View File

@ -37,7 +37,7 @@ El pronunciamiento incluyó, además, una advertencia directa en relación con l
En su análisis, también trazó paralelismos entre la situación actual y episodios históricos de degradación moral, haciendo referencia a prácticas denunciadas en el contexto del conflicto:
**«Ese grupo es como un grupo del tiempo de Sodoma... Hay una noticia donde dice: *“En Gaza llevan a sus hijos a ver cómo judíos muertos son exhibidos y profanados”»**. [^2]
**«Ese grupo es como un grupo del tiempo de Sodoma... Hay una noticia donde dice: “_En Gaza llevan a sus hijos a ver cómo judíos muertos son exhibidos y profanados._”»**. [^2]
El mensaje articula una lectura que combina la dimensión humanitaria con una interpretación más amplia del escenario internacional, en el que los acontecimientos recientes son considerados parte de un proceso de alta complejidad política, social y espiritual.

View File

@ -52,11 +52,10 @@ Este planteo refuerza su línea discursiva de promover un alineamiento estratég
El cierre del análisis se orienta hacia América Latina, donde el Dr. José Benjamín Pérez Matos expresó contundentemente una visión de transformación política y social para la región, con especial énfasis en países que atraviesan crisis institucionales.
En tal sentido, afirmó: **“¡Deseamos que Venezuela pronto sea libertada! ¡Que Dios use a esa nación! Que se entregue —de una vez por todas— ese que está haciendo de papel de presidente, ¡que no es el presidente!… ¡Y sea libre Nicaragua también! ¡Y sea libre Cuba también! ¡Queremos que toda la América Latina entre al glorioso Reino Milenial!”**, proyectando un escenario de cambio estructural en el continente.
En tal sentido, afirmó: **“¡Deseamos que Venezuela pronto sea libertada! ¡Que Dios use a esa nación! Que se entregue —de una vez por todas— ese que está haciendo de papel de presidente, ¡que no es el presidente!… ¡Y sea libre Nicaragua también! ¡Y sea libre Cuba también! ¡Queremos que toda la América Latina entre al glorioso Reino Mesiánico!”**, proyectando un escenario de cambio estructural en el continente.
## Una narrativa en expansión
Con este nuevo pronunciamiento, el Dr. José Benjamín Pérez Matos profundiza una línea de análisis que articula **geopolítica, posicionamiento internacional y proyección milenial estratégica**, con foco en el rol de Israel como eje central del sistema global.
En un contexto de creciente polarización internacional, su mensaje apunta a influir tanto en la opinión pública como en los decisores políticos, planteando que el posicionamiento frente a Israel será un factor determinante para el rumbo de las naciones en los próximos años.

View File

@ -38,7 +38,7 @@ Llegado el momento central del acto, el Dr. José Benjamín Pérez Matos tomó l
En su intervención, expresó: **“reitero mi deseo y propósito: de que la luz verdadera, que alumbra el alma y el entendimiento de todo ser humano, impacten a cada colombiano para que siga edificándose a sí mismo, sea de bendición para su familia; y así poder construir una mejor sociedad, un mejor país cada día”**.
Asimismo, añadió un mensaje de bendición y reflexión dirigido al país: **“que dios bendiga a la bella colombia; y que dios dirija a todo el pueblo a elegir el mejor líder, para que pueda llevar a la bella colombia a recibir las bendiciones espirituales y materiales también”**.
Asimismo, añadió un mensaje de bendición y reflexión dirigido al país: **“que Dios bendiga a la bella colombia; y que dios dirija a todo el pueblo a elegir el mejor líder, para que pueda llevar a la bella colombia a recibir las bendiciones espirituales y materiales también”**.
La ceremonia, que tuvo una duración aproximada de 50 minutos, fue seguida tanto por los asistentes presentes como por miles de espectadores a través de las plataformas de transmisión del Congreso y de La Gran Carpa Catedral, consolidando su alcance más allá del recinto físico.

View File

@ -22,7 +22,7 @@ gallery: [
***El líder del Centro del Reino de Paz y Justicia analizó el escenario político global y planteó la necesidad de una reconfiguración estratégica de los Estados.***
_Lima, Perú — 18 de noviembre de 2025_
*Lima, Perú — 18 de noviembre de 2025*
LIMA, PERÚ — En una disertación desarrollada en Shangrila, Puente Piedra, el Dr. José Benjamín Pérez Matos presentó un análisis sobre la evolución del sistema político internacional, señalando que el modelo vigente atraviesa una etapa de transformación y que las decisiones actuales de los Gobiernos tendrán impacto directo en su posicionamiento futuro.
@ -32,7 +32,7 @@ El Dr. José Benjamín Pérez Matos dirigió un mensaje directo a la clase polí
Asimismo, destacó la importancia de que los Gobiernos adapten sus políticas en función de esta visión, señalando: **«Si fueran inteligentes, irían a las Escrituras y dirían: “Yo quiero estar a favor de Israel desde ya”. Todos los países tienen que ponerse las pilas si quieren estar en ese Reino Mesiánico; tienen que empezar a hacer sus preparativos los Gobiernos, las Cámaras, las legislaciones y el pueblo»**, vinculando la toma de decisiones políticas con la proyección internacional de los Estados.
En su mensaje, dirigido específicamente a Perú, el líder puertorriqueño enfatizó la necesidad de preparación ante los cambios globales, indicando: **«¡Perú, prepárate para entrar a ese glorioso Reino Milenial!»**, este planteo se extendió al conjunto de América Latina, donde propuso una mayor convergencia en materia de política exterior.
En su mensaje, dirigido específicamente a Perú, el líder puertorriqueño enfatizó la necesidad de preparación ante los cambios globales, indicando: **«¡Perú, prepárate para entrar a ese glorioso Reino Mesiánico!»**, este planteo se extendió al conjunto de América Latina, donde propuso una mayor convergencia en materia de política exterior.
En ese marco, expresó: **«Que la América Latina se vea, todo ese mapa completo: con una sola bandera. No nos avergonzamos de Israel. Con orgullo decimos: ¡Israel es nuestro hermano!»**, proyectando una visión de integración regional basada en un posicionamiento común.

View File

@ -25,7 +25,7 @@ En una intervención centrada en el escenario político regional, el Dr. José B
Durante su exposición, el presidente del Centro del Reino de Paz y Justicia planteó que el resultado electoral chileno no constituye un fenómeno aislado, sino que se inscribe dentro de una tendencia más amplia que atraviesa a distintos países de la región. En esa línea, sostuvo que se observa un proceso de cambio en la orientación política, caracterizado por el avance de corrientes de derecha.
En ese marco, expresó: **«Ya se va pintando ahora de azul... Lo que vemos es la mano de Dios obrando para que Latinoamérica completa entre a ese glorioso Reino Milenial»**, vinculando este giro político con un proceso de transformación más amplio en el continente.
En ese marco, expresó: **«Ya se va pintando ahora de azul... Lo que vemos es la mano de Dios obrando para que Latinoamérica completa entre a ese glorioso Reino Mesiánico»**, vinculando este giro político con un proceso de transformación más amplio en el continente.
El análisis también incluyó una proyección regional, en la que se identifican países que, según su visión, aún no han adoptado esta orientación política. En ese sentido, se mencionó que naciones como Brasil, Venezuela, Colombia, Nicaragua, Haití y Cuba continúan fuera de esta tendencia, lo que —según el planteo— condiciona su posicionamiento dentro del nuevo escenario regional.

View File

@ -35,8 +35,8 @@ El Dr. José Benjamín Pérez Matos subrayó que muchas de las posturas adversas
Asimismo, exhortó a un análisis más riguroso de los acontecimientos internacionales, señalando que numerosos actores que se pronuncian contra Israel **“ni saben el programa que Dios estuvo llevando a cabo con ese pueblo”. En su visión, Israel no solo constituye un actor geopolítico clave, sino también un pilar esencial para la estabilidad del Medio Oriente y la continuidad misma de la civilización. En palabras del propio orador: “Si Israel no existiera... que es el único país democrático allí, la raza humana no existiría”.**
### Consecuencias según las Sagradas Escrituras<br>
### Consecuencias según las Sagradas Escrituras<br>
La conferencia culminó con una reflexión de carácter escatológico, en la que el Dr. José Benjamín Pérez Matos abordó el destino de las naciones a la luz del cumplimiento de los textos bíblicos. En este sentido, sostuvo que todo país que se oponga a Israel enfrentará consecuencias de gravedad, conforme a lo dispuesto en las Sagradas Escrituras, lo que derivaría en su exclusión del denominado “glorioso Reino Milenial”.
La conferencia culminó con una reflexión de carácter escatológico, en la que el Dr. José Benjamín Pérez Matos abordó el destino de las naciones a la luz del cumplimiento de los textos bíblicos. En este sentido, sostuvo que todo país que se oponga a Israel enfrentará consecuencias de gravedad, conforme a lo dispuesto en las Sagradas Escrituras, lo que derivaría en su exclusión del denominado “glorioso Reino Mesiánico”.
De acuerdo con su exposición, este desenlace no es arbitrario, sino una consecuencia directa e inevitable de las decisiones políticas adoptadas por los gobernantes en relación con el pueblo de Israel, en el marco del juicio divino descrito en la Biblia.

View File

@ -34,7 +34,7 @@ El Dr. José Benjamín Pérez Matos se refirió a esta situación en los siguien
A partir de este hecho, el conferencista profundizó en las implicancias que, desde su perspectiva, trascienden lo meramente diplomático:
**«Y vean ustedes que quizás él no sabe —o no está consciente de lo que él ha hablado allí (el primer ministro Benjamín Netanyahu)—, pero se ha hablado ya la Palabra: que en Israel, Jerusalén será la capital del planeta Tierra completo. Por consiguiente, toda nación que quede excluida de ese Reino mesiánico no entrará a ese glorioso Reino Milenial».**
**«Y vean ustedes que quizás él no sabe —o no está consciente de lo que él ha hablado allí (el primer ministro Benjamín Netanyahu)—, pero se ha hablado ya la Palabra: que en Israel, Jerusalén será la capital del planeta Tierra completo. Por consiguiente, toda nación que quede excluida de ese Reino mesiánico no entrará a ese glorioso Reino Mesiánico».**
### Francia en la misma trayectoria

View File

@ -19,7 +19,7 @@ gallery: [
*Cayey, Puerto Rico 15 de abril de 2026*
El Dr. José Benjamín Pérez Matos habló, en las instalaciones de La Gran Carpa Catedral en Puerto Rico, sobre cómo las decisiones nacionales frente a Israel determinarán el acceso al Reino Milenial.
El Dr. José Benjamín Pérez Matos habló, en las instalaciones de La Gran Carpa Catedral en Puerto Rico, sobre cómo las decisiones nacionales frente a Israel determinarán el acceso al Reino Mesiánico.
### Liderazgo bajo inspiración divina
@ -29,10 +29,10 @@ En su intervención destacó que el curso de acción actual de Israel no es una
Señaló un creciente aislamiento de Israel en la arena internacional, atribuyéndolo a una falta de comprensión espiritual por parte de los gobernantes: «Cada vez más países se colocan en contra de Israel. Y si usted se fija, los Gobiernos que se van colocando en contra de Israel, la mayoría de ellos no conocen las Escrituras, no conocen el Programa Divino, no saben quién es Israel; porque si supieran, no se pondrían en contra del pueblo primogénito de Dios».
### El Reino Milenial como filtro para las naciones
### El Reino Mesiánico como filtro para las naciones
La situación geopolítica actual se define como un proceso de selección. En ese sentido, advirtió que el destino de cada país depende de su postura actual: «En esta Tierra, en este tiempo, se está identificando qué nación va a entrar a ese glorioso Reino Milenial, y qué nación no va a entrar. Por consiguiente, cada nación tiene que colocarse en la posición que luego va a desembocar: o entra al Reino Milenial o no entra».
La situación geopolítica actual se define como un proceso de selección. En ese sentido, advirtió que el destino de cada país depende de su postura actual: «En esta Tierra, en este tiempo, se está identificando qué nación va a entrar a ese glorioso Reino Mesiánico, y qué nación no va a entrar. Por consiguiente, cada nación tiene que colocarse en la posición que luego va a desembocar: o entra al Reino Mesiánico o no entra».
### Una advertencia para los líderes globales
Concluyó con un llamado a la rendición de cuentas, señalando que las decisiones de hoy tendrán consecuencias eternas para los pueblos y sus dirigentes: «La decisión es ahora. Y se da la advertencia, y se está dando la advertencia, de que el se coloque en contra de Israel no va a entrar al Reino Milenial. De seguro las personas de esa nación, luego del Milenio, cuando resuciten, le pedirán cuenta a los líderes porque no tuvieron la oportunidad de pasar por ese Reino Milenial glorioso».
Concluyó con un llamado a la rendición de cuentas, señalando que las decisiones de hoy tendrán consecuencias eternas para los pueblos y sus dirigentes: «La decisión es ahora. Y se da la advertencia, y se está dando la advertencia, de que el se coloque en contra de Israel no va a entrar al Reino Mesiánico. De seguro las personas de esa nación, luego del Milenio, cuando resuciten, le pedirán cuenta a los líderes porque no tuvieron la oportunidad de pasar por ese Reino Mesiánico glorioso».

View File

@ -16,7 +16,7 @@ gallery: [
---
## El líder internacional valoró el modelo de gobernanza salvadoreño y su proyección regional durante una actividad realizada en el Palacio de los Deportes
# Dr. José Benjamín Pérez Matos destaca el liderazgo de Nayib Bukele en un acto en San Salvador
*San Salvador, El Salvador 26 de abril de 2026*

View File

@ -7,7 +7,7 @@ place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, Porto Rico]
tags: [Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
@ -23,11 +23,11 @@ Em um contexto internacional marcado por tensões crescentes no Oriente Médio,
De Cayey, Porto Rico, o Dr. José Benjamín Pérez Matos dirigiu suas palavras tanto aos líderes quanto ao povo hebreu, enfatizando a necessidade de agir com sabedoria e responsabilidade em um cenário de alta complexidade:
“Que Deus abençoe Israel, que Deus abençoe o povo hebreu, que tomem as decisões corretas”.
**«Que Deus abençoe Israel, que Deus abençoe o povo hebreu, que tomem as decisões corretas»**.
A mensagem não apenas transmitiu apoio, mas também uma perspectiva de esperança vinculada a acontecimentos futuros. Nesse sentido, o Dr. José Benjamín Pérez Matos expressou seu anseio de que o povo de Israel possa receber com clareza e prontidão aquilo que, segundo sua visão, se aproxima:
“Que Deus coloque em seu coração o que em breve eles vão receber”.
**«Que Deus coloque em seu coração o que em breve eles vão receber»**.
Essas declarações se inserem em uma linha de acompanhamento constante, na qual a fé e a dimensão espiritual se apresentam como elementos centrais de coesão e orientação. Nesse contexto, a comunidade que segue o Dr. José Benjamín Pérez Matos reafirma seu apoio a Israel, destacando o papel da oração e da convicção como fatores que transcendem fronteiras.

View File

@ -19,7 +19,7 @@ gallery: [
*Cayey, Porto Rico 8 de outubro de 2024*
De Porto Rico, o líder do Centro do Reino de Paz e Justiça analisou o cenário militar e geopolítico após a escalada de ataques contra o Estado de Israel.
_De Porto Rico, o líder do Centro do Reino de Paz e Justiça analisou o cenário militar e geopolítico após a escalada de ataques contra o Estado de Israel._
No contexto da intensificação do conflito no Oriente Médio, o Dr. José Benjamín Pérez Matos apresentou uma análise sobre a situação de segurança enfrentada pelo Estado de Israel, colocando o foco na multiplicidade de frentes ativas e nas implicações estratégicas para as nações envolvidas.
@ -31,6 +31,6 @@ A análise do líder porto-riquenho incluiu uma advertência dirigida aos Govern
Na mesma linha, enfatizou que a continuidade das ações militares contra Israel poderia levar a cenários de extrema gravidade. A esse respeito, expressou: **«Podem seguir fazendo o que estão fazendo; como as nações: bombardeando, causando dano a Israel. O que os espera é terrível!…»**.
No encerramento de sua intervenção, incluiu uma mensagem de respaldo ao povo israelense, na qual reafirmou sua posição diante do conflito e da situação internacional. Nesse contexto, afirmou: «Oramos por Israel, que Deus os guarde, os cuide», destacando a importância da proteção em um cenário de tensão crescente.
No encerramento de sua intervenção, incluiu uma mensagem de respaldo ao povo israelense, na qual reafirmou sua posição diante do conflito e da situação internacional. Nesse contexto, afirmou: **«Oramos por Israel, que Deus os guarde, os cuide»**, destacando a importância da proteção em um cenário de tensão crescente.
O posicionamento geral do Dr. José Benjamín Pérez Matos configura uma advertência sobre o impacto das decisões políticas e militares no cenário internacional, sublinhando que o posicionamento dos Estados diante de Israel se apresenta como um fator determinante na evolução do conflito.

View File

@ -7,7 +7,7 @@ place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_18-21-03.jpg'
tags: [Israel, 'Puerto Rico']
tags: [Israel, 'Porto Rico']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_18-21-03.jpg',
@ -17,7 +17,7 @@ gallery: [
# Retorno de Israel com resultados históricos: uma missão marcada por simbolismo e conquistas diplomáticas
*Cayey, Puerto Rico 19 de dezembro de 2024*
*Cayey, Porto Rico 19 de dezembro de 2024*
Após uma intensa viagem internacional que incluiu África e Oriente Médio, o Dr. José Benjamín Pérez Matos retornou a Porto Rico destacando o caráter histórico dos resultados obtidos durante sua recente visita a Israel. A viagem, condicionada pelo contexto de conflito na região, foi marcada tanto por desafios logísticos quanto por uma série de acontecimentos que, segundo o relato, adquiriram alto valor simbólico e diplomático.

View File

@ -7,7 +7,7 @@ place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
tags: [Porto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
@ -23,13 +23,13 @@ Em um pronunciamento marcado pela solenidade e firmeza, o Dr. José Benjamín P
A mensagem enfatizou a dor das famílias afetadas, destacando a dimensão humana do conflito e o impacto desses acontecimentos naqueles que têm acompanhado de perto a situação:
**«Agora vejam o que aconteceu nestes dias; pelo qual nos unimos à dor dessa família… em vez de entregar pessoas vivas, vejam, entregaram agora quatro mortos, dos que estão ali, dos reféns; e dois eram crianças»**
**«Agora vejam o que aconteceu nestes dias; pelo qual nos unimos à dor dessa família… em vez de entregar pessoas vivas, vejam, entregaram agora quatro mortos, dos que estão ali, dos reféns; e dois eram crianças».**
O Dr. José Benjamín Pérez Matos também se referiu ao sofrimento particular do pai dos menores, destacando a gravidade emocional decorrente da incerteza e da desinformação prévia sobre o destino de seus filhos.
Da mesma forma, ressaltou o caráter profundamente simbólico e doloroso deste momento, enfatizando uma das notícias divulgadas pela mídia, à qual deu leitura:
**«“É a primeira devolução de corpos e marca um momento extremamente emotivo e sombrio para Israel (e para todos nós que amamos Israel)”»**[^1]
**_«“É a primeira devolução de corpos e marca um momento extremamente emotivo e sombrio para Israel (e para todos nós que amamos Israel)”»_**[^1]
O pronunciamento incluiu, além disso, uma advertência direta em relação à responsabilidade de atores internacionais frente a os fatos ocorridos. Em um tom enfático, o Dr. José Benjamín Pérez Matos expressou:
@ -37,7 +37,7 @@ O pronunciamento incluiu, além disso, uma advertência direta em relação à r
Em sua análise, também traçou paralelos entre a situação atual e episódios históricos de degradação moral, fazendo referência a práticas denunciadas no contexto do conflito:
**«Esse grupo é como um grupo do tempo de Sodoma… Há uma notícia que diz: “Em Gaza levam seus filhos para ver como judeus mortos, são exibidos e profanados”»**. [^2]
**«Esse grupo é como um grupo do tempo de Sodoma… Há uma notícia que diz: “_Em Gaza levam seus filhos para ver como judeus mortos, são exibidos e profanados._”»**[^2]
A mensagem articula uma leitura que combina a dimensão humanitária com uma interpretação mais ampla do cenário internacional, no qual os acontecimentos recentes são considerados parte de um processo de alta complexidade política, social e espiritual.

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

@ -7,7 +7,7 @@ place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
tags: [Porto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
@ -41,7 +41,7 @@ Sua posição sugere que a defesa do território israelense não é apenas uma n
## Advertência geopolítica e leitura regional
A mensagem também incluiu uma advertência dirigida a atores regionais, em especial ao regime do Irã, ao qual o Dr. José Benjamín Pérez Matos associou antecedentes históricos de confronto.
A mensagem também incluiu uma advertência dirigida a atores regionais, em especial ao regime do Irã, ao qual o Dr. José Benjamín Pérez Matos associou antecedentes históricos de confronto.
Segundo sua análise, o atual cenário geopolítico reproduz dinâmicas de antagonismo já registradas na história, o que reforça — em sua visão — a necessidade de uma postura firme por parte de Israel.
@ -49,10 +49,10 @@ Ao afirmar que o “édito de defesa” é irreversível, o líder reafirma um c
## Compromisso pessoal e alinhamento total
No encerramento de sua intervenção, o Dr. José Benjamín Pérez Matos ratificou seu compromisso direto com a causa israelense, posicionando-se como um ator ativo no cenário internacional.
No encerramento de sua intervenção, o Dr. José Benjamín Pérez Matos ratificou seu compromisso direto com a causa israelense, posicionando-se como um actor ativo no cenário internacional.
Em suas palavras: **“O Deus Eterno está contigo, e eu estou contigo!”**, sintetizando uma postura de alinhamento total, tanto no plano político quanto no simbólico.
Sua declaração consolida uma linha discursiva que vem desenvolvendo em suas intervenções recentes: **defesa irrestrita de Israel, legitimação de sua capacidade de resposta e construção de uma narrativa de “tolerância zero” diante de ameaças externas.**
Em um contexto global de alta volatilidade, esse tipo de pronunciamento reforça o posicionamento do Dr. José Benjamín Pérez Matos como uma voz ativa na articulação de apoio internacional a Israel, com impacto tanto na opinião pública quanto nos debates estratégicos sobre segurança e estabilidade regional.
Em um contexto global de alta volatilidade, esse tipo de pronunciamento reforça o posicionamento do Dr. José Benjamín Pérez Matos como uma voz ativa na articulação de apoio internacional a Israel, com impacto tanto na opinião pública quanto nos debates estratégicos sobre segurança e estabilidade regional.

View File

@ -20,7 +20,7 @@ gallery: [
*Jerusalém, Israel 3 de julho de 2025*
**JERUSALÉM**  Na etapa final de sua missão em Israel, o Dr. José Benjamín Pérez Matos protagonizou um encontro de alto nível com o prefeito de Jerusalém, Moshe Lion, em uma reunião que reforça sua projeção internacional e consolida canais diretos com uma das administrações municipais mais relevantes do cenário global.
Na etapa final de sua missão em Israel, o Dr. José Benjamín Pérez Matos protagonizou um encontro de alto nível com o prefeito de Jerusalém, Moshe Lion, em uma reunião que reforça sua projeção internacional e consolida canais diretos com uma das administrações municipais mais relevantes do cenário global.
A reunião ocorreu na segunda-feira, 7 de julho, na sede do Governo Municipal, na emblemática torre da Prefeitura, em um contexto marcado por rigorosas medidas de segurança e alta sensibilidade política. O encontro se insere em uma agenda que, após as mudanças provocadas pelo conflito, evoluiu para instâncias diplomáticas de maior impacto estratégico.

View File

@ -22,7 +22,7 @@ Nesse local, foi recebido por Lucas Torralbo, diretor de Comércio e Serviços d
Minutos mais tarde, com a chegada do prefeito Celso Florêncio, foi realizado um encontro no gabinete oficial. Nesse âmbito institucional, o Dr. José Benjamín Pérez Matos destacou a responsabilidade daqueles que exercem funções públicas por eleição popular e ressaltou a importância da guiança espiritual no exercício da liderança.
Nesse contexto, expressou: “Deus os guie buscando sabedoria do alto, como a teve Daniel naquele tempo do rei Nabucodonosor. Para mim é uma bênção poder estar diante de um dos líderes que neste lugar está ministrando esta posição; pelo qual, peço a Deus a Sua bênção sobre você, para que o dirija em tudo. E obrigado pelo acolhimento e por estas boas-vindas que me deram. Já sou jacareiense, assim, já é como se fosse a minha casa”.
Nesse contexto, expressou: **“Deus os guie buscando sabedoria do alto, como a teve Daniel naquele tempo do rei Nabucodonosor. Para mim é uma bênção poder estar diante de um dos líderes que neste lugar está ministrando esta posição; pelo qual, peço a Deus a Sua bênção sobre você, para que o dirija em tudo. E obrigado pelo acolhimento e por estas boas-vindas que me deram. Já sou jacareiense, assim, já é como se fosse a minha casa”**.
Por sua vez, o prefeito Celso Florêncio deu as boas-vindas ao visitante e à sua comitiva, destacando o papel da igreja como agente de transformação social. Em suas palavras, afirmou: “Para nós é um prazer tê-los aqui conosco. Conheço esse grande trabalho dentro da nossa cidade… então você já é cidadão de Jacareí. As portas estarão sempre abertas para você e para todos os que o acompanham”.
@ -38,12 +38,12 @@ Durante o ato, a vereadora ofereceu uma mensagem de boas-vindas na qual incluiu
A cerimônia incluiu ainda a entrega de presentes representativos da cidade, entre eles um com a inscrição “Eu amo Jacareí” e peças artesanais com imagens locais, como forma de transmitir simbolicamente a identidade cultural do município.
Em resposta, o Dr. José Benjamín Pérez Matos expressou seu agradecimento e destacou o significado do reconhecimento recebido. Em suas palavras, afirmou: “Agradeço a hospitalidade, as boas-vindas e por me terem concedido o título de cidadão jacareiense. E como honra o levarei comigo, e vocês vão experimentar que um jacareiense esteja percorrendo o mundo, exaltando também Jacareí… Ou seja, serei também um embaixador de Jacareí no mundo”.
Em resposta, o Dr. José Benjamín Pérez Matos expressou seu agradecimento e destacou o significado do reconhecimento recebido. Em suas palavras, afirmou: **“Agradeço a hospitalidade, as boas-vindas e por me terem concedido o título de cidadão jacareiense. E como honra o levarei comigo, e vocês vão experimentar que um jacareiense esteja percorrendo o mundo, exaltando também Jacareí… Ou seja, serei também um embaixador de Jacareí no mundo”.**
O ato foi concluído com uma oração na qual se invocou a bênção sobre a cidade, suas autoridades e seus habitantes, com uma referência ao capítulo 6 do livro de Números, pedindo discernimento e direção para aqueles que têm a responsabilidade de legislar.
## Um reconhecimento que transcende o simbólico
Ao finalizar a jornada, e em declarações à imprensa local, o Dr. José Benjamín Pérez Matos refletiu sobre o significado de receber a cidadania honorária de uma cidade estrangeira. Nesse sentido, expressou: “Ser cidadão de uma cidade onde não se nasceu é uma alegria, porque há um lugar a mais onde se pode familiarizar com a cultura e tudo o que corresponde a essa cidade. Sinto-me muito honrado por ser um jacareiense”.
Ao finalizar a jornada, e em declarações à imprensa local, o Dr. José Benjamín Pérez Matos refletiu sobre o significado de receber a cidadania honorária de uma cidade estrangeira. Nesse sentido, expressou: **“Ser cidadão de uma cidade onde não se nasceu é uma alegria, porque há um lugar a mais onde se pode familiarizar com a cultura e tudo o que corresponde a essa cidade. Sinto-me muito honrado por ser um jacareiense”.**
A visita deixou como resultado não apenas um reconhecimento institucional, mas também o fortalecimento de vínculos entre o líder espiritual e a comunidade local. Com uma trajetória de mais de duas décadas de presença no Brasil, o Dr. José Benjamín Pérez Matos inclui Jacareí como um novo ponto de referência em seu percorrido internacional, consolidando uma relação que, segundo suas próprias palavras, transcende o protocolar para se tornar um vínculo de pertencimento.

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

@ -36,7 +36,7 @@ O Capitólio Nacional, habitualmente cenário de debates políticos e decisões
Chegado o momento central do ato, o Dr. José Benjamín Pérez Matos tomou a palavra para expressar seu agradecimento. Com um tom pausado e reflexivo, dirigiu uma mensagem que ecoou no recinto, voltada ao fortalecimento espiritual e social da nação.
Em sua intervenção, expressou: “Reitero meu desejo e propósito: que a luz verdadeira, que ilumina a alma e o entendimento de todo ser humano, impacte cada colombiano, para que siga edificando a si mesmo, seja de bênção para sua família; e assim poder construir uma sociedade melhor, um país melhor a cada dia”. Da mesma forma, acrescentou uma mensagem de bênção e reflexão dirigida ao país: “Que Deus abençoe a bela Colômbia; e que Deus dirija todo o povo a escolher o melhor líder, para que possa levar a bela Colômbia a receber também as bênçãos espirituais e materiais”.
Em sua intervenção, expressou: **“Reitero meu desejo e propósito: que a luz verdadeira, que ilumina a alma e o entendimento de todo ser humano, impacte cada colombiano, para que siga edificando a si mesmo, seja de bênção para sua família; e assim poder construir uma sociedade melhor, um país melhor a cada dia”**. Da mesma forma, acrescentou uma mensagem de bênção e reflexão dirigida ao país: **“Que Deus abençoe a bela Colômbia; e que Deus dirija todo o povo a escolher o melhor líder, para que possa levar a bela Colômbia a receber também as bênçãos espirituais e materiais”**.
A cerimônia, que teve uma duração aproximada de 50 minutos, foi acompanhada tanto pelos presentes quanto por milhares de espectadores através das plataformas de transmissão do Congresso e da Grande Carpa (“Tenda”) Catedral, consolidando seu alcance para além do recinto físico.

View File

@ -23,7 +23,7 @@ gallery: [
## “Sentença global”: o Dr. José Benjamín Pérez Matos adverte sobre consequências para potências ocidentais por sua postura diante de Israel
*Palmira, Valle do Cauca, Colômbia 19 de setembro de 2025*
*Palmira, Vale do Cauca, Colômbia 19 de setembro de 2025*
Em uma declaração que combina análise geopolítica e projeção de alcance global, o Dr. José Benjamín Pérez Matos afirmou que as recentes decisões das principais potências ocidentais em relação a Israel estariam desencadeando um processo de consequências irreversíveis.
@ -39,7 +39,7 @@ O enunciado sustenta que o distanciamento político desses países em relação
## Um cenário de confrontação em desenvolvimento
O Dr. Pérez Matos advertiu que o atual contexto global caminha para uma fase de maior tensão, na qual o posicionamento das nações desempenhará um papel determinante.
O Dr. José Benjamín Pérez Matos advertiu que o atual contexto global caminha para uma fase de maior tensão, na qual o posicionamento das nações desempenhará um papel determinante.
Nesse sentido, afirmou: **“Por tudo o que (muitas nações) vão estar contra Israel: aí já estão colocando a corda no próprio pescoço. Tudo está se alinhando para esse enfrentamento, também, grande que virá”**, projetando um cenário de confronto em maior escala.

View File

@ -53,4 +53,4 @@ A análise apresentada na Cidade do México deixa claro que a América Latina n
A combinação de conflito interno, pressão internacional e disputa entre potências posiciona o país como um cenário-chave dentro da nova ordem em formação.
Em síntese, a advertência do Dr. José Benjamín Pérez Matos não se limita a um possível evento isolado, mas aponta para **uma dinâmica mais ampla: a consolidação** de uma nova ordem mundial em construção, na qual a América Latina —e especialmente a Venezuela— pode desempenhar um papel decisivo nos próximos desdobramentos do cenário internacional.
Em síntese, a advertência do Dr. José Benjamín Pérez Matos não se limita a um possível evento isolado, mas aponta para uma dinâmica mais ampla: a consolidação de **uma nova ordem mundial em construção**, na qual a América Latina —e especialmente a Venezuela— pode desempenhar um papel decisivo nos próximos desdobramentos do cenário internacional.

View File

@ -6,11 +6,11 @@ slug: 2025-11-30-jerusalem-como-capital-global-impulsionam-a-transferencia-de-em
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-26.jpg'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-37-16.jpg'
tags: [Porto Rico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-26.jpg',
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-37-16.jpg',
},
]
---

View File

@ -17,7 +17,7 @@ gallery: [
***Um relatório diplomático revela que vários países da região já avançam em tratados e definições políticas no marco de uma reconfiguração internacional em curso***
*Cayey, Puerto Rico 11 de dezembro de 2025*
*Cayey, Porto Rico 11 de dezembro de 2025*
Cayey, Porto Rico 11 de dezembro de 2025. A dinâmica política da América Latina atravessa uma fase de transformação acelerada, marcada pela assinatura de acordos e pelo redesenho de alianças estratégicas. Assim indica um recente relatório diplomático que aponta que a região começou a consolidar um eixo de cooperação que projeta Jerusalém como um futuro ponto central na arquitetura global.

View File

@ -19,7 +19,7 @@ gallery: [
***Desde Porto Rico, o líder do Centro do Reino de Paz e Justiça analisou o impacto eleitoral chileno e sua projeção sobre o mapa político do continente.***
*Cayey, Puerto Rico 19 de dezembro de 2025*
*Cayey, Porto Rico 19 de dezembro de 2025*
Em uma intervenção centrada no cenário político regional, o Dr. José Benjamín Pérez Matos analisou as implicações da vitória de José Antonio Kast nas eleições presidenciais do Chile, destacando o fato como um ponto de inflexão dentro do processo de reconfiguração ideológica na América Latina.

View File

@ -17,7 +17,7 @@ gallery: [
***Desde Porto Rico, uma alocução marca o início de 2026 com um chamado à estabilização das nações e uma leitura estrutural do cenário global***
*Cayey, Puerto Rico 4 de janeiro de 2026*
*Cayey, Porto Rico 4 de janeiro de 2026*
O início do ano foi marcado por uma mensagem de alcance internacional que colocou o foco na situação de múltiplos países atravessados por crises políticas, sociais e econômicas. Em uma intervenção realizada em Cayey, foi apontado que o mundo estaria entrando em uma nova etapa, caracterizada por processos de transformação e busca de estabilidade em diferentes pontos do planeta. A abordagem não se limitou a um diagnóstico, mas incluiu um chamado direto à atenção para as dinâmicas em curso e sua possível evolução nos próximos meses.

View File

@ -20,7 +20,7 @@ gallery: [
*Cayey, Porto Rico 6 de janeiro de 2026*
## Em uma nova análise sobre a situação internacional, foi apresentado um diagnóstico contundente do cenário global atual, caracterizado por um aumento simultâneo de tensões políticas, conflitos sociais e crises estruturais em diversas regiões do mundo
Em uma nova análise sobre a situação internacional, foi apresentado um diagnóstico contundente do cenário global atual, caracterizado por um aumento simultâneo de tensões políticas, conflitos sociais e crises estruturais em diversas regiões do mundo
A mensagem, emitida de Cayey, sustenta que o início do ano de 2026 está marcado por uma intensidade incomum nos acontecimentos internacionais, em que múltiplos focos de conflito convergem em um mesmo período.

View File

@ -19,7 +19,8 @@ gallery: [
***Desde Porto Rico, o líder do Centro do Reino de Paz e Justiça apresentou uma leitura integral dos acontecimentos internacionais que marcaram o início do ano.***
*Cayey, Puerto Rico 27 de janeiro de 2026*
*Cayey, Porto Rico 27 de janeiro de 2026*
Em uma intervenção centrada nos principais acontecimentos internacionais das últimas semanas, o Dr. José Benjamín Pérez Matos desenvolveu uma análise que articula memória histórica, evolução do conflito no Oriente Médio e transformações políticas na América Latina.
A exposição coincidiu com a comemoração do Dia Internacional em Memória das Vítimas do Holocausto, contexto no qual o presidente do Centro do Reino de Paz e Justiça destacou a importância de manter viva a recordação desses fatos no contexto dos desafios atuais enfrentados por Israel.

View File

@ -27,7 +27,7 @@ gallery: [
**Líderes religiosos de quatro continentes se reuniram para abordar diálogo intercultural, formação comunitária e cooperação internacional**
*San Juan, Puerto Rico 13 de fevereiro de 2026*
*San Juan, Porto Rico 13 de fevereiro de 2026*
Na sexta-feira, 13 de fevereiro de 2026, teve início em Porto Rico o III Congresso Internacional de Rabinos, um encontro que reuniu líderes religiosos e representantes comunitários provenientes de Israel, Filipinas, Austrália, Canadá, Argentina, Uruguai, Guatemala, El Salvador, Índia e Quênia.

View File

@ -42,7 +42,7 @@ gallery: [
**O encontro reuniu referentes educativos e comunitários de diferentes países para fortalecer redes institucionais e promover o intercâmbio acadêmico**
*San Juan, Puerto Rico 15 de fevereiro de 2026*
*San Juan, Porto Rico 15 de fevereiro de 2026*
No domingo, 15 de fevereiro de 2026, foi realizada a abertura oficial do III Congresso Internacional de Rabinos em Porto Rico, consolidando o início formal de uma agenda acadêmica e de trabalho que convoca líderes religiosos e educacionais de diferentes regiões do mundo.

View File

@ -43,7 +43,7 @@ gallery: [
**A jornada final incluiu uma visita institucional à Grande Carpa (“Tenda”) Catedral, uma conferência acadêmica e a entrega do Prêmio Amiel 2026.**
*Cayey, Puerto Rico 16 de fevereiro de 2026*
*Cayey, Porto Rico 16 de fevereiro de 2026*
Na segunda-feira, 16 de fevereiro de 2026, foi realizada a jornada de encerramento do III Congresso Internacional de Rabinos com uma visita institucional à Grande Carpa (“Tenda”) Catedral, em Porto Rico.

View File

@ -21,7 +21,7 @@ gallery: [
# Palavras de encerramento do III Congresso de Rabinos Internacional
*Cayey, Puerto Rico 16 de fevereiro de 2026*
*Cayey, Porto Rico 16 de fevereiro de 2026*
_Dr. José Benjamín Pérez Matos_
Sejam todos muito bem-vindos a este III Encontro de Rabinos Internacional, aqui na Grande Carpa (“Tenda”), em Cayey, Porto Rico.

View File

@ -24,7 +24,7 @@ gallery: [
# **Quatro anos de guerra na Ucrânia: memória, justiça e responsabilidade internacional**
*Cayey, Puerto Rico 24 de fevereiro de 2026*
*Cayey, Porto Rico 24 de fevereiro de 2026*
Quatro anos após o início da invasão em larga escala da Federação da Rússia contra a Ucrânia, o mundo não assiste apenas à continuidade de um conflito armado, mas a uma profunda crise da ordem internacional, do respeito à soberania e da vigência efetiva do direito internacional humanitário.

View File

@ -50,8 +50,7 @@ gallery: [
*Assunção, Paraguai 26 de fevereiro de 2026*
Assunção, Paraguai 26 de fevereiro de 2026. O Dr. José Benjamín Pérez Matos, presidente do Centro do Reino de Paz e Justiça, participou de um ato simbólico de plantio de árvores no “Bosque Israel”, localizado no Parque Ñu Guasú, o espaço verde mais extenso da capital paraguaia. A atividade foi organizada pela Sociedade Cultural Amigos de Israel e contou com a presença de autoridades da comunidade judaica paraguaia e representantes do Estado de Israel em missão oficial.
O Dr. José Benjamín Pérez Matos, presidente do Centro do Reino de Paz e Justiça, participou de um ato simbólico de plantio de árvores no “Bosque Israel”, localizado no Parque Ñu Guasú, o espaço verde mais extenso da capital paraguaia. A atividade foi organizada pela Sociedade Cultural Amigos de Israel e contou com a presença de autoridades da comunidade judaica paraguaia e representantes do Estado de Israel em missão oficial.
O evento reuniu membros da Comunidade Judaica do Paraguai, liderada pelo seu presidente, o Lic. Humberto Ismajovich, assim como representantes institucionais e líderes comunitários. Neste contexto, o Dr. Pérez Matos e sua esposa, Sara Meléndez, participaram do plantio de uma árvore em um bosque que abrange aproximadamente 430 metros de comprimento por 50 metros de largura e que já conta com cerca de 3.500 árvores plantadas como gesto permanente de amizade e reconhecimento ao Estado de Israel.

View File

@ -15,7 +15,7 @@ tags: [Israel]
# Palavras pelo Dia Internacional da Mulher, dirigidas às mulheres das forças militares de Israel
*Cayey, Puerto Rico 8 de março de 2026*
*Cayey, Porto Rico 8 de março de 2026*
Neste Dia Internacional da Mulher, quero felicitar cada uma das mulheres que vestem o uniforme do exército de Israel.

View File

@ -15,10 +15,10 @@ gallery: [
**Um comunicado emitido pela representação diplomática iraniana em Montevidéu contra a República Argentina desencadeia uma controvérsia regional e expõe uma possível violação dos princípios fundamentais do direito diplomático internacional.**
### Montevidéu, Uruguai Abril de 2026
*Cayey, Porto Rico 3 de abril de 2026*
### Montevidéu, Uruguai Abril de 2026
Um episódio de alta sensibilidade diplomática irrompeu no cenário regional após a divulgação de um comunicado por parte da embaixada da República Islâmica do Irã no Uruguai, no qual foram feitas expressões críticas e ofensivas contra a República Argentina.
O fato não apenas gerou rejeição em setores políticos uruguaios, como também abre um debate profundo sobre o respeito às normas que regem as relações internacionais e o uso indevido dos canais diplomáticos.

View File

@ -19,7 +19,7 @@ gallery: [
*Cayey, Porto Rico 11 de abril de 2026*
**Porto Rico, 11 de abril de 2026.** Em um contexto internacional marcado por crescentes tensões diplomáticas no Oriente Médio e na Europa, o Dr. José Benjamín Pérez Matos, presidente do Centro do Reino de Paz e Justiça, ofereceu uma conferência na qual vinculou decisões geopolíticas atuais a uma leitura espiritual de alcance global.
Em um contexto internacional marcado por crescentes tensões diplomáticas no Oriente Médio e na Europa, o Dr. José Benjamín Pérez Matos, presidente do Centro do Reino de Paz e Justiça, ofereceu uma conferência na qual vinculou decisões geopolíticas atuais a uma leitura espiritual de alcance global.
Durante sua intervenção, o Dr. José Benjamín Pérez Matos afirmou que as nações estão atuando, em muitos casos, desconectadas do Programa divino, que, segundo ele, rege os acontecimentos históricos e políticos.
@ -30,6 +30,7 @@ Durante sua intervenção, o Dr. José Benjamín Pérez Matos afirmou que as na
A análise do Dr. José Benjamín Pérez Matos tomou como caso concreto a relação entre Espanha e Israel, que nas últimas semanas evidenciou uma deterioração significativa. Segundo foi exposto, as posturas críticas adotadas pelo governo espanhol teriam tido consequências diretas no plano diplomático.
Entre as medidas mencionadas, destaca-se a decisão do primeiro-ministro israelense, Benjamin Netanyahu, de retirar representantes espanhóis de instâncias de coordenação estratégica, particularmente no centro localizado em Kiryat Gat.
O Dr. José Benjamín Pérez Matos referiu-se a essa situação nos seguintes termos:
**«Vemos o caso da Espanha: que se colocou contra Israel. E vejam, ontem (o horário… lá são seis horas a mais, em Israel), o primeiro-ministro, Benjamin Netanyahu, retirou os representantes espanhóis de um Centro de Coordenação que eles têm em Kiryat Gat; e é por causa da postura da Espanha contra Israel. O primeiro-ministro de Israel, Benjamin Netanyahu, expressou que quem faz isso não será aliado de Israel; Ou seja, não respeita Israel e que não estará no futuro de Israel; ou seja, nesse companheirismo com Israel».**
@ -46,7 +47,7 @@ Nesse sentido, o Dr. José Benjamín Pérez Matos advertiu que a França pode es
**«E eles, vejam vocês, não estariam tendo parte nesse Reino porquanto se colocaram na posição de estar contra, e alguns até têm amaldiçoado Israel. E não estão conscientes de que nas Sagradas Escrituras Deus disse: “Aquele que te abençoar será abençoado, e aquele que te amaldiçoar será amaldiçoado”.**
E alguns dizem: ***“Não; é que isso foi no tempo lá naqueles anos anteriores, isso foi no tempo de Moisés”.***
**E alguns dizem: *“Não; é que isso foi no tempo lá naqueles anos anteriores, isso foi no tempo de Moisés”.***
**Deus não se retrata do que Ele fala, e toda essa Palavra está vigente. Israel é o filho primogênito de Deus; e toda nação que amaldiçoar Israel: será amaldiçoado.**

View File

@ -20,11 +20,11 @@ gallery: [
*Tel Aviv, Israel 14 de maio de 2026*
**Linha Fina:**
**Linha Fina:**
O presidente do Centro do Reino de Paz e Justiça chegou a Israel e transmitiu uma mensagem de Tel Aviv no contexto do Dia de Jerusalém, reafirmando o papel espiritual de Israel, o destino profético de Jerusalém e a defesa do povo israelense diante das ameaças regionais.
**Sinopse:**
**Sinopse:**
O Dr. José Benjamín Pérez Matos chegou a Israel para cumprir uma agenda de atividades espirituais e institucionais vinculadas a Jerusalém, ao Reino do Messias e ao cumprimento das promessas bíblicas.
@ -60,18 +60,18 @@ Na mesma linha, o Dr. José Benjamín Pérez Matos sustentou que a paz não pode
O Dr. José Benjamín Pérez Matos também apresentou uma reflexão dirigida aos líderes que questionam as ações de Israel diante do Irã. Em particular, perguntou o que faria qualquer presidente se uma nação anunciasse publicamente sua intenção de destruir seu país com uma arma atômica.
**«Agora, eu perguntaria ao presidente da Turquia: Se existe uma nação que diz que, caso venha a ter uma arma atômica, a bombardeará ou a lançará contra a sua nação, porque deseja vê-la destruída, o que o senhor faria? Ficaria de braços cruzados esperando que a façam, que a fabriquem, que a terminem e que a lancem? Então, o senhor seria um presidente negligente, que não cuida e não zela pelo seu próprio país.»**
**«Agora, eu perguntaria ao presidente da Turquia: Se existe uma nação que diz que, caso venha a ter uma arma atômica, a bombardeará ou a lançará contra a sua nação, porque deseja vê-la destruída, o que o senhor faria? Ficaria de braços cruzados esperando que a façam, que a fabriquem, que a terminem e que a lancem? Então, o senhor seria um presidente negligente, que não cuida e não zela pelo seu próprio país.»**.
Da mesma forma, o Dr. José Benjamín Pérez Matos estendeu essa observação ao presidente do governo da Espanha, Pedro Sánchez, a quem apontou por adotar uma posição contrária a Israel sem enfrentar uma ameaça semelhante em seu próprio território.
**«Igualmente digo ao da Espanha, que também está contra. Agora, vejam, como eles não têm essa ameaça, então assim é fácil dizer que o que Israel está fazendo não está bem».**
**«Igualmente digo ao da Espanha, que também está contra. Agora, vejam, como eles não têm essa ameaça, então assim é fácil dizer que o que Israel está fazendo não está bem»**.
O Dr. José Benjamín Pérez Matos defendeu com clareza a posição de Israel diante do regime iraniano, afirmando que impedir que o Irã avance em seus planos nucleares constitui uma ação necessária para evitar uma ameaça existencial contra o Estado de Israel.
**«Está muito bem o que Israel está fazendo! Porque está evitando que um país como o Irã termine esses planos de construir uma bomba atômica para destruir, desaparecer com Israel».**
**«Está muito bem o que Israel está fazendo! Porque está evitando que um país como o Irã termine esses planos de construir uma bomba atômica para destruir, desaparecer com Israel»**.
Por fim, o Dr. José Benjamín Pérez Matos reafirmou que Israel ocupa um lugar central nas promessas e profecias bíblicas, e sustentou que nenhuma nação poderá destruí-lo. Sua mensagem foi concluída com uma expressão de bênção e com o desejo de que as atividades previstas para estes dias na Terra Santa contribuam para o avanço do Reino Messiânico.
**«Todo aquele que estiver do lado das promessas e das profecias: está do lado de Deus, do Eterno; porque a Israel ninguém poderá destruir, nenhuma nação!»**
**«Todo aquele que estiver do lado das promessas e das profecias: está do lado de Deus, do Eterno; porque a Israel ninguém poderá destruir, nenhuma nação!»**.
**«Portanto, nestes dias esperamos grandes bênçãos do Eterno; e que tudo o que se realize nestes dias sejam dias para o engrandecimento desse Reino Messiânico, e que se adiante bastante tudo o que correspondente a esse Reino. Que Deus os abençoe, Deus os guarde, a todos.»**
**«Portanto, nestes dias esperamos grandes bênçãos do Eterno; e que tudo o que se realize nestes dias sejam dias para o engrandecimento desse Reino Messiânico, e que se adiante bastante tudo o que correspondente a esse Reino. Que Deus os abençoe, Deus os guarde, a todos.»**

View File

@ -0,0 +1,43 @@
---
locale: rw
title: 'Ibimenyetso byimpinduka ku rwego rwisi: imiburo yerekeye Israel nimihindagurikire yikirere mu Burasirazuba bwo Hagati'
date: 2023-07-27
slug: 2023-07-27-ibimenyetso-byimpinduka-ku-rwego-rwisi-imiburo-yerekeye-israeli-nmihindagurikire-yikirere-muburasirazuba-bwo-hagati
place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/Lake-Urmia_NASA.-2.webp'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/Lake-Urmia_NASA.-2.webp',
text_alt: 'Lake Urmia in Iran in 2020 (left) and 2023 (right), after being desiccated by drought. NASA'
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/new-042226-2.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/new-042226-3.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/new-042226-4.jpg',
},
]
---
# Ibimenyetso byimpinduka ku rwego rwisi: imiburo yerekeye Israel nimihindagurikire yikirere mu Burasirazuba bwo Hagati
*Cayey, Puerto Rico 27 Nyakanga 2023*
Dr. José Benjamín Pérez Matos yatanze isesengura ryimbitse ku bikorwa nibintu bitandukanye avuga ko bigaragaza impinduka zikomeye mu mateka yikiremwamuntu. Mu magambo ye, yibanze cyane ku bibazo biri imbere muri Israel ndetse no ku mihindagurikire ikabije yikirere iri kugaragara mu Burasirazuba bwo Hagati, agaragaza ko ibyo byose bifitanye isano nkibimenyetso byimpinduka nini iri kuba ku isi.
Dr. José Benjamín Pérez Matos yavuze ko ibyo bibazo bitagomba gufatwa nkibintu byabaye mu buryo bwihariye cyangwa bitandukanye, ahubwo ko ari igice cyigihe gishya gitangiye gahoro gahoro ariko kizakomereza ku rwego runini cyane mu bihe biri imbere.
Ku bijyanye na Israel, yagaragaje uko igihugu kiri kunyura mu bibazo byimvururu numwuka mubi mu baturage, harimo imyigaragambyo namakimbirane y imbere mu gihugu, ibintu yavuze ko bitari bimenyerewe muri Israel mu bihe bya vuba.
Yagize ati: **“Ku ruhande rwa Israel, nimurebe ibintu byose biri kubera muri Israel, iyo myigaragambyo yose nibindi, ibintu bitigeze bibaho muri Israel muri iyi minsi.”**
Isesengura rye ryagarutse kandi ku kibazo cyimihindagurikire yikirere, cyane cyane ubushyuhe bukabije bwagaragaye muri Iran, abufata nkikimenyetso cyangwa umuburo wibibazo bikomeye bishobora kuzabaho mu gihe kiri imbere.
Yagize ati: **“No ku zuba kandi, muri Iran bavuga ko ubushyuhe bwageze kuri dogere runaka: 150 °F (ndakeka ari zo), ubushyuhe umuntu ashobora kwihanganira, ibintu nkibyo; ubu izuba rigeze kuri izo dogere. Ariko mwibuke ko Ibyanditswe bivuga ko izuba rizashyuha inshuro zirindwi kurushaho. None se niba ubu izuba rimeze gutyo, bizamera bite mu kababaro gakomeye? Ibyo ni ibintu biteye ubwoba cyane bizagera ku bantu.”**
Aya magambo agaragaza uburyo Dr. José Benjamín Pérez Matos arebera hamwe ibibera ku isi muri iki gihe, aho ibibazo bya politiki, imibereho yabaturage nimihindagurikire yikirere bifatwa nkibifitanye isano mu buryo bumwe bwo kubisobanura.
Muri uwo murongo, yasabye abantu gukurikiranira hafi izi mpinduka, avuga ko ari igice cyimpinduka nini kandi zishingiye ku miterere mishya yisi, zizagira ingaruka ku bantu bose ku rwego rwisi.

View File

@ -0,0 +1,40 @@
---
locale: rw
title: 'Impuruza ya dipolomasi muri Amerika yEpfo: Hatanzwe umuburo ku ngaruka zishobora gukurikira ibihugu bihagarika umubano na Israel'
date: 2023-11-01
slug: 2023-11-01-impuruza-ya-dipolomasi-muri-amerika-yepfo-hatanzwe-umuburo-ku-ngaruka-zishobora-gukurikira-ibihugu-bihagarika-umubano-na-israel
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_12-15-10.jpg'
tags: [Israel, Puerto Rico, Bolivia, El Salvador, Nicaragua]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_12-15-10.jpg',
},
]
---
# Impuruza ya dipolomasi muri Amerika yEpfo: Hatanzwe umuburo ku ngaruka zishobora gukurikira ibihugu bihagarika umubano na Israel
***Ari muri Puerto Rico, Dr. José Benjamín Pérez Matos yasesenguye uko ibintu bya politiki mpuzamahanga bihagaze muri Amerika yEpfo, anaburira ku ngaruka ibihugu bishobora guhura na zo igihe bifashe imyanzuro irwanya Leta ya Israel.***
*Cayey, Puerto Rico 1 Ugushyingo 2023*
Mu gihe isi yari iri mu bihe bikomeye byumwuka mubi wa politiki nyuma yibyabaye ku wa 7 Ukwakira, Dr. José Benjamín Pérez Matos, Perezida wa La Gran Carpa Catedral, yatanze ubutumwa bukomeye ku myanzuro ya dipolomasi ibihugu bimwe byo muri Amerika yEpfo byari bitangiye gufata ku kibazo cya Israel.
Mu ijambo rye, uyu muyobozi wo muri Puerto Rico yagarutse ku cyo yavuze ko ari uguhindura uburyo amakuru mpuzamahanga atangwa, aho — nkuko yabisesenguye — hari kugeragezwa guhindura uruhare rwimpande ziri mu makimbirane. Yavuze ko hari inkuru zubakwa zerekana Israel nkumunyabyaha cyangwa umuterankunga wintambara, bikirengagiza inkomoko yamakimbirane.
Dr. José Benjamín Pérez Matos yanagaragaje impungenge ku mpinduka za dipolomasi zari zitangiye kugaragara muri Amerika yEpfo, cyane cyane nyuma yicyemezo cya Bolivia cyo guhagarika umubano na Israel. Kuri iyo ngingo yavuze ati: **“Nabonye ko Bolivia, kandi ntekereza ko hari nikindi gihugu cyari kigiye guhagarika umubano na Israel; sinzi niba byaramaze gukorwa. Binjiye mu kibazo gikomeye cyane!”**
Nyuma yuko icyo cyemezo cyemejwe, yakomeje asesengura agira ati: **“Bolivia yahagaritse umubano na Israel.” Bisobanuye ko ibyo byose turi kubona uko biri kuba. Tekereza! Hagomba kuba hari impamvu izatuma bahura ningaruka bazahura na zo.”**
Dr. José Benjamín Pérez Matos ntiyagarukiye gusa kuri Bolivia, ahubwo yaguye isesengura rye ku buryo ibihugu byo muri aka karere bihagaze ku kibazo cya Israel. Yavuze ko imyanzuro yububanyi namahanga ifatwa ku kibazo cya Israel atari ibintu bidafite ingaruka cyangwa bifatwa mu bwigunge, ahubwo ko bishobora kugira ingaruka zikomeye ku bihugu birebwa na yo.
Mu magambo ye yagize ati: **“Twifuza ko Amerika yEpfo itababara kandi itazahura ningaruka mbi cyane; ariko igihugu icyo ari cyo cyose gihagurukira kurwanya Israel, Ibyanditswe bivuga ngo: Uzaguha umugisha azahabwa umugisha, kandi uzakuvuma azavumwa.**”
Isesengura rye ryanagarutse ku bindi bihugu byo muri aka karere, cyane cyane Chile na Colombia, bitewe nibyemezo byabyo byo guhamagaza bambasaderi babyo bari muri Israel kugira ngo zigire inama na za Guverinoma zazo. Dr. José Benjamín Pérez Matos yabifashe nkikimenyetso cyicyerekezo cya dipolomasi kiri gukwira mu karere, kandi ku bwe, ibyo bishobora guterwa nigitutu mpuzamahanga kiri hanze yakarere.
Mu buryo yabibonaga, iyi myitwarire yibihugu ishobora gutuma habaho ingaruka zikomeye ku bihugu biyifata. Yanaburiye ko uruhererekane rwibi byemezo bya dipolomasi rushobora guteza umwuka mubi no kongera umutekano muke muri Amerika yEpfo.
Ubutumwa bwe bwa nyuma bwagaragaje impungenge nyamukuru ku ngaruka ibi byemezo bishobora kugira, atari gusa mu rwego rwa dipolomasi, ahubwo no ku hazaza ha politiki ninyungu zakarere ka Amerika yEpfo muri rusange.

View File

@ -0,0 +1,38 @@
---
locale: rw
title: 'Ubwiyongere bwamakimbirane hagati ya Iran na Israel: hatanzwe imiburo ku mpinduka zikomeye zishobora kuba ku rwego rwisi'
date: 2024-04-13
slug: 2024-04-13-ubwiyongere-bwamakimbirane-hagati-ya-iran-na-israel-hatanzwe-imiburo-ku-mpinduka-zikomeye-zishobora-kuba-ku-rwego-rwisi
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_12-42-30.jpg'
tags: [Israel, Iran]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_12-42-30.jpg',
},
]
---
# Ubwiyongere bwamakimbirane hagati ya Iran na Israel: hatanzwe imiburo ku mpinduka zikomeye zishobora kuba ku rwego rwisi
*Cayey, Puerto Rico 13 Mata 2024*
Mu masaha ashize, isi yongeye guhura nihinduka rikomeye nyuma yigitero Iran yagabye kuri Israel, ibintu byateje impungenge ku rwego mpuzamahanga kubera ubwiyongere bwumwuka mubi wa gisirikare. Kuri icyo kibazo, Dr. José Benjamín Pérez Matos yavugiye muri La Gran Carpa Catedral, atanga isesengura ryibi bibazo mu buryo bwa politiki mpuzamahanga ndetse no mu rwego rwubuhanuzi.
Mu ijambo rye, Dr. José Benjamín Pérez Matos yavuze ku buryo icyo gitero cyihuse kandi gikomeye, agaruka ku makuru yari ari gukwirakwizwa ako kanya:
**“Uyu munsi kuwa Gatandatu, tariki ya 13 Mata 2024, twagiye tubona mu makuru — abagiye bakurikirana amakuru — icyo gitero cyoherejwe na Iran, aho yohereje drones nibindi bitero byo mu kirere, kandi nkuko amakuru yabivugaga, byari kugera mu gihe cyisaha imwe, isaha nigice cyangwa amasaha abiri.”**
Mu butumwa bwe, yanagaragaje uruhare rwamateka yUburasirazuba bwo Hagati nkahantu hakunze kuberamo amakimbirane mpuzamahanga, ashimangira ko intambara zikunze kongera kugaruka muri ako karere.
Yagize ati: **“Kandi tuzi neza ko buri gihe ubwoko bwAbaheburayo bwagiye buba muri izi ntambara… kuko nimurebe, intandaro yibi bibazo ihora iri mu Burasirazuba bwo Hagati. Kandi tuzi ko igihe icyo ari cyo cyose Intambara ya Gatatu yIsi ishobora gutangira.”**
Dr. José Benjamín Pérez Matos yanavuze ko ibi bibazo biri kuba ari igice cyimpinduka nini iri kuba ku isi, ihuzwa nigihe cyinzibacyuho gifite ibisobanuro byamateka ndetse nibyumwuka.
Yagize ati: **“Hari isezerano rya Israel, aho Intebe ya Dawidi izasubizwaho; kandi kugira ngo ibyo bibeho, hari uruhererekane rwibintu bizabaho muri izi mpinduka zubwami, kuva mu bwami bwabanyamahanga bugana mu Bwami bwa Mesiya-Umwami.”**
Mu gihe drones zari ziri kuguruka mu kirere kandi umwuka mubi ugenda wiyongera buri munota, amahanga yakomeje gukurikirana iki kibazo afite impungenge ko gishobora kuvamo intambara nini kurushaho. Muri uwo murongo, ubutumwa bwa nyuma bwa Dr. José Benjamín Pérez Matos bwari buherekejwe numuhamagaro wo gukomeza kwitondera no gutekereza ku biri kuba, asaba abantu gukomeza gukurikirana uko ibintu bihinduka mu Burasirazuba bwo Hagati no gukomeza gusengera Leta ya Israel.
Ibi bintu biherutse kuba byongeye kugaragaza uburyo isi iri mu bihe byoroshye guhungabana ndetse nakamaro kakarere kUburasirazuba bwo Hagati mu rwego rwinyungu za politiki mpuzamahanga, aho buri cyemezo cyangwa buri gikorwa gishobora kugira ingaruka ku isi yose.

View File

@ -0,0 +1,34 @@
---
locale: rw
title: 'Ubutumwa bwo gushyigikira Israel mu bihe bikomeye: inkunga numuhamagaro wo kugira ubwenge'
date: 2024-04-15
slug: 2024-04-15-ubutumwa-bwo-gushyigikira-israel-mu-bihe-bikomeye-inkunga-n-umuhamagaro-wo-kugira-ubwenge
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Ubutumwa bwo gushyigikira Israel mu bihe bikomeye: inkunga numuhamagaro wo kugira ubwenge
*Cayey, Puerto Rico 15 Mata 2024*
Mu gihe isi iri mu bihe birangwa numwuka mubi ugenda wiyongera mu Burasirazuba bwo Hagati, Dr. José Benjamín Pérez Matos yatanze ubutumwa bwo gushyigikira no guha umugisha ubwoko bwa Israel, ashimangira akamaro ko gufata ibyemezo byiza muri ibi bihe bifatwa nkibyingenzi ku hazaza hakarere.
Ari i Cayey muri Puerto Rico, Dr. José Benjamín Pérez Matos yagejeje ubutumwa bwe ku bayobozi ndetse no ku bwoko bwAbaheburayo, agaragaza ko hakenewe ubwenge ninshingano mu gufata ibyemezo mu gihe isi iri mu bihe bikomeye kandi bigoye.
Yagize ati: **“Imana ihe umugisha Israel, Imana ihe umugisha ubwoko bwAbaheburayo, kandi bafate ibyemezo bikwiye.”**
Ubutumwa bwe ntabwo bwagarukaga gusa ku gushyigikira Israel, ahubwo bwanagaragazaga icyizere cyibintu byiza biri imbere. Dr. José Benjamín Pérez Matos yavuze ko yifuza ko ubwoko bwa Israel bwakira neza kandi vuba ibyo, nkuko abyizera, biri hafi kuza.
Yagize ati: **“Imana ishyire mu mitima yabo ibyo bagiye kwakira vuba.”**
Aya magambo ari mu murongo wubutumwa yakomeje gutanga mu bihe bitandukanye, aho ukwizera nibyumwuka bifatwa nkinkingi zingenzi mu gutanga icyerekezo no gukomeza ubumwe. Muri uwo murongo, abakurikira Dr. José Benjamín Pérez Matos bongeye gushimangira ko bashyigikiye Israel, bagaragaza uruhare rwisengesho nukwizera nkibirenze imipaka yibihugu.
Ubutumwa bwatangiwe muri Puerto Rico bwiyongereye ku zindi mvugo nitangazo byagiye bishimangira akamaro kibihe isi irimo, ndetse bunagaragaza neza umwanya wo gushyigikira Israel no gukomeza gukurikiranira hafi uko ibintu bihinduka ku rwego mpuzamahanga.

View File

@ -0,0 +1,56 @@
---
locale: rw
title: 'Igitangaza cya Israel nyuma yimyaka 76: ubwigenge, amakimbirane nicyerekezo cyisezerano ku rwego rwisi'
date: 2024-05-14
slug: 2024-05-14-el-milagro-de-israel-a-76-anos-soberania-conflicto-y-la-proyeccion-de-una-promesa-global
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Igitangaza cya Israel nyuma yimyaka 76: ubwigenge, amakimbirane nicyerekezo cyisezerano ku rwego rwisi
*Cayey, Puerto Rico 14 Gicurasi 2024*
Tariki ya 14 Gicurasi ni imwe mu matariki yagize uruhare rukomeye mu mateka ya politiki mpuzamahanga yo mu kinyejana cya 20. Nyuma yimyaka 76 Leta ya Israel ishinzwe, Dr. José Benjamín Pérez Matos atanga isesengura rirenga uburyo busanzwe bwo kureba ibibazo mpuzamahanga, aho agaragaza Israel nkigihugu gifite uruhare rukomeye muri gahunda yisi ndetse nkinkingi yimpinduka zifite uburemere bwihariye mu mateka yikiremwamuntu.
Ari i Cayey muri Puerto Rico, uyu muyobozi yagarutse ku bitabo byanditswe na Dr. William Soto Santiago, asobanura ko kubaho kwa Leta ya Israel ubwabyo ari igitangaza kidasanzwe. Mu isesengura rye, yavuze ko gukomeza kubaho kwa Israel — igihugu cyavutse nyuma yitsembabwoko rya Holocaust — bitasobanurwa gusa nimpamvu za politiki cyangwa izintambara, ahubwo ko harimo amateka, indangagaciro nicyerekezo cyigihe kirekire.
## Kuva ku mwanzuro mpuzamahanga kugera ku guhurizahamwe leta
Intangiriro yiri sesengura ishingiye ku Mwanzuro wa 181 wUmuryango wAbibumbye, wemejwe mu 1947, wafunguye inzira yo gushinga Leta ya Israel mu 1948. Dr. José Benjamín Pérez Matos avuga ko ibyo bitari ibintu byabaye gusa ako kanya, ahubwo ko ari intangiriro yurugendo rwo kongera kubaka igihugu byagize ingaruka ku isi yose.
Yagize ati: **“Kubaho kwa Israel ntibishobora gusobanurwa gusa mu buryo bwa politiki; turi imbere yigitangaza gikomeye cyane cyo mu gihe cya none, haba muri politiki ndetse no mu rwego rwo mu mwuka.”** Yashimangiye ko gukomera kwa Leta ya Israel atari ibintu byabaye ku bwimpanuka, ahubwo ari igice cyumushinga mugari.
Isesengura rye ryemera amateka akomeye yAbayahudi, harimo no gutakaza igihugu cyabo mu bihe bya kera, ariko rikagaragaza ko kugaruka ku butaka bwabo mu kinyejana cya 20 ari impinduka ikomeye yahinduye uruhare rwabo muri gahunda yisi ya none.
## Israel hagati muri gahunda mpuzamahanga
Ku bwa Dr. José Benjamín Pérez Matos, umwanya Israel ifite muri iki gihe ntabwo ari impanuka. Imbaraga zayo muri politiki, ikoranabuhanga nigisirikare, hamwe nuko ihora ivugwa mu bibazo byisi, bituma iba igihugu kidashobora kwirengagizwa mu isesengura ryumutekano wakarere nuwisi.
Nubwo hakomeje kubaho amakimbirane mu Burasirazuba bwo Hagati, yavuze ko Israel ari ihuriro ryinyungu za politiki mpuzamahanga, amakimbirane yideolojiya ndetse nimbaraga zibihugu bikomeye.
Muri uyu murongo, umujyi wa Yerusalemu ufite agaciro kihariye, atari gusa nkahantu ha politiki nidini, ahubwo nkikimenyetso gihora kirebwa namahanga.
## Icyizere cyigihe kiri imbere nicyerekezo cyimpinduka
Kimwe mu bice byingenzi byisesengura rye ni igitekerezo cyuko Israel iri mu gihe yise **“icyizere cyingenzi cyihuriro,”** aho nubwo hari amakimbirane, hari impinduka nini iri gutegurwa.
Kuri iyi ngingo yagize ati: **“Israel iri mu gihe cyicyizere cy intego yibikorwa. Ibintu byose birerekana ikimenyetso gikomeye kizatangiza icyiciro gishya mu mateka yayo.”**
Aya magambo agaragaza ko, ku bwe, ikibazo cya Israel kidakwiye kurebwa gusa mu rwego rwibibazo byubu, ahubwo nkigice cyimpinduka nini zizagira ingaruka ku isi yose.
## Umukinnyi wingezi mu isi yuzuyemo gushidikanya
Mu gihe isi iri mu bihe birangwa nimpinduka zubufatanye hagati yibihugu, intambara zimara igihe kinini ndetse no kongera kugabana imbaraga za politiki, Dr. José Benjamín Pérez Matos agaragaza ko Israel itagomba kurebwa gusa nkigihugu kiri mu ntambara, ahubwo nkumukinnyi ukomeye muri gahunda mpuzamahanga.
Mu magambo ye ya nyuma yagize ati: **“Israel ntabwo ari gusa umukinnyi wa politiki mpuzamahanga; ni yo nkingi ya Gahunda iri hafi kwigaragaza mu buryo bwuzuye imbere yisi.”**
Nyuma yimyaka 76 ishinzwe, Leta ya Israel ikomeje kugira umwanya ukomeye ku rwego mpuzamahanga, atari kubera amakimbirane gusa, ahubwo kubera ubushobozi ifite bwo kugira uruhare — mu buryo buziguye cyangwa butaziguye — mu miterere yisi ya none.

View File

@ -0,0 +1,33 @@
---
locale: rw
title: 'Ubusabe mpuzamahanga kuri Isiraheli na Venezuwela: ukwizera, ubwisanzure nimiburo ku mpinduka zisil'
date: 2024-08-03
slug: 2024-08-03-ubusabe-mpuzamahanga-kuri-isiraheli-na-venezuwela-ukwizera-ubwisanzure-nimburo-ku-mpinduka-zi-
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_14-49-46.jpg'
tags: [Venezuela, Puerto Rico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_14-49-46.jpg',
},
]
---
# Ubusabe mpuzamahanga kuri Isiraheli na Venezuwela: ukwizera, ubwisanzure nimiburo ku mpinduka zisi
*Cayey, Puerto Rico 3 Kanama 2024*
Mu gihe isi iri kurangwa namakimbirane ya politiki nimibereho yabaturage, Dr. José Benjamín Pérez Matos yatanze ubutumwa bwahuje ibijyanye nukwizera nibibazo bya politiki mpuzamahanga biriho ubu, ahamagarira abantu gusengera ibihugu bibiri biri mu bihe bikomeye: Israel na Venezuela.
Ubutumwa bwe bwari bwuzuyemo uburemere numuhamagaro wihutirwa, bushimangira ko hakenewe kugarura ituze numutekano mu bice byingenzi byisi, ndetse agaragaza ingaruka ibyo bibazo bigira ku burenganzira bwibanze nimibereho yabaturage.
Yagize ati: **“Imana ihe umugisha Israel, Imana ihe umugisha na Venezuela, kuko ari ibihugu biri kunyura mu bihe bikomeye muri iki gihe; ndetse nibindi bihugu, kuko uko byagenda kose, ubwami bwiyi si bugiye vuba kuba Ubwami bwa Mesiya.”**
Kimwe mu bice byingenzi byubutumwa bwe cyagarutse ku kibazo cya Venezuela, aho Dr. José Benjamín Pérez Matos yavuze ku mibabaro abaturage bicyo gihugu bamaze imyaka banyuramo ndetse no ku gukenera impinduka zafasha kugarura ubwisanzure nicyubahiro cyabo.
Yagize ati: **“Icyifuzo cyabana bImana ni uko babohoka muri ibyo bibazo bimaze imyaka myinshi bibakandamiza.”**
Ubutumwa bwe bwanagaragayemo ishusho nini yibibazo byo mu Burasirazuba bwo Hagati, aho yasobanuye ko ibiri kuba ubu ari igice cyimpinduka nini ziri kuba ku rwego rwisi. Muri uwo murongo, yavuze ko “ibihe bikomeye” ibihugu byinshi biri kunyuramo ari ibimenyetso byinzibacyuho iganisha ku miterere mishya yisi.
Igikorwa cyasojwe nubutumwa bwo guha umugisha nibindi bihugu ndetse numuhamagaro wo gukomeza kuba maso no gusenga mu gihe isi ikomeje kunyura mu mpinduka zihuse kandi zikomeye ku rwego mpuzamahanga.

View File

@ -1,33 +1,33 @@
---
locale: rw
title: 'Umuyobozi mpuzamahanga yashimye uburyo bwo kuyobora igihugu bwa El Salvador ningaruka zabwo ku rwego rwakarere mu gikorwa cyabereye mu Ngoro yImikino'
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-umuyobozi-mpuzamahanga-yashimye-uburyo-bwo-kuyobora-igihugu-bwa-el-salvador-ningaruka-zabwo-ku-rwego-rwakarere-mu-gikorwa-cyabereye-mu-ngoro-yimikino
slug: 2026-04-26-umuyobozi-mpuzamahanga-yashimye-uburyobwimiyoborerebwa-elsalvadornuruhaerwayomukareremukigikorwacyabereyemuri-palaciodelosdeportes
country: SV
city: San Salvador
place: Palacio de los Deportes
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Kolombiya, Saluvadori]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_04_26_1_JBP_la_ultima_visitacion_o_manifestacion_del_espiritu.webp'
tags: [Colombia, Salvador]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026_04_26_1_JBP_la_ultima_visitacion_o_manifestacion_del_espiritu.webp',
},
]
---
## Umuyobozi mpuzamahanga yashimye uburyo bwo kuyobora igihugu bwa El Salvador ningaruka zabwo ku rwego rwakarere mu gikorwa cyabereye mu Ngoro yImikino
# Umuyobozi mpuzamahanga yashimye uburyo bwimiyoborere bwa El Salvador nuruhare rwayo mu karere mu gikorwa cyabereye muri Palacio de los Deportes.
*San Salvador, Saluvadori 26 Mata 2026*
*San Salvador, El Salvador 26 Mata 2026*
Dr. José Benjamín Pérez Matos yayoboye igikorwa cyabaye ku itariki ya 26 Mata mu Ngoro yImikino “Carlos El Famoso Hernández”, aho yagaragaje ishimwe ku buyobozi bwa Perezida Nayib Bukele ndetse ningaruka zimiyoborere ye muri El Salvador no mu karere.
Dr. José Benjamín Pérez Matos yayoboye igikorwa cyabereye muri Palacio de los Deportes “Carlos El Famoso Hernández”, aho yashimiye ubuyobozi bwa Perezida Nayib Bukele ndetse ningaruka nziza zubuyobozi bwe muri El Salvador no mu karere.
Imbere yimbaga yari yateraniye muri iyi nyubako ya Leta, uyu muyobozi yashimiye Guverinoma ya El Salvador ku bufasha yatanze kugira ngo iki gikorwa kibe. Mu ijambo rye, yavuze ku mabara yubururu numweru yarangaga aho hantu, abihuza nibendera rya Isirayeli, igihugu yagaragarije ubutumwa bwo kugishyigikira.
Imbere yabitabiriye icyo gikorwa cyabereye muri iyi nyubako ya Leta, uwo muyobozi yashimiye Guverinoma ya El Salvador ku bufasha bwatanzwe kugira ngo icyo gikorwa kibe cyiza. Mu ijambo rye, yavuze ku mabara yubururu numweru yagaragara aho icyo gikorwa cyabereye, ayahuza nibara ryibendera rya Israel, igihugu yashyigikiye mu butumwa bwe.
Mu gusobanura kwe, Dr. José Benjamín Pérez Matos yagarutse ku buryo bwumutekano bwashyizweho nubuyobozi buriho muri El Salvador, agaragaza ko bushingiye ku kubungabunga gahunda no gushyira mu bikorwa amategeko mu buryo bukomeye.
Mu kiganiro cye, Dr. José Benjamín Pérez Matos yagarutse ku buryo bwumutekano bwashyizweho nubutegetsi buriho muri El Salvador, ashimangira ko bushingiye ku kubahiriza gahunda no gushyira mu bikorwa amategeko mu buryo bukomeye.
Yagize ati: **“Reba ukuntu bavuga kuri Perezida Bukele, ku buryo ari kuyobora… Imana yemeye ko abayobozi bamwe bagira uwo murongo werekeza ku gihe cyUbwami bwimyaka igihumbi; bahumekerwa nImana.”** Yanavuze ko ubu buryo bwo kuyobora busaba gufata ibyemezo bikomeye mu guhangana nikorwa ryibyaha nimidugararo.
Yagize ati: “Murebe uburyo bavuga Perezida Bukele nuburyo ayobora… Imana yemeye ko habaho abayobozi bafite icyerekezo kijyana nibizaba mu gihe cyingoma yimyaka igihumbi; baba bahumekewe nImana.” Yanavuze ko ubu buryo bwo kuyobora busaba gufata ibyemezo bikomeye mu kurwanya ibyaha nakajagari.
Nanone kandi, Dr. José Benjamín Pérez Matos yagaragaje ko ubu buryo bwo kuyobora buri kurenga imbibi za El Salvador, bugatuma abayobozi batandukanye mu karere babugiraho inyota. Muri urwo rwego, **yavuze byumwihariko ko abantu nka umunyamategeko wo muri Colombia witwa Abelardo de la Espriella** bamaze kugaragaza ku mugaragaro ko bashishikajwe no kwiga no gushobora gukurikiza ubu buryo bwumutekano nimiyoborere bwashyizweho na Perezida Nayib Bukele.
Dr. José Benjamín Pérez Matos kandi yavuze ko ubu buryo bwimiyoborere burimo kurenga imipaka ya El Salvador, bukaba buri gukurura inyota ninyungu mu bayobozi batandukanye bo mu karere. Yavuze byumwihariko ko umunyamategeko wo muri Colombia, Abelardo de la Espriella, yagaragaje ku mugaragaro ubushake bwo kwiga no kureba uburyo gahunda yumutekano nimiyoborere ya Perezida Nayib Bukele yashyirwa no mu bindi bihugu.
Igikorwa cyasojwe hatanzwe ubutumwa bwo gushyigikira icyerekezo El Salvador yafashe mu bijyanye numutekano nimiyoborere yinzego zayo, hanashimangirwa ko ubu buyobozi bushobora gukomeza kugira ingaruka ku rwego rwakarere mu myaka iri imbere.
Igikorwa cyasojwe nubutumwa bushyigikira icyerekezo El Salvador yafashe mu rwego rwumutekano no gutunganya inzego za Leta, hagaragazwa ko ubu buryo bwubuyobozi bushobora kugira uruhare rukomeye mu karere mu myaka iri imbere.

View File

@ -0,0 +1,58 @@
---
locale: rw
title: 'Bolivia iri gutera intambwe muri gahunda yubufatanye na Israel iyobowe na'
date: 2026-04-29
slug: 2026-04-29-bolivia-iri-gutera-intambwe-muri-gahunda-yubufatanye-na-israeli-yobowe-na
country: BO
city: La Paz
place: Palacio de los Deportes
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/2026-04-29 - Evento La Paz Hotel Camino Real-118.jpg'
tags: [Bolivia, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026-04-29 - Evento La Paz Hotel Camino Real-118.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-720,cm-pad_resize,bg-blurred/2026-04-29 - Evento La Paz Hotel Camino Real-87.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026-04-29 - Evento La Paz Hotel Camino Real-47.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026-04-29 - Evento La Paz Hotel Camino Real-40.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026-04-29 - Evento La Paz Hotel Camino Real-58.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026-04-29 - Evento La Paz Hotel Camino Real-38.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026-04-29 - Evento La Paz Hotel Camino Real-69.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026-04-29 - Evento La Paz Hotel Camino Real-93.jpg',
},
]
---
# Bolivia iri gutera intambwe muri gahunda yubufatanye na Israel iyobowe na
*La Paz, Bolivia 29 Mata 2026*
***Inteko Ishinga Amategeko yAbadepite hamwe ninama yo ku rwego rwo hejuru mu bya dipolomasi byashimangiye umunsi wingenzi mu gukomeza umubano hagati yibihugu byombi.***
Mu rwego rwumunsi wari wuzuyemo ibikorwa byinzego zitandukanye, Dr. José Benjamín Pérez Matos yakomeje gahunda igamije gukomeza umubano hagati ya Bolivia na Leta ya Israel, binyuze mu bikorwa byabereye mu rwego rwinteko ishinga amategeko no mu rwego rwa dipolomasi.
Mu masaha ya mbere yuwo munsi, Inteko Ishinga Amategeko yAbadepite yabereyemo inama za tekiniki zahuje abadepite nabasenateri, aho baganiriye ku mishinga yamategeko iteza imbere gahunda za Dr. José Benjamín Pérez Matos. Iyo mishinga irimo kwimura ibyicaro bya dipolomasi ndetse no gushyiraho amasezerano yubufatanye mu bya tekiniki numutekano.
Muri urwo rwego, senateri José Manuel Ormachea yavuze ati: “Tuzakira umushinga witegeko wa Dr. José Benjamín Pérez Matos; tuzawugeza ku baturage no kuwuganiraho kugira ngo Bolivia ibe ifite uhagarariye igihugu muri Israel ndetse tunagire ambasade ya Israel ku butaka bwacu.”
Nyuma yaho, ku butumire bwa ambasaderi Gali Dagan, Dr. José Benjamín Pérez Matos yitabiriye inama yabereye mu mujyi rwagati, aho bakomeje gahunda yibiganiro byatangiriye mu rwego rwinteko ishinga amategeko. Muri iyo nama, ambasaderi Dagan yashimiye ku mugaragaro ibikorwa bya Dr. José Benjamín Pérez Matos ndetse anamushimira “ubufasha budacogora” yahaye Leta ya Israel.
Ku ruhande rwe, Dr. José Benjamín Pérez Matos yashimangiye akamaro kibyagezweho muri uwo munsi agira ati: “Nakurikiranye buri kantu ku giti kanjye, nshyigikira amasezerano azazana iterambere rifatika.”
Iyo nama yitabiriwe nabahagarariye inzego zitandukanye, harimo abayobozi bamadini atandukanye, Konseye Honoré Roberto Nelkenbaum ndetse na Perezida wumuryango wAbayahudi Ricardo Udler. Ambasaderi Dagan yanagaragaje uruhare rwabayobozi bamadini, avuga ko ari “imbaraga zinyongera muri dipolomasi,” kubera uruhare rwabo mu gukomeza umubano hagati yibihugu byombi.
Ibikorwa byabaye muri uwo munsi byafashije gutera intambwe mu gushimangira gahunda yubufatanye hagati ya Bolivia na Israel, hagamijwe gukomeza umubano winzego zitandukanye zibihugu byombi mu nyungu rusange.

View File

@ -0,0 +1,66 @@
---
locale: rw
title: 'José Benjamín Pérez Matos yatangiye urugendo mpuzamahanga muri Israel mu rwego rwo kwizihiza Umunsi wa Yerusalemu.'
date: 2026-05-14
slug: 2026-05-14-jose-benjamin-perez-matos-yatangiye-urugendo-mpuzamahanga-muri-israel-mu-rwego-rwo-kwizihiza-umunsi-wa-yerusalemu
place: ''
country: 'IL'
state: ''
city: 'Tel Aviv'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# José Benjamín Pérez Matos yatangiye urugendo mpuzamahanga muri Israel mu rwego rwo kwizihiza Umunsi wa Yerusalemu
*Tel Aviv, Isirayeli 14 Gicurasi 2026*
**Umutwe w'Inkuru:**
Perezida w'Ikigo cy'Ubwami cyita ku Mahoro n'Ubutabera yageze muri Isirayeli atanga ubutumwa buturutse i Tel Aviv ku munsi wa Yerusalemu, yongera kwemeza uruhare rwa Isirayeli mu buryo bw'umwuka, ubuhanuzi bwa Yerusalemu, no kurengera abaturage ba Isirayeli mu bibazo by'akarere.
**Incamake:**
Dr. José Benjamín Pérez Matos yageze muri Isirayeli aje gukora ibikorwa bitandukanye byumwuka nibyinzego bifitanye isano na Yerusalemu, Ubwami bwa Mesiya, no gusohoza amasezerano yo muri Bibiliya.
Dr. José Benjamín Pérez Matos, perezida wIkigo cyUbwami cyAmahoro nUbutabera, yageze i Tel Aviv muri Isirayeli, ku wa Kane tariki ya 14 Gicurasi 2026, aho yatangije ubutumwa bushya mpuzamahanga ku butaka butagatifu, nk'igice cyibikorwa byinshi bifitanye isano cyane cyane numunsi wa Yerusalemu.
Akihagera, Dr. José Benjamín Pérez Matos yasuhuje abavandimwe be bo mu Burengerazuba bwIsi maze agaragaza ko ategereje inama ziteganijwe mu gihe azaba ari muri Isirayeli, ashimangira ko uruzinduko ruzaba mu rwego rwingenzi cyane mu buryo bwumwuka.
**«Uyu munsi, ku wa Kane tariki ya 14 Gicurasi 2026, ndabasuhuje mwese bavandimwe muri mu Burengerazuba bwIsi. Tugeze hano nyuma yurugendo rwindege imaze kugwa hano i Tel Aviv, muri Israel, aho dutegereje muri iyi minsi imigisha myinshi ituruka ku Uwiteka, Imana ya Aburahamu, Isaka na Israel, Imana yacu twese»**.
José Benjamín Pérez Matos yavuze ko Kuri uyu munsi hazaba ibikorwa bikomeye bijyanye nUmunsi wa Yerusalemu, bizitabirwa nabanyacyubahiro batandukanye. Muri urwo rwego, yashimangiye ko intego nyamukuru yibi bikorwa ari uguteza imbere no gukomeza Ubwami bwImana.
Mu butumwa bwe, José Benjamín Pérez Matos yongeye gushimangira akamaro ka Yerusalemu nkihuriro ryIsi ndetse nkahantu, hakurikijwe amasezerano yo mu Byanditswe Byera, hazaba umurwa mukuru wUbwami bwa Mesiya.
**«Ubwo Bwami buzashyirwaho vuba cyane mu buryo bufatika, muri iki gihugu, kandi ari hano hazaturuka amategeko, Ijambo ryImana nihishuwe ryImana. Amahoro, ibyishimo nibindi byose bizaturuka i Yerusalemu, umurwa mukuru wIsi»**.
**«Ariko mbere na mbere buri gushyirwaho mu mutima, hanyuma nyuma bukazashyirwaho no mu buryo bufatika, hano ku isi; mu buryo bugaragara ku butaka bwa Israel. Bityo rero, ni umurimo Uwiteka ari gukora, hakurikijwe ibyo yasezeranye mu Byanditswe Byera»**.
Mu kindi gice cyubutumwa bwe, José Benjamín Pérez Matos yavuze ku rwego rwumutekano yabonye ageze muri Israel. Yagaragaje ko yabonye indege za gisirikare, avuga ko ibyo bigaragaza urwego rwumwuka mubi nubushyamirane buri muri ako karere, mu gihe, nkuko yabivuze, ibihugu byinshi birwanya kubaho kwa Israel ubwayo.
**«Igihe twageraga hano, twabonye indege nyinshi za gisirikare. Kandi turabona uburyo ibintu byose biri kugenda bihinduka mu nzego zitandukanye, kuko hari ibihugu byinshi birwanya ko Israel ibaho»**.
José Benjamín Pérez Matos yanavuze byumwihariko ku magambo ya Perezida wa Turkey, Recep Tayyip Erdoğan, yavuze kuri Israel ndetse no kuri Minisitiri wIntebe wa Israel, Benjamin Netanyahu, uwo Perezida wa Turkey yamushinje ko adashaka amahoro. Mu gusubiza ayo magambo, Perezida wa Centro del Reino de Paz y Justicia yashyigikiye uburenganzira bwa Israel bwo kurinda kubaho kwayo no gufata ingamba ku bantu cyangwa ibihugu biyibangamiye ku mutekano wayo.
Nabonaga amakuru avuga ko Perezida wa Turkey na we yavuze amagambo arwanya Israel, kandi avuga ko Minisitiri wIntebe Benjamin Netanyahu adashaka amahoro. Birumvikana ko ashaka amahoro, kimwe numuturage wese wa Israel. Kandi umuntu wese uzi neza Ibyanditswe Byera yifuza amahoro».
Muri uwo murongo kandi, José Benjamín Pérez Matos yavuze ko amahoro adashobora kubakwa hatabayeho guhagarika abashaka kurimbura Israel. Nkuko yabisobanuye, igikorwa cyose kigamije gukumira ikibazo cyangwa igitero kibangamiye abaturage ba Israel kigomba kumvikana nkubwirinzi bwemewe bwamahoro namasezerano yo muri Bibiliya.
**“Kugira ngo tugere ku mahoro, tugomba gukuraho ikintu cyose kiyabangamira. Kandi umuntu wese udashaka amahoro aba imbogamizi. Abibumoso, abasosiyalisiti, nabakomunisiti ntibashobora kwinjira muri ubwo Bwami. Mu yandi magambo, nta kintu na kimwe kibangamiye amahoro gishobora kwinjiramo.”**
Dr. José Benjamín Pérez Matos yanatanze igitekerezo cyerekeye abayobozi bashidikanya ku bikorwa bya Isiraheli kuri Irani. Byumwihariko, yabajije icyo perezida uwo ari we wese yakora mu gihe igihugu cyatangaza ku mugaragaro ko gishaka gusenya igihugu cyabo gikoresheje intwaro za kirimbuzi.
**“Ubu rero, nabaza Perezida wa Turukiya: niba hari igihugu gitangaza ko nikibona intwaro kirimbuzi kizagiteraho ibisasu cyangwa kikazikoresha kukirimbura, wowe wakora iki? Wakomeza kwicara ukipfumbata, utegereje ko bazikora, bazirangiza, hanyuma bakazigutera? Icyo gihe uba uri Perezida utitaye ku nshingano zawe, utarinze kandi utareberera igihugu cye.”**
Mu buryo bumwe, Dr. José Benjamín Pérez Matos yakomeje uwo mwanzuro awushyira no kuri Minisitiri wIntebe wa Espagne, Pedro Sánchez, yamunenze kuba yarafashe icyemezo cyo kurwanya Isiraheli atahuye n'ikibazo nk'icyo ku butaka bwe.
**“nkabibwira na Minisitiri wIntebe wa Espagne, na we uri mu batavuga rumwe nibyo. None se reba: kuko bo nta kibazo nkicyo bafite kibugarije, biroroha kuvuga ko ibyo Israel ikora atari byo.”**
Dr. José Benjamín Pérez Matos yakomeje ashimangira ko Israel ifite impamvu yo guhagarika Iran gukomeza gahunda zayo za kirimbuzi, kuko kubireka byatera akaga gakomeye ku kubaho kwa Leta ya Israel.
Mu gusoza, Dr. José Benjamín Pérez Matos yongeyeho ashimangira ko Israel ifite umwanya wihariye mu masezerano no mu buhanuzi bwa Bibiliya, kandi avuga ko nta gihugu na kimwe kizashobora kuyisenya. Ubutumwa bwe bwarangiriye ku magambo yo gusabira umugisha no kwifuza ko ibikorwa biteganyijwe muri iyi minsi yo ku butaka butagatifu byagira uruhare mu guteza imbere Ubwami bwa Mesiya.
**“Uwo ari we wese uri ku ruhande rwamasezerano nubuhanuzi: aba ari ku ruhande rwImana, yiteka; kuko Israel nta gihugu na kimwe kizashobora kuyisenya!”**
“Kandi rero, muri iyi minsi twiteze imigisha myinshi yUwiteka; kandi ibyo byose bizakorwa muri iyi minsi bibe iminsi yo guteza imbere Ubwami bwa Mesiya, no kugira ngo ibijyanye nubwo Bwami bigire intambwe ikomeye. Imana ibahe umugisha, ibarinde mwese.”

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.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.",
@ -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
},
@ -62,7 +59,7 @@
}
],
"info.copy1": "<b>מרכז הממלכה לשלום וצדק </b>הוא ארגון בינלאומי המוקדש להכשרה, דיאלוג אסטרטגי ופעולה ציבורית, שמטרתו קידום צדק ושלום לפי הערכים הנצחיים שעליהם הכריזו הנביאים, עם מחויבות ברורה ומתמשכת לישראל ומקומה המרכזי בהיסטוריה ובעתיד העולם.",
"info.copy_column1": "המרכז מוביל יוזמות חינוכיות, פלטפורמות של חשיבה מעמיקה ופעולות ממשיות בזירה הציבורית, תוך הטמעת עקרונות רוחניים, אחריות מוסדית ומנהיגות מוסרית. פועילותו מתקיימת במסגרת <b>הדיפלומטיה הציבורית,</b> ככלי לגיטימי לעיצוב השיח העולמי, לחיזוק הקשרים בין מדינות ולהגנה על ערכי יסוד מול אתגרי ההווה והעתיד.",
"info.copy_column1": "המרכז מוביל יוזמות חינוכיות, פלטפורמות של חשיבה מעמיקה ופעולות ממשיות בזירה הציבורית, תוך הטמעת עקרונות רוחניים, אחריות מוסדית ומנהיגות מוסרית. פעילותו מתקיימת במסגרת <b>הדיפלומטיה הציבורית,</b> ככלי לגיטימי לעיצוב השיח העולמי, לחיזוק הקשרים בין מדינות ולהגנה על ערכי יסוד מול אתגרי ההווה והעתיד.",
"info.copy_column2": "השלום אינו נתפס כסיסמה מופשטת או כאידיאל נאיבי, אלא כתוצאה מהחלטות מוצקות, מנהיגות ערכית ומחויבות מתמשכת למטרות ברורות, המכירות בתפקידה חסר התחליף של ישראל בבניית סדר צודק ויציב לכלל האנושות.",
"info.endbox": {
"title": "ייעוד, חזון וערכים",
@ -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,51 +134,39 @@
"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.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> <li>יסודות לבניית שלום יציב ומתמשך, בדגש על ישראל.</li>",
"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": "עבודת המרכז מתחזקת עם השתתפותם של אנשים ומוסדות החולקים ערכים ומטרות כלליות משותפות.",
@ -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",

View File

@ -1,27 +1,22 @@
---
import BaseHead from "../components/BaseHead.astro";
import Footer from "../components/Footer.astro";
import "../styles/global.css";
import "@fontsource/poppins/100.css";
import "@fontsource/poppins/400.css";
import "@fontsource/poppins/500.css";
import "@fontsource/poppins/700.css";
import "@fontsource-variable/kameron";
import ShareSticky from "../components/ShareSticky.vue";
import ShareSticky from "../components/ShareSticky.vue";
import { routeTranslations } from "../i18n";
const {
title,
description,
image,
url,
date
} = Astro.props;
const { title, description, image, url, date } = Astro.props;
const currentLocale = Astro.currentLocale ?? 'es';
const direction = currentLocale === 'he' ? 'rtl' : 'ltr';
const currentLocale = Astro.currentLocale ?? "es";
const direction = currentLocale === "he" ? "rtl" : "ltr";
const newsSegments = Object.values(routeTranslations.news);
const isNewsPage = newsSegments.some(segment => Astro.url.pathname.includes(`/${segment}/`));
const isNewsPage = newsSegments.some((segment) =>
Astro.url.pathname.includes(`/${segment}/`)
);
---
<html lang={currentLocale} dir={direction} class="scroll-smooth">
@ -33,18 +28,15 @@ const isNewsPage = newsSegments.some(segment => Astro.url.pathname.includes(`/${
date={date}
/>
<script>
document.addEventListener('contextmenu', (event) => {
document.addEventListener("contextmenu", (event) => {
const target = event.target as HTMLElement;
if (target.tagName === 'IMG') {
if (target.tagName === "IMG") {
event.preventDefault();
}
});
</script>
<body class="font-primary">
{isNewsPage && (
<ShareSticky client:only url={Astro.url.href} />
)}
{isNewsPage && <ShareSticky client:only url={Astro.url.href} />}
<slot />
<Footer />
</body>
</html>