Merge branch 'main' into videos_section
This commit is contained in:
commit
803057c51e
|
|
@ -12,7 +12,7 @@ import react from "@astrojs/react";
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
vite: {
|
vite: {
|
||||||
plugins: [tailwindcss()],
|
plugins: [tailwindcss()],
|
||||||
},
|
},
|
||||||
site: "https://centrodelreinodepazyjusticia.com/",
|
site: "https://centrodelreinodepazyjusticia.com/",
|
||||||
//base: '/mockup/',
|
//base: '/mockup/',
|
||||||
|
|
@ -20,12 +20,12 @@ export default defineConfig({
|
||||||
integrations: [markdoc(), icon(), vue(), react()],
|
integrations: [markdoc(), icon(), vue(), react()],
|
||||||
|
|
||||||
i18n: {
|
i18n: {
|
||||||
locales: ["es", "en", "fr", "he", "uk", "pt", "ru", "rw"],
|
locales: ["es", "en", "fr", "he", "uk", "pt", "ru", "rw", "kr"],
|
||||||
defaultLocale: "es",
|
defaultLocale: "es",
|
||||||
},
|
},
|
||||||
|
|
||||||
image: {
|
image: {
|
||||||
domains: ['placehold.co','ik.imagekit.io','picsum.photos'],
|
domains: ['placehold.co', 'ik.imagekit.io', 'picsum.photos'],
|
||||||
service: imageService(),
|
service: imageService(),
|
||||||
},
|
},
|
||||||
output: "server",
|
output: "server",
|
||||||
|
|
|
||||||
|
|
@ -12,16 +12,17 @@ const currentLocale = Astro.currentLocale;
|
||||||
const currentPath = Astro.url.pathname;
|
const currentPath = Astro.url.pathname;
|
||||||
|
|
||||||
function translatePath(newLocale: string) {
|
function translatePath(newLocale: string) {
|
||||||
const segments = currentPath.split('/').filter(Boolean);
|
const segments = currentPath.split("/").filter(Boolean);
|
||||||
|
|
||||||
if (segments.length === 0) return `/${newLocale}`;
|
if (segments.length === 0) return `/${newLocale}`;
|
||||||
|
|
||||||
const remainingSegments = segments.slice(1);
|
const remainingSegments = segments.slice(1);
|
||||||
const newsRouteNames = Object.values(routeTranslations.news);
|
const newsRouteNames = Object.values(routeTranslations.news);
|
||||||
|
|
||||||
const translatedSegments = remainingSegments.map(segment => {
|
const translatedSegments = remainingSegments.map((segment) => {
|
||||||
for (const key in routeTranslations) {
|
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)) {
|
if (Object.values(translations).includes(segment)) {
|
||||||
return translations[newLocale as keyof typeof translations] || segment;
|
return translations[newLocale as keyof typeof translations] || segment;
|
||||||
}
|
}
|
||||||
|
|
@ -32,47 +33,62 @@ function translatePath(newLocale: string) {
|
||||||
// Lógica para noticias
|
// Lógica para noticias
|
||||||
if (segments.length >= 2 && newsRouteNames.includes(segments[1])) {
|
if (segments.length >= 2 && newsRouteNames.includes(segments[1])) {
|
||||||
const isDetail = segments.length >= 3;
|
const isDetail = segments.length >= 3;
|
||||||
|
|
||||||
if (isDetail) {
|
if (isDetail) {
|
||||||
const currentId = segments[segments.length - 1];
|
const currentId = segments[segments.length - 1];
|
||||||
const baseId = currentId.split('/').pop();
|
const baseId = currentId.split("/").pop();
|
||||||
|
|
||||||
const exists = allNews.some(post =>
|
const exists = allNews.some(
|
||||||
post.id.endsWith(baseId!) && post.data.locale === newLocale
|
(post) => post.id.endsWith(baseId!) && post.data.locale === newLocale
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!exists) {
|
if (!exists) {
|
||||||
// Redirigir al home de noticias si no existe la traducción
|
// Redirigir al home de noticias si no existe la traducción
|
||||||
return `/${newLocale}/${translatedSegments[0]}`;
|
return `/${newLocale}/${translatedSegments[0]}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reconstruir ID con el nuevo locale
|
// Reconstruir ID con el nuevo locale
|
||||||
const newId = `${newLocale}/${baseId}`;
|
const newId = `${newLocale}/${baseId}`;
|
||||||
return `/${newLocale}/${translatedSegments[0]}/${newId}`;
|
return `/${newLocale}/${translatedSegments[0]}/${newId}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return `/${[newLocale, ...translatedSegments].join('/')}`;
|
return `/${[newLocale, ...translatedSegments].join("/")}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { locale } = Astro.params;
|
const { locale } = Astro.params;
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div class="flex justify-between px-8 md:px-0 md:py-4">
|
<div class="flex justify-between px-8 md:px-0 md:py-4">
|
||||||
<div class="border-l-4 border-colorPrimary pl-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">
|
<p
|
||||||
<a href={`/${currentLocale}`}>{tl("nav.logo_line1")}<br/>{tl("nav.logo_line2")}</a>
|
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>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<nav
|
<nav
|
||||||
class="flex justify-evenly gap-10 items-center uppercase text-md text-white"
|
class="flex justify-evenly gap-10 items-center uppercase text-md text-white"
|
||||||
>
|
>
|
||||||
<div class="hidden md:flex gap-8 font-primary font-bold">
|
<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
|
||||||
<a class="hover:text-colorPrimary transition" href={`/${currentLocale}#programs`}>{tl("nav.programs")}</a>
|
class="hover:text-colorPrimary transition"
|
||||||
<a class="hover:text-colorPrimary transition" href={`/${currentLocale}#news`}>{tl("nav.news")}</a>
|
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}/archive`}>{tl("nav.archive")}</a>
|
||||||
<a class="hover:text-colorPrimary transition" href={`/${currentLocale}/nations`}>{tl("nav.nations")}</a> -->
|
<a class="hover:text-colorPrimary transition" href={`/${currentLocale}/nations`}>{tl("nav.nations")}</a> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -80,56 +96,162 @@ const { locale } = Astro.params;
|
||||||
<input id="my-drawer-1" type="checkbox" class="drawer-toggle" />
|
<input id="my-drawer-1" type="checkbox" class="drawer-toggle" />
|
||||||
<div class="drawer-content">
|
<div class="drawer-content">
|
||||||
<!-- Page content here -->
|
<!-- 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>
|
||||||
<div class="drawer-side">
|
<div class="drawer-side">
|
||||||
<label for="my-drawer-1" aria-label="close sidebar" class="drawer-overlay"></label>
|
<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">
|
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 -->
|
<!-- Sidebar content here -->
|
||||||
<div class="flex gap-2 justify-center items-center mb-8 mt-8">
|
<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" />
|
<img
|
||||||
<p class="font-secondary text-colorPrimary font-bold leading-none py-2 text-lg ">
|
class="w-1/3 object-contain"
|
||||||
<a href="/">{tl("nav.logo_line1")}<br/>{tl("nav.logo_line2")}</a>
|
src="/img/logo-metalico.webp"
|
||||||
</p>
|
alt="Logo Centro del Reino de Paz y Justicia"
|
||||||
|
/>
|
||||||
</div>
|
<p
|
||||||
|
class="font-secondary text-colorPrimary font-bold leading-none py-2 text-lg"
|
||||||
<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>
|
<a href="/"
|
||||||
<li><a class="hover:text-colorPrimary transition" href="#programs">{tl("nav.programs")}</a></li>
|
>{tl("nav.logo_line1")}<br />{tl("nav.logo_line2")}
|
||||||
<li><a class="hover:text-colorPrimary transition" href="#news">{tl("nav.news")}</a></li>
|
</a>
|
||||||
</ul>
|
</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">
|
<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>
|
||||||
<div class="dropdown mt-10">
|
<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>
|
<div
|
||||||
<ul tabindex="-1" class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm">
|
tabindex="0"
|
||||||
<li><a href={translatePath("es")}><Icon name="icon_flag_es" /> Español</a></li>
|
role="button"
|
||||||
<li><a href={translatePath("en")}><Icon name="icon_flag_uk" /> English</a></li>
|
class="btn-ghost m-1 cursor-pointer"
|
||||||
<li><a href={translatePath("he")}><Icon name="flagpack--il" /> עברית</a></li>
|
>
|
||||||
<li><a href={translatePath("pt")}><Icon name="flagpack--br" /> Português</a></li>
|
<Icon name="ph:translate" class="text-2xl" />
|
||||||
<li><a href={translatePath("fr")}><Icon name="flagpack--fr" /> Français</a></li>
|
</div>
|
||||||
<li><a href={translatePath("ru")}><Icon name="flagpack--ru" /> Русский</a></li>
|
<ul
|
||||||
<li><a href={translatePath("rw")}><Icon name="flagpack--rw" /> Kinyarwanda</a></li>
|
tabindex="-1"
|
||||||
</ul>
|
class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm"
|
||||||
</div>
|
>
|
||||||
|
<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>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="w-50 hidden md:block">
|
<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>
|
||||||
<div class="dropdown dropdown-end lg:block hidden">
|
<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>
|
<div tabindex="0" role="button" class="btn-ghost m-1 cursor-pointer">
|
||||||
<ul tabindex="-1" class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm">
|
<Icon name="ph:translate" class="text-2xl" />
|
||||||
<li><a href={translatePath("es")}><Icon name="icon_flag_es" /> Español</a></li>
|
</div>
|
||||||
<li><a href={translatePath("en")}><Icon name="icon_flag_uk" /> English</a></li>
|
<ul
|
||||||
<li><a href={translatePath("he")}><Icon name="flagpack--il" /> עברית</a></li>
|
tabindex="-1"
|
||||||
<li><a href={translatePath("pt")}><Icon name="flagpack--br" /> Português</a></li>
|
class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm"
|
||||||
<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>
|
||||||
<li><a href={translatePath("rw")}><Icon name="flagpack--rw" /> Kinyarwanda</a></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>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
||||||
|
|
@ -19,19 +19,38 @@ const isHebrew = Astro.currentLocale === "he";
|
||||||
<h4
|
<h4
|
||||||
class="text-lg text-center font-bold uppercase"
|
class="text-lg text-center font-bold uppercase"
|
||||||
set:html={tl("footer.title")}
|
set:html={tl("footer.title")}
|
||||||
/>
|
>
|
||||||
|
</h4>
|
||||||
<h2
|
<h2
|
||||||
class="text-2xl lg:text-5xl text-center font-bold font-secondary my-8"
|
class="text-2xl lg:text-5xl text-center font-bold font-secondary my-8"
|
||||||
set:html={tl("footer.subtitle")}
|
set:html={tl("footer.subtitle")}
|
||||||
/>
|
>
|
||||||
|
</h2>
|
||||||
|
|
||||||
<div class="px-12 lg:px-4 lg:w-2/5 mx-auto">
|
<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
|
<p
|
||||||
class="text-lg font-light mb-10 break-words"
|
class="text-lg font-light mb-10 break-words"
|
||||||
set:html={tl("footer.text2")}
|
set:html={tl("footer.text2")}
|
||||||
/>
|
>
|
||||||
|
</p>
|
||||||
|
|
||||||
<FormContact client:load locale={Astro.currentLocale} />
|
<FormContact client:load locale={Astro.currentLocale} />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -98,25 +98,31 @@ const handleSubmit = async (e) => {
|
||||||
<ul class="flex flex-row gap-2">
|
<ul class="flex flex-row gap-2">
|
||||||
<li class="border-r pr-2">
|
<li class="border-r pr-2">
|
||||||
<a href="https://x.com/CRPazYJusticia" target="_blank">
|
<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>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="border-r pr-2">
|
<li class="border-r pr-2">
|
||||||
<a href="https://www.instagram.com/centrodelreinodepazyjusticia/" target="_blank">
|
<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>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="border-r pr-2">
|
<li class="border-r pr-2">
|
||||||
<a href="https://www.facebook.com/Centrodelreinodepazyjusticia" target="_blank">
|
<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>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://www.youtube.com/@CentrodelReinodePazyJusticia" target="_blank">
|
<a href="https://t.me/CentroRPJ" target="_blank">
|
||||||
<Icon icon="ph:youtube-logo-thin" class="text-3xl" />
|
<Icon icon="ph:telegram-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ date: 2025-09-05
|
||||||
place: The basement
|
place: The basement
|
||||||
city: Jacareí
|
city: Jacareí
|
||||||
country: BR
|
country: BR
|
||||||
tags: [Brasil]
|
tags: [Brazil]
|
||||||
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2025-09-04-19.53.04.jpg?updatedAt=1770780193361
|
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2025-09-04-19.53.04.jpg?updatedAt=1770780193361
|
||||||
gallery: [
|
gallery: [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
country: 'PR'
|
country: 'PR'
|
||||||
city: 'Cayey'
|
city: 'Cayey'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_12-42-30.jpg'
|
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: [
|
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',
|
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_12-42-30.jpg',
|
||||||
|
|
|
||||||
|
|
@ -35,13 +35,13 @@ The analysis acknowledges the historical upheavals of the Jewish people—includ
|
||||||
|
|
||||||
For Dr. José Benjamín Pérez Matos, Israel’s 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.
|
For Dr. José Benjamín Pérez Matos, Israel’s 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.
|
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
|
## 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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,13 +19,13 @@ gallery: [
|
||||||
|
|
||||||
*Jerusalem, Israel – December 17, 2024*
|
*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:
|
||||||
|
|
||||||
“It’s 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.
|
> **“It’s 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.”
|
> **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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ country: 'US'
|
||||||
state: 'Illinois'
|
state: 'Illinois'
|
||||||
city: 'Chicago'
|
city: 'Chicago'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-37.jpg'
|
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: [
|
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',
|
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-37.jpg',
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ slug: 2025-05-07-india-and-pakistan-on-the-brink-of-major-escalation-global-aler
|
||||||
city: 'Bogotá'
|
city: 'Bogotá'
|
||||||
state: 'Distrito Capital'
|
state: 'Distrito Capital'
|
||||||
country: 'CO'
|
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
|
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-08_21-54-54.jpg
|
||||||
gallery: [
|
gallery: [
|
||||||
{
|
{
|
||||||
|
|
@ -17,7 +17,7 @@ gallery: [
|
||||||
|
|
||||||
## India and Pakistan on the Brink of Major Escalation: Global Alert Over a Conflict Reshaping the Geopolitical Balance
|
## 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.***
|
***From Bogotá, an assessment warns of an international scenario of upheaval marked by military tensions, institutional fragility, and signs of a systemic crisis.***
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ country: 'MX'
|
||||||
city: 'Monterrey'
|
city: 'Monterrey'
|
||||||
state: 'Nuevo León'
|
state: 'Nuevo León'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-13.jpg'
|
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: [
|
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',
|
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-13.jpg',
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
country: 'PR'
|
country: 'PR'
|
||||||
city: 'Cayey'
|
city: 'Cayey'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
||||||
tags: [Puerto Rico, Israel, Irán]
|
tags: [Puerto Rico, Israel, Iran]
|
||||||
gallery: [
|
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/comunicado-1.webp',
|
||||||
|
|
|
||||||
|
|
@ -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.
|
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 **“don’t know the history or the promises”** that support Israel’s existence and sovereignty, highlighting a gap between global perceptions and what he considers to be the conflict’s structural reality.
|
Along those lines, he maintained that many of these sectors **“don’t know the history or the promises” that support Israel’s** existence and sovereignty, highlighting a gap between global perceptions and what he considers to be the conflict’s 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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ gallery: [
|
||||||
|
|
||||||
*Cayey, Puerto Rico – June 18, 2025*
|
*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 Israel’s 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 Israel’s 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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ gallery: [
|
||||||
---
|
---
|
||||||
*Bnei Brak, Israel – July 3, 2025*
|
*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 school’s infrastructure but also impacted nearby homes and other buildings.
|
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 school’s 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. That’s their target,”** drawing a clear distinction from Israel’s operational doctrine, adding: **“Israel warns in advance so that people can leave before attacking terrorist targets, but their attackers don’t do the same; they strike wherever it lands, and their targets are students.”**
|
In this context, he emphasized: **“Here a school for special needs children was struck. That’s their target,”** drawing a clear distinction from Israel’s operational doctrine, adding: **“Israel warns in advance so that people can leave before attacking terrorist targets, but their attackers don’t 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
|
## 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 don’t 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 don’t 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? That’s 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.
|
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? That’s 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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
slug: 2025-07-06-strategic-alliance-in-jerusalem-panamas-ambassador-supports-dr-jose-benjamin-perez-matos-mission
|
||||||
place: ''
|
place: ''
|
||||||
country: 'IL'
|
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'
|
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: [
|
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',
|
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: Panama’s Ambassador Supports Dr. José Benjamín Pérez Matos’ Mission
|
# Strategic Alliance in Jerusalem: Panama’s 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 Panama’s Ambassador to Israel, in an engagement that strengthened his diplomatic position and broadened his network of support in the region.
|
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 Panama’s 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 leader’s 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 leader’s 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
|
## Fundamentals of Action: A Structured Vision for Israel and Global Peace
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
slug: 2025-07-07-meeting-in-jerusalem-rabbi-eliahu-birnbaum-highlights-the-spiritual-dimension-of-dr-jose-benjamin-perez-matos-mission-amid-war
|
||||||
place: ''
|
place: ''
|
||||||
country: 'IL'
|
country: 'IL'
|
||||||
city: 'Jerusalén'
|
city: 'Jerusalem'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/2026-05-09 13.24.43.jpg'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/2026-05-09 13.24.43.jpg'
|
||||||
tags: [Israel]
|
tags: [Israel]
|
||||||
gallery: [
|
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
|
# 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.
|
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 don’t 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.
|
In this context, he stated: **“You don’t 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
|
## A New Stage in the Historical Narrative of Israel
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,12 +14,10 @@ gallery: [
|
||||||
tags: [Puerto Rico, Israel, Gaza]
|
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*
|
*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 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
|
## 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.
|
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
|
## 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 high‑level contacts that were not originally planned.
|
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 high‑level 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.
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
||||||
country: 'PR'
|
country: 'PR'
|
||||||
city: 'Cayey'
|
city: 'Cayey'
|
||||||
tags: [Puerto Rico, Israel, Irán]
|
tags: [Puerto Rico, Israel, Iran]
|
||||||
gallery: [
|
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/comunicado-1.webp',
|
||||||
|
|
@ -17,7 +17,7 @@ gallery: [
|
||||||
|
|
||||||
# Gaza Under the Magnifying Glass: Media Manipulation and Judgment Warning for Nations that Oppose Israel
|
# 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 Israel’s right to self-defense following the escalation of attacks beginning on October 7, 2023.
|
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 Israel’s right to self-defense following the escalation of attacks beginning on October 7, 2023.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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',
|
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
|
# Water Crisis In Iran: Israel Offers Conditional Cooperation Tied to a Strategic Shift in the Middle East
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ city: 'Monterrey'
|
||||||
state: 'Nuevo León'
|
state: 'Nuevo León'
|
||||||
date: 2025-09-27
|
date: 2025-09-27
|
||||||
slug: '2025-09-27-venezuela-in-the-spotlight-dr-jose-benjamin-perez-warns-of-possible-intervention-amid-global-realignment'
|
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'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-32.jpg'
|
||||||
gallery: [
|
gallery: [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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. It’s not for no reason that they will receive judgment.”**
|
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. It’s 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 region’s future. In that context, he said: “Spain… now that president is saying what he’s 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 region’s future. In that context, he said: **“Spain… now that president is saying what he’s 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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
country: 'IL'
|
country: 'IL'
|
||||||
city: 'Jerusalém'
|
city: 'Jerusalém'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
||||||
tags: [Israel, 'Bolívia', 'Argentina']
|
tags: [Israel, 'Bolivia', 'Argentina']
|
||||||
gallery: [
|
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/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***
|
***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 world’s 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.
|
In an address delivered from one of the world’s 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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
country: 'PE'
|
country: 'PE'
|
||||||
city: 'Lima'
|
city: 'Lima'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
||||||
tags: ['Israel', 'Perú', 'Irán']
|
tags: ['Israel', 'Peru', 'Iran']
|
||||||
gallery: [
|
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/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.***
|
***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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
country: 'PE'
|
country: 'PE'
|
||||||
city: 'Lima'
|
city: 'Lima'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-09.jpg'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-09.jpg'
|
||||||
tags: [Israel, 'Perú']
|
tags: [Israel, 'Peru']
|
||||||
gallery: [
|
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',
|
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.**_
|
_**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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
country: 'PE'
|
country: 'PE'
|
||||||
city: 'Lima'
|
city: 'Lima'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-37-03.jpg'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-37-03.jpg'
|
||||||
tags: [Israel, 'Perú']
|
tags: [Israel, 'Peru']
|
||||||
gallery: [
|
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',
|
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.***
|
***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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.***
|
***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.
|
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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -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***
|
***Analysis from Puerto Rico warns of coordinated attacks, regional retaliation, and the risk of a global military escalation***
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ gallery: [
|
||||||
|
|
||||||
# Remarks for International Women’s Day, dedicated to the Women of the Israeli Defense Forces
|
# Remarks for International Women’s Day, dedicated to the Women of the Israeli Defense Forces
|
||||||
|
|
||||||
*March 8, 2026*
|
*Cayey, Puerto Rico – March 8, 2026*
|
||||||
|
|
||||||
This International Women’s Day, I want to congratulate every woman who wears the uniform of the Israeli army.
|
This International Women’s Day, I want to congratulate every woman who wears the uniform of the Israeli army.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ tags: [Puerto Rico, Israel]
|
||||||
|
|
||||||
*Cayey, Puerto Rico – April 18, 2025*
|
*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:
|
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:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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:
|
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:
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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]
|
tags: [Venezuela, Puerto Rico]
|
||||||
gallery: [
|
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:
|
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:
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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:
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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:
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
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
|
## 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.
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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”**.
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.***
|
***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.
|
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.
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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”.**
|
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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -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:
|
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
|
### Francia en la misma trayectoria
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ gallery: [
|
||||||
|
|
||||||
*Cayey, Puerto Rico – 15 de abril de 2026*
|
*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
|
### 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».
|
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
|
### 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».
|
||||||
|
|
|
||||||
|
|
@ -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*
|
*San Salvador, El Salvador – 26 de abril de 2026*
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
country: 'PR'
|
country: 'PR'
|
||||||
city: 'Cayey'
|
city: 'Cayey'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
||||||
tags: [Israel, Porto Rico]
|
tags: [Israel]
|
||||||
gallery: [
|
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/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:
|
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:
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ gallery: [
|
||||||
|
|
||||||
*Cayey, Porto Rico – 8 de outubro de 2024*
|
*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.
|
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!…»**.
|
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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
country: 'PR'
|
country: 'PR'
|
||||||
city: 'Cayey'
|
city: 'Cayey'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_18-21-03.jpg'
|
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: [
|
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',
|
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
|
# 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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
country: 'PR'
|
country: 'PR'
|
||||||
city: 'Cayey'
|
city: 'Cayey'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
||||||
tags: [Puerto Rico, Israel]
|
tags: [Porto Rico, Israel]
|
||||||
gallery: [
|
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/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:
|
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.
|
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:
|
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:
|
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:
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
locale: pt
|
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 '
|
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
|
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: ''
|
place: ''
|
||||||
country: 'PR'
|
country: 'PR'
|
||||||
city: 'Cayey'
|
city: 'Cayey'
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ place: ''
|
||||||
country: 'PR'
|
country: 'PR'
|
||||||
city: 'Cayey'
|
city: 'Cayey'
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
||||||
tags: [Puerto Rico, Israel]
|
tags: [Porto Rico, Israel]
|
||||||
gallery: [
|
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/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
|
## 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.
|
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
|
## 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.
|
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.**
|
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.
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ gallery: [
|
||||||
|
|
||||||
*Jerusalém, Israel – 3 de julho de 2025*
|
*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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
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”.
|
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.
|
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.
|
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
|
## 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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
locale: pt
|
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'
|
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
|
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]
|
tags: [Geopolítica, Israel, Porto Rico, Espanha, Venezuela, Nicarágua, Cuba]
|
||||||
coutry: 'PR'
|
coutry: 'PR'
|
||||||
city: Cayey
|
city: Cayey
|
||||||
|
|
|
||||||
|
|
@ -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.
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
## “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.
|
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
|
## 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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,11 @@ slug: 2025-11-30-jerusalem-como-capital-global-impulsionam-a-transferencia-de-em
|
||||||
place: ''
|
place: ''
|
||||||
country: 'PR'
|
country: 'PR'
|
||||||
city: 'Cayey'
|
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]
|
tags: [Porto Rico]
|
||||||
gallery: [
|
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',
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -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***
|
***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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -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.***
|
***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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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***
|
***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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ gallery: [
|
||||||
|
|
||||||
*Cayey, Porto Rico – 6 de janeiro de 2026*
|
*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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.***
|
***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.
|
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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -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**
|
**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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -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**
|
**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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.**
|
**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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ gallery: [
|
||||||
|
|
||||||
# Palavras de encerramento do III Congresso de Rabinos Internacional
|
# 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_
|
_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.
|
Sejam todos muito bem-vindos a este III Encontro de Rabinos Internacional, aqui na Grande Carpa (“Tenda”), em Cayey, Porto Rico.
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ gallery: [
|
||||||
|
|
||||||
# **Quatro anos de guerra na Ucrânia: memória, justiça e responsabilidade internacional**
|
# **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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
||||||
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 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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ tags: [Israel]
|
||||||
|
|
||||||
# Palavras pelo Dia Internacional da Mulher, dirigidas às mulheres das forças militares de 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.
|
Neste Dia Internacional da Mulher, quero felicitar cada uma das mulheres que vestem o uniforme do exército de Israel.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.**
|
**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*
|
*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.
|
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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ gallery: [
|
||||||
|
|
||||||
*Cayey, Porto Rico – 11 de abril de 2026*
|
*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.
|
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.
|
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.
|
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:
|
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».**
|
**«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 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.**
|
**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.**
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,11 +20,11 @@ gallery: [
|
||||||
|
|
||||||
*Tel Aviv, Israel – 14 de maio de 2026*
|
*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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.»**
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,43 @@
|
||||||
|
---
|
||||||
|
locale: rw
|
||||||
|
title: 'Ibimenyetso by’impinduka ku rwego rw’isi: imiburo yerekeye Israel n’imihindagurikire y’ikirere 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 by’impinduka ku rwego rw’isi: imiburo yerekeye Israel n’imihindagurikire y’ikirere mu Burasirazuba bwo Hagati
|
||||||
|
|
||||||
|
*Cayey, Puerto Rico – 27 Nyakanga 2023*
|
||||||
|
|
||||||
|
Dr. José Benjamín Pérez Matos yatanze isesengura ryimbitse ku bikorwa n’ibintu bitandukanye avuga ko bigaragaza impinduka zikomeye mu mateka y’ikiremwamuntu. Mu magambo ye, yibanze cyane ku bibazo biri imbere muri Israel ndetse no ku mihindagurikire ikabije y’ikirere iri kugaragara mu Burasirazuba bwo Hagati, agaragaza ko ibyo byose bifitanye isano nk’ibimenyetso by’impinduka nini iri kuba ku isi.
|
||||||
|
|
||||||
|
Dr. José Benjamín Pérez Matos yavuze ko ibyo bibazo bitagomba gufatwa nk’ibintu byabaye mu buryo bwihariye cyangwa bitandukanye, ahubwo ko ari igice cy’igihe 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 by’imvururu n’umwuka mubi mu baturage, harimo imyigaragambyo n’amakimbirane 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 n’ibindi, ibintu bitigeze bibaho muri Israel muri iyi minsi.”**
|
||||||
|
|
||||||
|
Isesengura rye ryagarutse kandi ku kibazo cy’imihindagurikire y’ikirere, cyane cyane ubushyuhe bukabije bwagaragaye muri Iran, abufata nk’ikimenyetso cyangwa umuburo w’ibibazo 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 nk’ibyo; 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 y’abaturage n’imihindagurikire y’ikirere bifatwa nk’ibifitanye isano mu buryo bumwe bwo kubisobanura.
|
||||||
|
|
||||||
|
Muri uwo murongo, yasabye abantu gukurikiranira hafi izi mpinduka, avuga ko ari igice cy’impinduka nini kandi zishingiye ku miterere mishya y’isi, zizagira ingaruka ku bantu bose ku rwego rw’isi.
|
||||||
|
|
@ -0,0 +1,40 @@
|
||||||
|
---
|
||||||
|
locale: rw
|
||||||
|
title: 'Impuruza ya dipolomasi muri Amerika y’Epfo: 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 y’Epfo: 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 y’Epfo, 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 by’umwuka mubi wa politiki nyuma y’ibyabaye 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 y’Epfo 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 — nk’uko yabisesenguye — hari kugeragezwa guhindura uruhare rw’impande ziri mu makimbirane. Yavuze ko hari inkuru zubakwa zerekana Israel nk’umunyabyaha cyangwa umuterankunga w’intambara, bikirengagiza inkomoko y’amakimbirane.
|
||||||
|
|
||||||
|
Dr. José Benjamín Pérez Matos yanagaragaje impungenge ku mpinduka za dipolomasi zari zitangiye kugaragara muri Amerika y’Epfo, cyane cyane nyuma y’icyemezo cya Bolivia cyo guhagarika umubano na Israel. Kuri iyo ngingo yavuze ati: **“Nabonye ko Bolivia, kandi ntekereza ko hari n’ikindi gihugu cyari kigiye guhagarika umubano na Israel; sinzi niba byaramaze gukorwa. Binjiye mu kibazo gikomeye cyane!”**
|
||||||
|
|
||||||
|
Nyuma y’uko 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 n’ingaruka 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 y’ububanyi n’amahanga 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 y’Epfo itababara kandi itazahura n’ingaruka 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 n’ibyemezo byabyo byo guhamagaza bambasaderi babyo bari muri Israel kugira ngo zigire inama na za Guverinoma zazo. Dr. José Benjamín Pérez Matos yabifashe nk’ikimenyetso cy’icyerekezo cya dipolomasi kiri gukwira mu karere, kandi ku bwe, ibyo bishobora guterwa n’igitutu mpuzamahanga kiri hanze y’akarere.
|
||||||
|
|
||||||
|
Mu buryo yabibonaga, iyi myitwarire y’ibihugu ishobora gutuma habaho ingaruka zikomeye ku bihugu biyifata. Yanaburiye ko uruhererekane rw’ibi byemezo bya dipolomasi rushobora guteza umwuka mubi no kongera umutekano muke muri Amerika y’Epfo.
|
||||||
|
|
||||||
|
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 n’inyungu z’akarere ka Amerika y’Epfo muri rusange.
|
||||||
|
|
@ -0,0 +1,38 @@
|
||||||
|
---
|
||||||
|
locale: rw
|
||||||
|
title: 'Ubwiyongere bw’amakimbirane hagati ya Iran na Israel: hatanzwe imiburo ku mpinduka zikomeye zishobora kuba ku rwego rw’isi'
|
||||||
|
date: 2024-04-13
|
||||||
|
slug: 2024-04-13-ubwiyongere-bw’amakimbirane-hagati-ya-iran-na-israel-hatanzwe-imiburo-ku-mpinduka-zikomeye-zishobora-kuba-ku-rwego-rw’isi
|
||||||
|
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 bw’amakimbirane hagati ya Iran na Israel: hatanzwe imiburo ku mpinduka zikomeye zishobora kuba ku rwego rw’isi
|
||||||
|
|
||||||
|
*Cayey, Puerto Rico – 13 Mata 2024*
|
||||||
|
|
||||||
|
Mu masaha ashize, isi yongeye guhura n’ihinduka rikomeye nyuma y’igitero Iran yagabye kuri Israel, ibintu byateje impungenge ku rwego mpuzamahanga kubera ubwiyongere bw’umwuka mubi wa gisirikare. Kuri icyo kibazo, Dr. José Benjamín Pérez Matos yavugiye muri La Gran Carpa Catedral, atanga isesengura ry’ibi bibazo mu buryo bwa politiki mpuzamahanga ndetse no mu rwego rw’ubuhanuzi.
|
||||||
|
|
||||||
|
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 n’ibindi bitero byo mu kirere, kandi nk’uko amakuru yabivugaga, byari kugera mu gihe cy’isaha imwe, isaha n’igice cyangwa amasaha abiri.”**
|
||||||
|
|
||||||
|
Mu butumwa bwe, yanagaragaje uruhare rw’amateka y’Uburasirazuba bwo Hagati nk’ahantu hakunze kuberamo amakimbirane mpuzamahanga, ashimangira ko intambara zikunze kongera kugaruka muri ako karere.
|
||||||
|
|
||||||
|
Yagize ati: **“Kandi tuzi neza ko buri gihe ubwoko bw’Abaheburayo bwagiye buba muri izi ntambara… kuko nimurebe, intandaro y’ibi bibazo ihora iri mu Burasirazuba bwo Hagati. Kandi tuzi ko igihe icyo ari cyo cyose Intambara ya Gatatu y’Isi ishobora gutangira.”**
|
||||||
|
|
||||||
|
Dr. José Benjamín Pérez Matos yanavuze ko ibi bibazo biri kuba ari igice cy’impinduka nini iri kuba ku isi, ihuzwa n’igihe cy’inzibacyuho gifite ibisobanuro by’amateka ndetse n’iby’umwuka.
|
||||||
|
|
||||||
|
Yagize ati: **“Hari isezerano rya Israel, aho Intebe ya Dawidi izasubizwaho; kandi kugira ngo ibyo bibeho, hari uruhererekane rw’ibintu bizabaho muri izi mpinduka z’ubwami, kuva mu bwami bw’abanyamahanga 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 n’umuhamagaro 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 n’akamaro k’akarere k’Uburasirazuba bwo Hagati mu rwego rw’inyungu za politiki mpuzamahanga, aho buri cyemezo cyangwa buri gikorwa gishobora kugira ingaruka ku isi yose.
|
||||||
|
|
@ -0,0 +1,34 @@
|
||||||
|
---
|
||||||
|
locale: rw
|
||||||
|
title: 'Ubutumwa bwo gushyigikira Israel mu bihe bikomeye: inkunga n’umuhamagaro 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 n’umuhamagaro wo kugira ubwenge
|
||||||
|
|
||||||
|
*Cayey, Puerto Rico – 15 Mata 2024*
|
||||||
|
|
||||||
|
Mu gihe isi iri mu bihe birangwa n’umwuka 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 nk’iby’ingenzi ku hazaza h’akarere.
|
||||||
|
|
||||||
|
Ari i Cayey muri Puerto Rico, Dr. José Benjamín Pérez Matos yagejeje ubutumwa bwe ku bayobozi ndetse no ku bwoko bw’Abaheburayo, agaragaza ko hakenewe ubwenge n’inshingano mu gufata ibyemezo mu gihe isi iri mu bihe bikomeye kandi bigoye.
|
||||||
|
|
||||||
|
Yagize ati: **“Imana ihe umugisha Israel, Imana ihe umugisha ubwoko bw’Abaheburayo, kandi bafate ibyemezo bikwiye.”**
|
||||||
|
|
||||||
|
Ubutumwa bwe ntabwo bwagarukaga gusa ku gushyigikira Israel, ahubwo bwanagaragazaga icyizere cy’ibintu byiza biri imbere. Dr. José Benjamín Pérez Matos yavuze ko yifuza ko ubwoko bwa Israel bwakira neza kandi vuba ibyo, nk’uko abyizera, biri hafi kuza.
|
||||||
|
|
||||||
|
Yagize ati: **“Imana ishyire mu mitima yabo ibyo bagiye kwakira vuba.”**
|
||||||
|
|
||||||
|
Aya magambo ari mu murongo w’ubutumwa yakomeje gutanga mu bihe bitandukanye, aho ukwizera n’iby’umwuka bifatwa nk’inkingi z’ingenzi mu gutanga icyerekezo no gukomeza ubumwe. Muri uwo murongo, abakurikira Dr. José Benjamín Pérez Matos bongeye gushimangira ko bashyigikiye Israel, bagaragaza uruhare rw’isengesho n’ukwizera nk’ibirenze imipaka y’ibihugu.
|
||||||
|
|
||||||
|
Ubutumwa bwatangiwe muri Puerto Rico bwiyongereye ku zindi mvugo n’itangazo byagiye bishimangira akamaro k’ibihe isi irimo, ndetse bunagaragaza neza umwanya wo gushyigikira Israel no gukomeza gukurikiranira hafi uko ibintu bihinduka ku rwego mpuzamahanga.
|
||||||
|
|
@ -0,0 +1,56 @@
|
||||||
|
---
|
||||||
|
locale: rw
|
||||||
|
title: 'Igitangaza cya Israel nyuma y’imyaka 76: ubwigenge, amakimbirane n’icyerekezo cy’isezerano ku rwego rw’isi'
|
||||||
|
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 y’imyaka 76: ubwigenge, amakimbirane n’icyerekezo cy’isezerano ku rwego rw’isi
|
||||||
|
|
||||||
|
*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 y’imyaka 76 Leta ya Israel ishinzwe, Dr. José Benjamín Pérez Matos atanga isesengura rirenga uburyo busanzwe bwo kureba ibibazo mpuzamahanga, aho agaragaza Israel nk’igihugu gifite uruhare rukomeye muri gahunda y’isi ndetse nk’inkingi y’impinduka zifite uburemere bwihariye mu mateka y’ikiremwamuntu.
|
||||||
|
|
||||||
|
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 y’itsembabwoko rya Holocaust — bitasobanurwa gusa n’impamvu za politiki cyangwa iz’intambara, ahubwo ko harimo amateka, indangagaciro n’icyerekezo cy’igihe kirekire.
|
||||||
|
|
||||||
|
## Kuva ku mwanzuro mpuzamahanga kugera ku guhurizahamwe leta
|
||||||
|
|
||||||
|
Intangiriro y’iri sesengura ishingiye ku Mwanzuro wa 181 w’Umuryango w’Abibumbye, 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 y’urugendo rwo kongera kubaka igihugu byagize ingaruka ku isi yose.
|
||||||
|
|
||||||
|
Yagize ati: **“Kubaho kwa Israel ntibishobora gusobanurwa gusa mu buryo bwa politiki; turi imbere y’igitangaza 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 bw’impanuka, ahubwo ari igice cy’umushinga mugari.
|
||||||
|
|
||||||
|
Isesengura rye ryemera amateka akomeye y’Abayahudi, 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 y’isi 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 n’igisirikare, hamwe n’uko ihora ivugwa mu bibazo by’isi, bituma iba igihugu kidashobora kwirengagizwa mu isesengura ry’umutekano w’akarere n’uw’isi.
|
||||||
|
|
||||||
|
Nubwo hakomeje kubaho amakimbirane mu Burasirazuba bwo Hagati, yavuze ko Israel ari ihuriro ry’inyungu za politiki mpuzamahanga, amakimbirane y’ideolojiya ndetse n’imbaraga z’ibihugu bikomeye.
|
||||||
|
|
||||||
|
Muri uyu murongo, umujyi wa Yerusalemu ufite agaciro kihariye, atari gusa nk’ahantu ha politiki n’idini, ahubwo nk’ikimenyetso gihora kirebwa n’amahanga.
|
||||||
|
|
||||||
|
## Icyizere cy’igihe kiri imbere n’icyerekezo cy’impinduka
|
||||||
|
|
||||||
|
Kimwe mu bice by’ingenzi by’isesengura rye ni igitekerezo cy’uko Israel iri mu gihe yise **“icyizere cy’ingenzi cy’ihuriro,”** aho nubwo hari amakimbirane, hari impinduka nini iri gutegurwa.
|
||||||
|
|
||||||
|
Kuri iyi ngingo yagize ati: **“Israel iri mu gihe cy’icyizere 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 rw’ibibazo by’ubu, ahubwo nk’igice cy’impinduka nini zizagira ingaruka ku isi yose.
|
||||||
|
|
||||||
|
## Umukinnyi wingezi mu isi yuzuyemo gushidikanya
|
||||||
|
|
||||||
|
Mu gihe isi iri mu bihe birangwa n’impinduka z’ubufatanye hagati y’ibihugu, intambara zimara igihe kinini ndetse no kongera kugabana imbaraga za politiki, Dr. José Benjamín Pérez Matos agaragaza ko Israel itagomba kurebwa gusa nk’igihugu kiri mu ntambara, ahubwo nk’umukinnyi 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 y’isi.”**
|
||||||
|
|
||||||
|
Nyuma y’imyaka 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 y’isi ya none.
|
||||||
|
|
@ -0,0 +1,33 @@
|
||||||
|
---
|
||||||
|
locale: rw
|
||||||
|
title: 'Ubusabe mpuzamahanga kuri Isiraheli na Venezuwela: ukwizera, ubwisanzure n’imiburo ku mpinduka z’isil'
|
||||||
|
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 n’imiburo ku mpinduka z’isi
|
||||||
|
|
||||||
|
*Cayey, Puerto Rico – 3 Kanama 2024*
|
||||||
|
|
||||||
|
Mu gihe isi iri kurangwa n’amakimbirane ya politiki n’imibereho y’abaturage, Dr. José Benjamín Pérez Matos yatanze ubutumwa bwahuje ibijyanye n’ukwizera n’ibibazo bya politiki mpuzamahanga biriho ubu, ahamagarira abantu gusengera ibihugu bibiri biri mu bihe bikomeye: Israel na Venezuela.
|
||||||
|
|
||||||
|
Ubutumwa bwe bwari bwuzuyemo uburemere n’umuhamagaro wihutirwa, bushimangira ko hakenewe kugarura ituze n’umutekano mu bice by’ingenzi by’isi, ndetse agaragaza ingaruka ibyo bibazo bigira ku burenganzira bw’ibanze n’imibereho y’abaturage.
|
||||||
|
|
||||||
|
Yagize ati: **“Imana ihe umugisha Israel, Imana ihe umugisha na Venezuela, kuko ari ibihugu biri kunyura mu bihe bikomeye muri iki gihe; ndetse n’ibindi bihugu, kuko uko byagenda kose, ubwami bw’iyi si bugiye vuba kuba Ubwami bwa Mesiya.”**
|
||||||
|
|
||||||
|
Kimwe mu bice by’ingenzi by’ubutumwa bwe cyagarutse ku kibazo cya Venezuela, aho Dr. José Benjamín Pérez Matos yavuze ku mibabaro abaturage b’icyo gihugu bamaze imyaka banyuramo ndetse no ku gukenera impinduka zafasha kugarura ubwisanzure n’icyubahiro cyabo.
|
||||||
|
|
||||||
|
Yagize ati: **“Icyifuzo cy’abana b’Imana ni uko babohoka muri ibyo bibazo bimaze imyaka myinshi bibakandamiza.”**
|
||||||
|
Ubutumwa bwe bwanagaragayemo ishusho nini y’ibibazo byo mu Burasirazuba bwo Hagati, aho yasobanuye ko ibiri kuba ubu ari igice cy’impinduka nini ziri kuba ku rwego rw’isi. Muri uwo murongo, yavuze ko “ibihe bikomeye” ibihugu byinshi biri kunyuramo ari ibimenyetso by’inzibacyuho iganisha ku miterere mishya y’isi.
|
||||||
|
|
||||||
|
Igikorwa cyasojwe n’ubutumwa bwo guha umugisha n’ibindi bihugu ndetse n’umuhamagaro wo gukomeza kuba maso no gusenga mu gihe isi ikomeje kunyura mu mpinduka zihuse kandi zikomeye ku rwego mpuzamahanga.
|
||||||
|
|
@ -1,33 +1,33 @@
|
||||||
---
|
---
|
||||||
locale: rw
|
locale: rw
|
||||||
title: 'Umuyobozi mpuzamahanga yashimye uburyo bwo kuyobora igihugu bwa El Salvador n’ingaruka zabwo ku rwego rw’akarere mu gikorwa cyabereye mu Ngoro y’Imikino'
|
title: 'Umuyobozi mpuzamahanga yashimye uburyo bw’imiyoborere bwa El Salvador n’uruhare rwayo mu karere mu gikorwa cyabereye muri Palacio de los Deportes.'
|
||||||
date: 2026-04-26
|
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
|
country: SV
|
||||||
city: San Salvador
|
city: San Salvador
|
||||||
place: Palacio de los Deportes
|
place: Palacio de los Deportes
|
||||||
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
|
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_04_26_1_JBP_la_ultima_visitacion_o_manifestacion_del_espiritu.webp'
|
||||||
tags: [Kolombiya, Saluvadori]
|
tags: [Colombia, Salvador]
|
||||||
gallery: [
|
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 n’ingaruka zabwo ku rwego rw’akarere mu gikorwa cyabereye mu Ngoro y’Imikino
|
# Umuyobozi mpuzamahanga yashimye uburyo bw’imiyoborere bwa El Salvador n’uruhare 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 y’Imikino “Carlos ‘El Famoso’ Hernández”, aho yagaragaje ishimwe ku buyobozi bwa Perezida Nayib Bukele ndetse n’ingaruka z’imiyoborere 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 n’ingaruka nziza z’ubuyobozi bwe muri El Salvador no mu karere.
|
||||||
|
|
||||||
Imbere y’imbaga 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 y’ubururu n’umweru yarangaga aho hantu, abihuza n’ibendera rya Isirayeli, igihugu yagaragarije ubutumwa bwo kugishyigikira.
|
Imbere y’abitabiriye 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 y’ubururu n’umweru yagaragara aho icyo gikorwa cyabereye, ayahuza n’ibara ry’ibendera rya Israel, igihugu yashyigikiye mu butumwa bwe.
|
||||||
|
|
||||||
Mu gusobanura kwe, Dr. José Benjamín Pérez Matos yagarutse ku buryo bw’umutekano bwashyizweho n’ubuyobozi 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 bw’umutekano bwashyizweho n’ubutegetsi 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 cy’Ubwami bw’imyaka igihumbi; bahumekerwa n’Imana.”** Yanavuze ko ubu buryo bwo kuyobora busaba gufata ibyemezo bikomeye mu guhangana n’ikorwa ry’ibyaha n’imidugararo.
|
Yagize ati: “Murebe uburyo bavuga Perezida Bukele n’uburyo ayobora… Imana yemeye ko habaho abayobozi bafite icyerekezo kijyana n’ibizaba mu gihe cy’ingoma y’imyaka igihumbi; baba bahumekewe n’Imana.” Yanavuze ko ubu buryo bwo kuyobora busaba gufata ibyemezo bikomeye mu kurwanya ibyaha n’akajagari.
|
||||||
|
|
||||||
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 by’umwihariko 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 bw’umutekano n’imiyoborere bwashyizweho na Perezida Nayib Bukele.
|
Dr. José Benjamín Pérez Matos kandi yavuze ko ubu buryo bw’imiyoborere burimo kurenga imipaka ya El Salvador, bukaba buri gukurura inyota n’inyungu mu bayobozi batandukanye bo mu karere. Yavuze by’umwihariko ko umunyamategeko wo muri Colombia, Abelardo de la Espriella, yagaragaje ku mugaragaro ubushake bwo kwiga no kureba uburyo gahunda y’umutekano n’imiyoborere ya Perezida Nayib Bukele yashyirwa no mu bindi bihugu.
|
||||||
|
|
||||||
Igikorwa cyasojwe hatanzwe ubutumwa bwo gushyigikira icyerekezo El Salvador yafashe mu bijyanye n’umutekano n’imiyoborere y’inzego zayo, hanashimangirwa ko ubu buyobozi bushobora gukomeza kugira ingaruka ku rwego rw’akarere mu myaka iri imbere.
|
Igikorwa cyasojwe n’ubutumwa bushyigikira icyerekezo El Salvador yafashe mu rwego rw’umutekano no gutunganya inzego za Leta, hagaragazwa ko ubu buryo bw’ubuyobozi bushobora kugira uruhare rukomeye mu karere mu myaka iri imbere.
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,58 @@
|
||||||
|
---
|
||||||
|
locale: rw
|
||||||
|
title: 'Bolivia iri gutera intambwe muri gahunda y’ubufatanye 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 y’ubufatanye na Israel iyobowe na
|
||||||
|
|
||||||
|
*La Paz, Bolivia – 29 Mata 2026*
|
||||||
|
|
||||||
|
***Inteko Ishinga Amategeko y’Abadepite hamwe n’inama yo ku rwego rwo hejuru mu bya dipolomasi byashimangiye umunsi w’ingenzi mu gukomeza umubano hagati y’ibihugu byombi.***
|
||||||
|
|
||||||
|
Mu rwego rw’umunsi wari wuzuyemo ibikorwa by’inzego 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 rw’inteko ishinga amategeko no mu rwego rwa dipolomasi.
|
||||||
|
|
||||||
|
Mu masaha ya mbere y’uwo munsi, Inteko Ishinga Amategeko y’Abadepite yabereyemo inama za tekiniki zahuje abadepite n’abasenateri, aho baganiriye ku mishinga y’amategeko iteza imbere gahunda za Dr. José Benjamín Pérez Matos. Iyo mishinga irimo kwimura ibyicaro bya dipolomasi ndetse no gushyiraho amasezerano y’ubufatanye mu bya tekiniki n’umutekano.
|
||||||
|
|
||||||
|
Muri urwo rwego, senateri José Manuel Ormachea yavuze ati: “Tuzakira umushinga w’itegeko 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 y’ibiganiro byatangiriye mu rwego rw’inteko 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 k’ibyagezweho muri uwo munsi agira ati: “Nakurikiranye buri kantu ku giti kanjye, nshyigikira amasezerano azazana iterambere rifatika.”
|
||||||
|
|
||||||
|
Iyo nama yitabiriwe n’abahagarariye inzego zitandukanye, harimo abayobozi b’amadini atandukanye, Konseye Honoré Roberto Nelkenbaum ndetse na Perezida w’umuryango w’Abayahudi Ricardo Udler. Ambasaderi Dagan yanagaragaje uruhare rw’abayobozi b’amadini, avuga ko ari “imbaraga z’inyongera muri dipolomasi,” kubera uruhare rwabo mu gukomeza umubano hagati y’ibihugu byombi.
|
||||||
|
|
||||||
|
Ibikorwa byabaye muri uwo munsi byafashije gutera intambwe mu gushimangira gahunda y’ubufatanye hagati ya Bolivia na Israel, hagamijwe gukomeza umubano w’inzego zitandukanye z’ibihugu byombi mu nyungu rusange.
|
||||||
|
|
@ -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 by’umwuka n’iby’inzego bifitanye isano na Yerusalemu, Ubwami bwa Mesiya, no gusohoza amasezerano yo muri Bibiliya.
|
||||||
|
|
||||||
|
Dr. José Benjamín Pérez Matos, perezida w’Ikigo cy’Ubwami cy’Amahoro n’Ubutabera, yageze i Tel Aviv muri Isirayeli, ku wa Kane tariki ya 14 Gicurasi 2026, aho yatangije ubutumwa bushya mpuzamahanga ku butaka butagatifu, nk'igice cy’ibikorwa byinshi bifitanye isano cyane cyane n’umunsi wa Yerusalemu.
|
||||||
|
|
||||||
|
Akihagera, Dr. José Benjamín Pérez Matos yasuhuje abavandimwe be bo mu Burengerazuba bw’Isi maze agaragaza ko ategereje inama ziteganijwe mu gihe azaba ari muri Isirayeli, ashimangira ko uruzinduko ruzaba mu rwego rw’ingenzi cyane mu buryo bw’umwuka.
|
||||||
|
|
||||||
|
**«Uyu munsi, ku wa Kane tariki ya 14 Gicurasi 2026, ndabasuhuje mwese bavandimwe muri mu Burengerazuba bw’Isi. Tugeze hano nyuma y’urugendo rw’indege 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 n’Umunsi wa Yerusalemu, bizitabirwa n’abanyacyubahiro batandukanye. Muri urwo rwego, yashimangiye ko intego nyamukuru y’ibi bikorwa ari uguteza imbere no gukomeza Ubwami bw’Imana.
|
||||||
|
|
||||||
|
Mu butumwa bwe, José Benjamín Pérez Matos yongeye gushimangira akamaro ka Yerusalemu nk’ihuriro ry’Isi ndetse nk’ahantu, hakurikijwe amasezerano yo mu Byanditswe Byera, hazaba umurwa mukuru w’Ubwami bwa Mesiya.
|
||||||
|
|
||||||
|
**«Ubwo Bwami buzashyirwaho vuba cyane mu buryo bufatika, muri iki gihugu, kandi ari hano hazaturuka amategeko, Ijambo ry’Imana n’ihishuwe ry’Imana. Amahoro, ibyishimo n’ibindi byose bizaturuka i Yerusalemu, umurwa mukuru w’Isi»**.
|
||||||
|
|
||||||
|
**«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 cy’ubutumwa bwe, José Benjamín Pérez Matos yavuze ku rwego rw’umutekano yabonye ageze muri Israel. Yagaragaje ko yabonye indege za gisirikare, avuga ko ibyo bigaragaza urwego rw’umwuka mubi n’ubushyamirane buri muri ako karere, mu gihe, nk’uko 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 by’umwihariko ku magambo ya Perezida wa Turkey, Recep Tayyip Erdoğan, yavuze kuri Israel ndetse no kuri Minisitiri w’Intebe 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 w’Intebe Benjamin Netanyahu adashaka amahoro. Birumvikana ko ashaka amahoro, kimwe n’umuturage 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. Nk’uko yabisobanuye, igikorwa cyose kigamije gukumira ikibazo cyangwa igitero kibangamiye abaturage ba Israel kigomba kumvikana nk’ubwirinzi bwemewe bw’amahoro n’amasezerano yo muri Bibiliya.
|
||||||
|
**“Kugira ngo tugere ku mahoro, tugomba gukuraho ikintu cyose kiyabangamira. Kandi umuntu wese udashaka amahoro aba imbogamizi. Ab’ibumoso, abasosiyalisiti, n’abakomunisiti 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. By’umwihariko, 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 w’Intebe wa Espagne, Pedro Sánchez, yamunenze kuba yarafashe icyemezo cyo kurwanya Isiraheli atahuye n'ikibazo nk'icyo ku butaka bwe.
|
||||||
|
**“nkabibwira na Minisitiri w’Intebe wa Espagne, na we uri mu batavuga rumwe n’ibyo. None se reba: kuko bo nta kibazo nk’icyo 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 rw’amasezerano n’ubuhanuzi: aba ari ku ruhande rw’Imana, y’iteka; kuko Israel nta gihugu na kimwe kizashobora kuyisenya!”**
|
||||||
|
|
||||||
|
“Kandi rero, muri iyi minsi twiteze imigisha myinshi y’Uwiteka; kandi ibyo byose bizakorwa muri iyi minsi bibe iminsi yo guteza imbere Ubwami bwa Mesiya, no kugira ngo ibijyanye n’ubwo Bwami bigire intambwe ikomeye. Imana ibahe umugisha, ibarinde mwese.”
|
||||||
118
src/i18n/en.json
118
src/i18n/en.json
|
|
@ -10,7 +10,6 @@
|
||||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||||
"hero.title": "Founding Leader",
|
"hero.title": "Founding Leader",
|
||||||
"hero.body": "“My life’s dream is to see the prophets’ vision fulfilled: a world of justice and peace for the good of Israel and all mankind.”",
|
"hero.body": "“My life’s dream is to see the prophets’ vision fulfilled: a world of justice and peace for the good of Israel and all mankind.”",
|
||||||
|
|
||||||
"info.title": "Building the world dreamed of by the prophets: justice and peace for Israel and all humanity",
|
"info.title": "Building the world dreamed of by the prophets: justice and peace for Israel and all humanity",
|
||||||
"info.register": "Register",
|
"info.register": "Register",
|
||||||
"info.modal.title": "Form available soon",
|
"info.modal.title": "Form available soon",
|
||||||
|
|
@ -28,7 +27,7 @@
|
||||||
"textColor": "text-[#003421]",
|
"textColor": "text-[#003421]",
|
||||||
"sizeText": "text-xl",
|
"sizeText": "text-xl",
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"url":"#projection",
|
"url": "#projection",
|
||||||
"hasIcon": true,
|
"hasIcon": true,
|
||||||
"hasInput": false
|
"hasInput": false
|
||||||
},
|
},
|
||||||
|
|
@ -70,87 +69,78 @@
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||||
"hasIcon": true,
|
"hasIcon": true,
|
||||||
"url":"#mision",
|
"url": "#mision",
|
||||||
"bgColor": "#CBA16A",
|
"bgColor": "#CBA16A",
|
||||||
"titleColor": "text-tertiary",
|
"titleColor": "text-tertiary",
|
||||||
"sizeTitle": "text-2xl"
|
"sizeTitle": "text-2xl"
|
||||||
},
|
},
|
||||||
|
|
||||||
"carousel1.images": [
|
"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",
|
"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"
|
"text": "Justice"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||||
"text": "Peace"
|
"text": "Peace"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"identity.initTitle": "Institutional Identity",
|
"identity.initTitle": "Institutional Identity",
|
||||||
"identity.title": "Kingdom of Peace and Justice Center",
|
"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>",
|
"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.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.",
|
"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",
|
"title1.title": "Dr. José Benjamín Pérez Matos | Trajectory",
|
||||||
|
"grid.cards": [
|
||||||
"grid.cards" : [
|
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-down-thin",
|
"icon": "ph:arrow-circle-down-thin",
|
||||||
"text": "Administration Of La Gran Carpa Catedral. Puerto Rico",
|
"text": "Administration Of La Gran Carpa Catedral. Puerto Rico",
|
||||||
"bgColor": "#EBE5D0",
|
"bgColor": "#EBE5D0",
|
||||||
"textColor": "#003421"
|
"textColor": "#003421"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
"image": "https://ik.imagekit.io/crpy/grid_image_1.webp"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-right-thin",
|
"icon": "ph:arrow-circle-right-thin",
|
||||||
"text": "Active involment in international scenarios.",
|
"text": "Active involment in international scenarios.",
|
||||||
"textColor": "#003421",
|
"textColor": "#003421",
|
||||||
"bgColor": "#BEA48D"
|
"bgColor": "#BEA48D"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
"image": "https://ik.imagekit.io/crpy/grid_image_2.webp"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
"image": "https://ik.imagekit.io/crpy/grid_image_3.webp"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-up-thin",
|
"icon": "ph:arrow-circle-up-thin",
|
||||||
"text": "Biblical teaching applied to the analysis of the contemporary world.",
|
"text": "Biblical teaching applied to the analysis of the contemporary world.",
|
||||||
"textColor": "#EBE5D0",
|
"textColor": "#EBE5D0",
|
||||||
"bgColor": "#003421"
|
"bgColor": "#003421"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
"image": "https://ik.imagekit.io/crpy/grid_image_4.webp"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-left-thin",
|
"icon": "ph:arrow-circle-left-thin",
|
||||||
"text": "Public commitment in defense, justice and peace of Israel.",
|
"text": "Public commitment in defense, justice and peace of Israel.",
|
||||||
"textColor": "#003421",
|
"textColor": "#003421",
|
||||||
"bgColor": "#EBE5D0"
|
"bgColor": "#EBE5D0"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"color1.title": "Mission",
|
"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.",
|
"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.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.",
|
"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",
|
"title2.title": "Institutional Values",
|
||||||
|
|
||||||
"values.justice.title": "Justice",
|
"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.justice.text": "An active commitment to a just order grounded in moral principles, respect for human dignity, and the defense of enduring values.",
|
||||||
"values.integrity.title": "Integrity",
|
"values.integrity.title": "Integrity",
|
||||||
|
|
@ -161,12 +151,10 @@
|
||||||
"values.excellence.text": "Intellectual rigor, professionalism, and continuous improvement in all work areas.",
|
"values.excellence.text": "Intellectual rigor, professionalism, and continuous improvement in all work areas.",
|
||||||
"values.dialogue.title": "Strategic dialogue",
|
"values.dialogue.title": "Strategic dialogue",
|
||||||
"values.dialogue.text": "Openness to exchange across cultures, nations, and faiths, while upholding fundamental convictions and principles.",
|
"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.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.card1": "The connection with political, academic and social leaders.",
|
||||||
"projection.card2": "Clear and permanent support for the Jewish people and the State of Israel",
|
"projection.card2": "Clear and permanent support for the Jewish people and the State of Israel",
|
||||||
|
|
||||||
"formation.title": "Training and Development",
|
"formation.title": "Training and Development",
|
||||||
"formation.subtitle": "Programs and Areas of Action",
|
"formation.subtitle": "Programs and Areas of Action",
|
||||||
"formation.text": "The KPJC develops courses, seminars, and training programs for leaders, professionals, institutional management, and public stakeholders.",
|
"formation.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.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.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.",
|
"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.title": "News",
|
||||||
"news.text": "Institutional updates and global reach",
|
"news.text": "Institutional updates and global reach",
|
||||||
"news.text2": "This section brings together the main events, awards, and undertakings of the Kingdom of Peace and Justice Center and its founder.",
|
"news.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.seemore": "See More",
|
||||||
"news.all": "All",
|
"news.all": "All",
|
||||||
"news.allYears": "All years",
|
"news.allYears": "All years",
|
||||||
|
|
||||||
|
|
||||||
"participate.title": "Participate | Collaborate",
|
"participate.title": "Participate | Collaborate",
|
||||||
"participate.text": "Joining means making a commitment with purpose",
|
"participate.text": "Joining means making a commitment with purpose",
|
||||||
"participate.text2": "The work of KPJC is strengthened by the participation of individuals and institutions aligned with its values and overarching objectives:",
|
"participate.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.title": "Institutional outreach:",
|
||||||
"participate.box2.text": "amplify the KPJC’s mission and activities in the public sphere.",
|
"participate.box2.text": "amplify the KPJC’s mission and activities in the public sphere.",
|
||||||
"participate.text3": "Peace is built through responsible decisions, committed leadership, and sustained action.",
|
"participate.text3": "Peace is built through responsible decisions, committed leadership, and sustained action.",
|
||||||
|
|
||||||
"footer.title": "Contact",
|
"footer.title": "Contact",
|
||||||
"footer.subtitle": "Let’s connect with vision and purpose",
|
"footer.subtitle": "Let’s connect with vision and purpose",
|
||||||
"footer.text": "The Kingdom of Peace and Justice Center has direct channels for institutional inquiries and participation in international programs and events.",
|
"footer.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.name": "Name and Lastname",
|
||||||
"footer.form.mesagge": "Write a message",
|
"footer.form.mesagge": "Write a message",
|
||||||
"footer.form.button": "Send",
|
"footer.form.button": "Send",
|
||||||
"footer.reserved": "©2026 All Rights Reserved. Kingdom of Peace and Justice Center"
|
"footer.reserved": "©2026 All Rights Reserved. Kingdom of Peace and Justice Center"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -7,14 +7,11 @@
|
||||||
"nav.archive": "Archivo",
|
"nav.archive": "Archivo",
|
||||||
"nav.nations": "Naciones",
|
"nav.nations": "Naciones",
|
||||||
"nav.contact": "Contacto",
|
"nav.contact": "Contacto",
|
||||||
|
|
||||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||||
"hero.title": "Líder fundador",
|
"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.”",
|
"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.text1": "Paz",
|
||||||
"carousel.text2": "Justicia",
|
"carousel.text2": "Justicia",
|
||||||
|
|
||||||
"info.title": "Construyendo el mundo soñado por los profetas: justicia y paz para Israel y toda la humanidad",
|
"info.title": "Construyendo el mundo soñado por los profetas: justicia y paz para Israel y toda la humanidad",
|
||||||
"info.register": "Registrarse",
|
"info.register": "Registrarse",
|
||||||
"info.modal.title": "Formulario disponible próximamente",
|
"info.modal.title": "Formulario disponible próximamente",
|
||||||
|
|
@ -30,7 +27,7 @@
|
||||||
"textColor": "text-[#003421]",
|
"textColor": "text-[#003421]",
|
||||||
"sizeText": "text-xl",
|
"sizeText": "text-xl",
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"url":"#projection",
|
"url": "#projection",
|
||||||
"hasIcon": true,
|
"hasIcon": true,
|
||||||
"hasInput": false
|
"hasInput": false
|
||||||
},
|
},
|
||||||
|
|
@ -72,33 +69,28 @@
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||||
"hasIcon": true,
|
"hasIcon": true,
|
||||||
"url":"#mision",
|
"url": "#mision",
|
||||||
"bgColor": "#CBA16A",
|
"bgColor": "#CBA16A",
|
||||||
"titleColor": "text-tertiary",
|
"titleColor": "text-tertiary",
|
||||||
"sizeTitle": "text-2xl"
|
"sizeTitle": "text-2xl"
|
||||||
},
|
},
|
||||||
|
|
||||||
"carousel1.images": [
|
"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",
|
"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": "Justicia"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||||
"text": "Paz"
|
"text": "Paz"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"identity.initTitle": "Identidad Institucional",
|
"identity.initTitle": "Identidad Institucional",
|
||||||
"identity.title": "El Centro del Reino de Paz y Justicia",
|
"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>",
|
"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.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.",
|
"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",
|
"title1.title": "Dr. José Benjamín Pérez Matos | Trayectoria",
|
||||||
|
"grid.cards": [
|
||||||
"grid.cards" : [
|
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-down-thin",
|
"icon": "ph:arrow-circle-down-thin",
|
||||||
|
|
@ -144,35 +136,25 @@
|
||||||
"bgColor": "#EBE5D0"
|
"bgColor": "#EBE5D0"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"color1.title": "Misión",
|
"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.",
|
"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.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.",
|
"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",
|
"title2.title": "Valores Institucionales",
|
||||||
|
|
||||||
"values.justice.title": "Justicia",
|
"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.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.title": "Integridad",
|
||||||
"values.integrity.text": "Coherencia entre pensamiento, palabra y acción; transparencia institucional y responsabilidad en el espacio público.",
|
"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.title": "Servicio",
|
||||||
"values.service.text": "Vocación de acompañamiento y acción orientada a objetivos claros y trascendentes.",
|
"values.service.text": "Vocación de acompañamiento y acción orientada a objetivos claros y trascendentes.",
|
||||||
|
|
||||||
"values.excellence.title": "Excelencia",
|
"values.excellence.title": "Excelencia",
|
||||||
"values.excellence.text": "Rigor intelectual, profesionalismo y mejora constante en todas las áreas de trabajo.",
|
"values.excellence.text": "Rigor intelectual, profesionalismo y mejora constante en todas las áreas de trabajo.",
|
||||||
|
|
||||||
"values.dialogue.title": "Diálogo Estratégico",
|
"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.",
|
"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.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.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.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.",
|
"projection.card2": "Apoyo claro y permanente al pueblo judío y al Estado de Israel.",
|
||||||
|
|
||||||
"formation.title": "Formación y Capacitación",
|
"formation.title": "Formación y Capacitación",
|
||||||
"formation.subtitle": "Programas y Área de Acció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.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.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.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.",
|
"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.title": "Noticias",
|
||||||
"news.text": "Actualidad institucional y proyección internacional",
|
"news.text": "Actualidad institucional y proyección internacional",
|
||||||
"news.text2": "Esta sección reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
"news.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.seemore": "Ver Más",
|
||||||
"news.all": "Todas",
|
"news.all": "Todas",
|
||||||
"news.allYears": "Todos los años",
|
"news.allYears": "Todos los años",
|
||||||
|
|
||||||
"participate.title": "Participa | Colabora",
|
"participate.title": "Participa | Colabora",
|
||||||
"participate.text": "Sumarse es asumir un compromiso con propósito",
|
"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.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.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.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.",
|
"participate.text3": "La paz se construye mediante decisiones responsables, liderazgo comprometido y acción sostenida.",
|
||||||
|
|
||||||
"footer.title": "Contacto",
|
"footer.title": "Contacto",
|
||||||
"footer.subtitle": "Conectemos con visión y propósito ",
|
"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.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.name": "Nombre y Apellido",
|
||||||
"footer.form.mesagge": "Escriba su mensaje",
|
"footer.form.mesagge": "Escriba su mensaje",
|
||||||
"footer.form.button": "Enviar",
|
"footer.form.button": "Enviar",
|
||||||
|
|
|
||||||
|
|
@ -183,7 +183,8 @@
|
||||||
"footer.title": "Contact",
|
"footer.title": "Contact",
|
||||||
"footer.subtitle": "Connectons avec une vision et un but.",
|
"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.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.name": "Nom et prénom",
|
||||||
"footer.form.mesagge": "Écrivez votre message",
|
"footer.form.mesagge": "Écrivez votre message",
|
||||||
"footer.form.button": "Envoyer",
|
"footer.form.button": "Envoyer",
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,11 @@
|
||||||
"nav.news": "חדשות",
|
"nav.news": "חדשות",
|
||||||
"nav.programs": "תוכניות",
|
"nav.programs": "תוכניות",
|
||||||
"nav.contact": "צור קשר",
|
"nav.contact": "צור קשר",
|
||||||
|
|
||||||
"hero.name": "ד\"ר חוסה בנחמין פרז מאטוס",
|
"hero.name": "ד\"ר חוסה בנחמין פרז מאטוס",
|
||||||
"hero.title": "מנהיג ומייסד הארגון",
|
"hero.title": "מנהיג ומייסד הארגון",
|
||||||
"hero.body": "“החלום שלי הוא לראות את הגשמת חזון הנביאים: עולם של צדק ושלום, לטובת ישראל והאנושות כולה.”",
|
"hero.body": "“החלום שלי הוא לראות את הגשמת חזון הנביאים: עולם של צדק ושלום, לטובת ישראל והאנושות כולה.”",
|
||||||
|
|
||||||
"carousel.text1": "שלום",
|
"carousel.text1": "שלום",
|
||||||
"carousel.text2": "צדק",
|
"carousel.text2": "צדק",
|
||||||
|
|
||||||
"info.title": "בניית העולם שעליו חלמו הנביאים: עולם של צדק ושלום למען ישראל והאנושות כולה",
|
"info.title": "בניית העולם שעליו חלמו הנביאים: עולם של צדק ושלום למען ישראל והאנושות כולה",
|
||||||
"info.register": "הרשמה",
|
"info.register": "הרשמה",
|
||||||
"info.modal.title": "הטופס יעלה בקרוב",
|
"info.modal.title": "הטופס יעלה בקרוב",
|
||||||
|
|
@ -28,7 +25,7 @@
|
||||||
"textColor": "text-[#003421]",
|
"textColor": "text-[#003421]",
|
||||||
"sizeText": "text-xl",
|
"sizeText": "text-xl",
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"url":"#projection",
|
"url": "#projection",
|
||||||
"hasIcon": true,
|
"hasIcon": true,
|
||||||
"hasInput": false
|
"hasInput": false
|
||||||
},
|
},
|
||||||
|
|
@ -62,7 +59,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"info.copy1": "<b>מרכז הממלכה לשלום וצדק </b>הוא ארגון בינלאומי המוקדש להכשרה, דיאלוג אסטרטגי ופעולה ציבורית, שמטרתו קידום צדק ושלום לפי הערכים הנצחיים שעליהם הכריזו הנביאים, עם מחויבות ברורה ומתמשכת לישראל ומקומה המרכזי בהיסטוריה ובעתיד העולם.",
|
"info.copy1": "<b>מרכז הממלכה לשלום וצדק </b>הוא ארגון בינלאומי המוקדש להכשרה, דיאלוג אסטרטגי ופעולה ציבורית, שמטרתו קידום צדק ושלום לפי הערכים הנצחיים שעליהם הכריזו הנביאים, עם מחויבות ברורה ומתמשכת לישראל ומקומה המרכזי בהיסטוריה ובעתיד העולם.",
|
||||||
"info.copy_column1": "המרכז מוביל יוזמות חינוכיות, פלטפורמות של חשיבה מעמיקה ופעולות ממשיות בזירה הציבורית, תוך הטמעת עקרונות רוחניים, אחריות מוסדית ומנהיגות מוסרית. פועילותו מתקיימת במסגרת <b>הדיפלומטיה הציבורית,</b> ככלי לגיטימי לעיצוב השיח העולמי, לחיזוק הקשרים בין מדינות ולהגנה על ערכי יסוד מול אתגרי ההווה והעתיד.",
|
"info.copy_column1": "המרכז מוביל יוזמות חינוכיות, פלטפורמות של חשיבה מעמיקה ופעולות ממשיות בזירה הציבורית, תוך הטמעת עקרונות רוחניים, אחריות מוסדית ומנהיגות מוסרית. פעילותו מתקיימת במסגרת <b>הדיפלומטיה הציבורית,</b> ככלי לגיטימי לעיצוב השיח העולמי, לחיזוק הקשרים בין מדינות ולהגנה על ערכי יסוד מול אתגרי ההווה והעתיד.",
|
||||||
"info.copy_column2": "השלום אינו נתפס כסיסמה מופשטת או כאידיאל נאיבי, אלא כתוצאה מהחלטות מוצקות, מנהיגות ערכית ומחויבות מתמשכת למטרות ברורות, המכירות בתפקידה חסר התחליף של ישראל בבניית סדר צודק ויציב לכלל האנושות.",
|
"info.copy_column2": "השלום אינו נתפס כסיסמה מופשטת או כאידיאל נאיבי, אלא כתוצאה מהחלטות מוצקות, מנהיגות ערכית ומחויבות מתמשכת למטרות ברורות, המכירות בתפקידה חסר התחליף של ישראל בבניית סדר צודק ויציב לכלל האנושות.",
|
||||||
"info.endbox": {
|
"info.endbox": {
|
||||||
"title": "ייעוד, חזון וערכים",
|
"title": "ייעוד, חזון וערכים",
|
||||||
|
|
@ -70,33 +67,28 @@
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||||
"hasIcon": true,
|
"hasIcon": true,
|
||||||
"url":"#mision",
|
"url": "#mision",
|
||||||
"bgColor": "#CBA16A",
|
"bgColor": "#CBA16A",
|
||||||
"titleColor": "text-tertiary",
|
"titleColor": "text-tertiary",
|
||||||
"sizeTitle": "text-2xl"
|
"sizeTitle": "text-2xl"
|
||||||
},
|
},
|
||||||
|
|
||||||
"carousel1.images": [
|
"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",
|
"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": "צדק"
|
"text": "צדק"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||||
"text": "שלום"
|
"text": "שלום"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"identity.initTitle": "זהות ארגונית",
|
"identity.initTitle": "זהות ארגונית",
|
||||||
"identity.title": "מרכז הממלכה לשלום וצדק",
|
"identity.title": "מרכז הממלכה לשלום וצדק",
|
||||||
"identity.body": "<p>מרכז ממלכת השלום והצדק הוא ארגון בינלאומי המורכב מאלפי מתנדבים הפזורים במדינות רבות, הפועלים בצורה מתואמת תחת הנהגתו והדרכתו של ד\"ר חוסה בנחמין פרס מטוס, הדמות היחידה המובילה את המרכז.</p><p>המרכז פעיל ביבשות שונות, ומחבר אנשים, מנהיגים, קהילות ומוסדות החולקים חזון משותף: להביא את ערכי המרכז אל המרחב הציבורי ולהתמודד, באחריות ובנחישות, עם האתגרים שמולם ניצב העולם כיום.</p><p>המרכז נולד עם משימה ברורה: לחבר בין האמונה לפעולה במרחב הציבורי, תוך שילוב של חשיבה רוחנית, הכשרה אינטליגנטית ומחויבות מעשית, במטרה להכין את הדרך לעידן חדש, מאופיין בסדר צודק יותר, שלום אמיתי ועולם טוב יותר, בהתאם לחזון הנבואי.</p><p>הפוקוס שלו הוא אסטרטגי, בינלאומי וממוקד בעתיד, מודע לסכסוכים המתעוררים, למתחים תרבותיים, לאתגרים גיאופוליטיים ולצורך במנהיגות חזקה המסוגלת לפעול בבירור בזמנים של שינוי גלובלי.</p>",
|
"identity.body": "<p>מרכז ממלכת השלום והצדק הוא ארגון בינלאומי המורכב מאלפי מתנדבים הפזורים במדינות רבות, הפועלים בצורה מתואמת תחת הנהגתו והדרכתו של ד\"ר חוסה בנחמין פרס מטוס, הדמות היחידה המובילה את המרכז.</p><p>המרכז פעיל ביבשות שונות, ומחבר אנשים, מנהיגים, קהילות ומוסדות החולקים חזון משותף: להביא את ערכי המרכז אל המרחב הציבורי ולהתמודד, באחריות ובנחישות, עם האתגרים שמולם ניצב העולם כיום.</p><p>המרכז נולד עם משימה ברורה: לחבר בין האמונה לפעולה במרחב הציבורי, תוך שילוב של חשיבה רוחנית, הכשרה אינטליגנטית ומחויבות מעשית, במטרה להכין את הדרך לעידן חדש, מאופיין בסדר צודק יותר, שלום אמיתי ועולם טוב יותר, בהתאם לחזון הנבואי.</p><p>הפוקוס שלו הוא אסטרטגי, בינלאומי וממוקד בעתיד, מודע לסכסוכים המתעוררים, למתחים תרבותיים, לאתגרים גיאופוליטיים ולצורך במנהיגות חזקה המסוגלת לפעול בבירור בזמנים של שינוי גלובלי.</p>",
|
||||||
|
|
||||||
"authority.title": "<strong>הנהגה</strong> | מרכז הממלכה לשלום וצדק",
|
"authority.title": "<strong>הנהגה</strong> | מרכז הממלכה לשלום וצדק",
|
||||||
"authority.body": "ד\"ר חוסה בנחמין פרז מאטוס הוא מייסדו ומנהיגו הבלעדי של מרכז הממלכה לשלום וצדק. מנהיגותו משלבת בין חזון רוחני, הכשרה אינטלקטואלית, פעילות ציבורית והשפעה בינלאומית. ",
|
"authority.body": "ד\"ר חוסה בנחמין פרז מאטוס הוא מייסדו ומנהיגו הבלעדי של מרכז הממלכה לשלום וצדק. מנהיגותו משלבת בין חזון רוחני, הכשרה אינטלקטואלית, פעילות ציבורית והשפעה בינלאומית. ",
|
||||||
|
|
||||||
"title1.title": "פעילות | ד\"ר חוסה בנחמין פרז מאטוס",
|
"title1.title": "פעילות | ד\"ר חוסה בנחמין פרז מאטוס",
|
||||||
|
"grid.cards": [
|
||||||
"grid.cards" : [
|
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-down-thin",
|
"icon": "ph:arrow-circle-down-thin",
|
||||||
|
|
@ -142,51 +134,39 @@
|
||||||
"bgColor": "#EBE5D0"
|
"bgColor": "#EBE5D0"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"color1.title": "ייעוד",
|
"color1.title": "ייעוד",
|
||||||
"color1.text": "הכשרת מנהיגים, קידום יוזמות חינוכיות ועידוד עשייה ציבורית המכוונת לצדק ולשלום, על יסוד מוסרי ורוחני איתן, במחויבות מפורשת לישראל ובאחריות לתרום לרווחתה וליציבותה של האנושות בכללותה.",
|
"color1.text": "הכשרת מנהיגים, קידום יוזמות חינוכיות ועידוד עשייה ציבורית המכוונת לצדק ולשלום, על יסוד מוסרי ורוחני איתן, במחויבות מפורשת לישראל ובאחריות לתרום לרווחתה וליציבותה של האנושות בכללותה.",
|
||||||
|
|
||||||
"color2.title": "חזון",
|
"color2.title": "חזון",
|
||||||
"color2.text": "ביסוס מעמדו כגורם בינלאומי מוביל בתחומי הכשרת המנהיגות, בדיפלומטיה ציבורית ובהובלה מוסדית, הזוכה להכרה בזכות עקביותו, בהירות ערכיו ותרומתו הממשית לעיצוב עולם ההולם את החזון הנבואי של צדק ושלום.",
|
"color2.text": "ביסוס מעמדו כגורם בינלאומי מוביל בתחומי הכשרת המנהיגות, בדיפלומטיה ציבורית ובהובלה מוסדית, הזוכה להכרה בזכות עקביותו, בהירות ערכיו ותרומתו הממשית לעיצוב עולם ההולם את החזון הנבואי של צדק ושלום.",
|
||||||
|
|
||||||
"title2.title": "ערכים",
|
"title2.title": "ערכים",
|
||||||
|
|
||||||
"values.justice.title": "צדק",
|
"values.justice.title": "צדק",
|
||||||
"values.justice.text": "מחויבות פעילה לסדר צודק, המבוסס על עקרונות מוסריים, על כבוד האדם ועל שמירה על ערכים נצחיים.",
|
"values.justice.text": "מחויבות פעילה לסדר צודק, המבוסס על עקרונות מוסריים, על כבוד האדם ועל שמירה על ערכים נצחיים.",
|
||||||
|
|
||||||
"values.integrity.title": "יושרה",
|
"values.integrity.title": "יושרה",
|
||||||
"values.integrity.text": "הלימה בין מחשבה, דיבור ומעשה; שקיפות מוסדית ואחריותיות במרחב הציבורי.",
|
"values.integrity.text": "הלימה בין מחשבה, דיבור ומעשה; שקיפות מוסדית ואחריותיות במרחב הציבורי.",
|
||||||
|
|
||||||
"values.service.title": "שירות עם שליחות",
|
"values.service.title": "שירות עם שליחות",
|
||||||
"values.service.text": "הלימה בין מחשבה, דיבור ומעשה; שקיפות מוסדית ואחריותיות במרחב הציבורי.",
|
"values.service.text": "הלימה בין מחשבה, דיבור ומעשה; שקיפות מוסדית ואחריותיות במרחב הציבורי.",
|
||||||
|
|
||||||
"values.excellence.title": "מצוינות",
|
"values.excellence.title": "מצוינות",
|
||||||
"values.excellence.text": "קפדנות אינטלקטואלית, מקצועיות וחתירה לשיפור מתמיד בכל תחומי הפעולה.",
|
"values.excellence.text": "קפדנות אינטלקטואלית, מקצועיות וחתירה לשיפור מתמיד בכל תחומי הפעולה.",
|
||||||
|
|
||||||
"values.dialogue.title": "דיאלוג אסטרטגי",
|
"values.dialogue.title": "דיאלוג אסטרטגי",
|
||||||
"values.dialogue.text": "פתיחות לחילופי תרבות, אומות ואמונות, תוך שמירה על עמדות ועקרונות יסוד.",
|
"values.dialogue.text": "פתיחות לחילופי תרבות, אומות ואמונות, תוך שמירה על עמדות ועקרונות יסוד.",
|
||||||
|
|
||||||
"projection.title": "דיפלומטיה ציבורית והשפעה בינלאומית",
|
"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.card1": " קשרים עם מנהיגים פוליטיים, אקדמיים וחברתיים.",
|
||||||
"projection.card2": " תמיכה ברורה ומתמשכת בעם היהודי ובמדינת ישראל, מתוך הכרה במרכזיותה ההיסטורית, הרוחנית והגיאופוליטית.",
|
"projection.card2": " תמיכה ברורה ומתמשכת בעם היהודי ובמדינת ישראל, מתוך הכרה במרכזיותה ההיסטורית, הרוחנית והגיאופוליטית.",
|
||||||
|
|
||||||
"formation.title": "תובניות ותחומי פעילות",
|
"formation.title": "תובניות ותחומי פעילות",
|
||||||
"formation.subtitle": "הכשרה ופיתוח",
|
"formation.subtitle": "הכשרה ופיתוח",
|
||||||
"formation.text": "המרכז מפתח קורסים, סמינרים ותוכניות הכשרה למנהיגים, אנשי מקצוע, בכירים במוסדות ובעלי תפקידים באחריות ציבורית.",
|
"formation.text": "המרכז מפתח קורסים, סמינרים ותוכניות הכשרה למנהיגים, אנשי מקצוע, בכירים במוסדות ובעלי תפקידים באחריות ציבורית.",
|
||||||
"formation.area.title": "תחומי הכשרה",
|
"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.title": "ייעוץ וליווי",
|
||||||
"formation.consulting.text": "ליווי אסטרטגי לארגונים ומוסדות השואפים לעצב וליישם יוזמות בעלות השפעה, המותאמות לערכים ברורים, למטרות רוחביות ולחזון לטווח ארוך.",
|
"formation.consulting.text": "ליווי אסטרטגי לארגונים ומוסדות השואפים לעצב וליישם יוזמות בעלות השפעה, המותאמות לערכים ברורים, למטרות רוחביות ולחזון לטווח ארוך.",
|
||||||
"formation.action.title": "פרויקטים מעשיים",
|
"formation.action.title": "פרויקטים מעשיים",
|
||||||
"formation.action.text": "פיתוח יוזמות מעשיות באזורים שונים שמטרתן להכשיר, למנוע סכסוכים ולהעצים מנהיגות מקומית עם חזון בינלאומית.",
|
"formation.action.text": "פיתוח יוזמות מעשיות באזורים שונים שמטרתן להכשיר, למנוע סכסוכים ולהעצים מנהיגות מקומית עם חזון בינלאומית.",
|
||||||
|
|
||||||
"news.title": "חדשות",
|
"news.title": "חדשות",
|
||||||
"news.text": "עשייה מוסדית והשפעה בינלאומית",
|
"news.text": "עשייה מוסדית והשפעה בינלאומית",
|
||||||
"news.text2": "סקירה זו מציגה את עיקר העשייה, ההישגים והיוזמות של מרכז הממלכה לשלום וצדק ומייסדו.",
|
"news.text2": "סקירה זו מציגה את עיקר העשייה, ההישגים והיוזמות של מרכז הממלכה לשלום וצדק ומייסדו.",
|
||||||
"news.text3": "דף זה מציגה את עיקר העשייה, ההישגים והיוזמות של מרכז הממלכה לשלום וצדק ומייסדו.",
|
"news.text3": "דף זה מציגה את עיקר העשייה, ההישגים והיוזמות של מרכז הממלכה לשלום וצדק ומייסדו.",
|
||||||
"news.buttonLable": "עוד חדשות",
|
"news.buttonLable": "עוד חדשות",
|
||||||
|
|
||||||
"participate.title": "השתתפו | הצטרפו",
|
"participate.title": "השתתפו | הצטרפו",
|
||||||
"participate.text": "להצטרף אלינו זה התחייבות עם ייעוד",
|
"participate.text": "להצטרף אלינו זה התחייבות עם ייעוד",
|
||||||
"participate.text2": "עבודת המרכז מתחזקת עם השתתפותם של אנשים ומוסדות החולקים ערכים ומטרות כלליות משותפות.",
|
"participate.text2": "עבודת המרכז מתחזקת עם השתתפותם של אנשים ומוסדות החולקים ערכים ומטרות כלליות משותפות.",
|
||||||
|
|
@ -195,15 +175,13 @@
|
||||||
"participate.box2.title": "תפוצה מוסדית:",
|
"participate.box2.title": "תפוצה מוסדית:",
|
||||||
"participate.box2.text": "הצגת הייעוד והעשייה של המרכז במרחב הציבורי.",
|
"participate.box2.text": "הצגת הייעוד והעשייה של המרכז במרחב הציבורי.",
|
||||||
"participate.text3": "השלום נבנה באמצעות החלטות אחראיות, מנהיגות מחויבת ופעולה מתמשכת.",
|
"participate.text3": "השלום נבנה באמצעות החלטות אחראיות, מנהיגות מחויבת ופעולה מתמשכת.",
|
||||||
|
|
||||||
"footer.title": "צור קשר",
|
"footer.title": "צור קשר",
|
||||||
"footer.subtitle": "בואו נתחבר סביב חזון וייעוד משותף",
|
"footer.subtitle": "בואו נתחבר סביב חזון וייעוד משותף",
|
||||||
"footer.text": "מרכז הממלכה לשלום וצדק מעמיד ערוצים ישירים לפניות מוסדיות, השתתפות במיזמים ופעילויות בינלאומיות.",
|
"footer.text": "מרכז הממלכה לשלום וצדק מעמיד ערוצים ישירים לפניות מוסדיות, השתתפות במיזמים ופעילויות בינלאומיות.",
|
||||||
"footer.text2": "דוא\"ל: info@centrodelreinodepazyjusticia.com<br /> רשתות חברתיות: עדכונים שוטפים על עשייה, פעילויות והזדמנויות להשתתפות.",
|
"footer.text2": "רשתות חברתיות: עדכונים שוטפים על עשייה, פעילויות והזדמנויות להשתתפות.",
|
||||||
|
"footer.email": "דוא\"ל:",
|
||||||
"footer.form.name": "שם מלא",
|
"footer.form.name": "שם מלא",
|
||||||
"footer.form.mesagge": "כתיבת הודעה",
|
"footer.form.mesagge": "כתיבת הודעה",
|
||||||
"footer.form.button": "שליחה",
|
"footer.form.button": "שליחה",
|
||||||
"footer.reserved": "כל הזכויות שמורות 2026 © Centro del Reino de Paz y Justicia"
|
"footer.reserved": "כל הזכויות שמורות 2026 © Centro del Reino de Paz y Justicia"
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
145
src/i18n/kr.json
145
src/i18n/kr.json
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"nav.logo_line1": "Centro del Reino",
|
"nav.logo_line1": "Sant Wayòm nan",
|
||||||
"nav.logo_line2": "de Paz y Justicia",
|
"nav.logo_line2": "pou Lapè ak Jistis",
|
||||||
"nav.about": "Osijè nou",
|
"nav.about": "Osijè nou",
|
||||||
"nav.news": "Nouvèl",
|
"nav.news": "Nouvèl",
|
||||||
"nav.programs": "Pwogram",
|
"nav.programs": "Pwogram",
|
||||||
|
|
@ -10,10 +10,10 @@
|
||||||
"hero.name": "Doktè. José Benjamín Pérez Matos",
|
"hero.name": "Doktè. José Benjamín Pérez Matos",
|
||||||
"hero.title": "Lidè fondatè",
|
"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”",
|
"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.text1": "Lapè",
|
||||||
"carousel.text2": "Justicia",
|
"carousel.text2": "Jistis",
|
||||||
"info.title": "Construyendo el mundo soñado por los profetas: justicia y paz para Israel y toda la humanidad",
|
"info.title": "Bati mond pwofèt yo te reve a: jistis ak lapè pou Izrayèl e pou tout limanite",
|
||||||
"info.register": "Registrarse",
|
"info.register": "Anrejistre m",
|
||||||
"info.modal.title": "Formulario disponible próximamente",
|
"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.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": [
|
"info.boxes": [
|
||||||
|
|
@ -60,11 +60,11 @@
|
||||||
"hasInput": true
|
"hasInput": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"info.copy1": "El <b>Centro del Reino de Paz y Justicia (CRPJ)</b>es una organización de alcance <b>internacional dedicada a la formación, el diálogo estratégico y la acción pública, orientada a promover la justicia y la paz</b> conforme a los valores eternos proclamados por los profetas, con un compromiso explícito y permanente con Israel y su lugar central en la historia y el destino del mundo.",
|
"info.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": "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_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": "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.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": {
|
"info.endbox": {
|
||||||
"title": "Misión, Visión y Valores Institucionales.",
|
"title": "Misión,Vizyon ak Valè Enstitisyonèl yo",
|
||||||
"buttonLabel": "Kontinye li plis",
|
"buttonLabel": "Kontinye li plis",
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||||
|
|
@ -77,24 +77,24 @@
|
||||||
"carousel1.images": [
|
"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",
|
"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",
|
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||||
"text": "Paz"
|
"text": "Lapè"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"identity.initTitle": "Identidad Institucional",
|
"identity.initTitle": "Idantite enstitisyonèl",
|
||||||
"identity.title": "El Centro del Reino de Paz y Justicia",
|
"identity.title": "Sant Wayòm nan pou Lapè ak Jistis",
|
||||||
"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>",
|
"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>Autoridades</strong> | Centro del Reino de Paz y Justicia",
|
"authority.title": "<strong>Otorite yo</strong> | Sant Wayòm nan pou Lapè ak Jistis",
|
||||||
"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.",
|
"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": "Dr. José Benjamín Pérez Matos | Trayectoria",
|
"title1.title": "Doktè José Benjamín Pérez Matos | Pwojèktwa",
|
||||||
"grid.cards": [
|
"grid.cards": [
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-down-thin",
|
"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",
|
"bgColor": "#EBE5D0",
|
||||||
"textColor": "#003421"
|
"textColor": "#003421"
|
||||||
},
|
},
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-right-thin",
|
"icon": "ph:arrow-circle-right-thin",
|
||||||
"text": "Participación activa en escenarios internacionales.",
|
"text": "Patisipasyon aktif nan anviwònman entènasyonal yo.",
|
||||||
"textColor": "#003421",
|
"textColor": "#003421",
|
||||||
"bgColor": "#BEA48D"
|
"bgColor": "#BEA48D"
|
||||||
},
|
},
|
||||||
|
|
@ -120,7 +120,7 @@
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-up-thin",
|
"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",
|
"textColor": "#EBE5D0",
|
||||||
"bgColor": "#003421"
|
"bgColor": "#003421"
|
||||||
},
|
},
|
||||||
|
|
@ -131,61 +131,62 @@
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-left-thin",
|
"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",
|
"textColor": "#003421",
|
||||||
"bgColor": "#EBE5D0"
|
"bgColor": "#EBE5D0"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"color1.title": "Misión",
|
"color1.title": "Misyon",
|
||||||
"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.",
|
"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": "Visión",
|
"color2.title": "Vizyon",
|
||||||
"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.",
|
"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",
|
"title2.title": "Valores Institucionales",
|
||||||
"values.justice.title": "Justicia",
|
"values.justice.title": "Jistis",
|
||||||
"values.justice.text": "Compromiso activo con un orden justo, basado en principios morales, respeto por la dignidad humana y defensa de valores permanentes.",
|
"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": "Integridad",
|
"values.integrity.title": "Entegrite",
|
||||||
"values.integrity.text": "Coherencia entre pensamiento, palabra y acción; transparencia institucional y responsabilidad en el espacio público.",
|
"values.integrity.text": "Koerans ant panse, pawòl ak aksyon; transparans enstitisyonèl ak responsablite nan esfè piblik la.",
|
||||||
"values.service.title": "Servicio",
|
"values.service.title": "Sèvis",
|
||||||
"values.service.text": "Vocación de acompañamiento y acción orientada a objetivos claros y trascendentes.",
|
"values.service.text": "Vokasyon pou akonpayman ak aksyon ki baze vè objektif ki klè e ki enpòtan.",
|
||||||
"values.excellence.title": "Excelencia",
|
"values.excellence.title": "Ekselans",
|
||||||
"values.excellence.text": "Rigor intelectual, profesionalismo y mejora constante en todas las áreas de trabajo.",
|
"values.excellence.text": "Rigè entelektyèl, pwofesyonalis ak amelyorasyon konstan nan tout domèn travay yo.",
|
||||||
"values.dialogue.title": "Diálogo Estratégico",
|
"values.dialogue.title": "Dyalòg Estratejik",
|
||||||
"values.dialogue.text": "Apertura al intercambio entre culturas, naciones y credos, sin renunciar a convicciones ni principios fundamentales.",
|
"values.dialogue.text": "Ouvèti nan echanj kilti yo, nasyon yo ak kwayans yo, san abandone konviksyon yo ni prensip fondamantal yo.",
|
||||||
"projection.title": "Diplomacia Pública y Proyección Internacional",
|
"projection.title": "Diplomasi Piblik ak Pwojeksyon Entènasyonal",
|
||||||
"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.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": "La vinculación con líderes políticos, académicos y sociales.",
|
"projection.card1": "Koneksyon avèk lidè politik yo, akademik e sosyal yo.",
|
||||||
"projection.card2": "Apoyo claro y permanente al pueblo judío y al Estado de Israel.",
|
"projection.card2": "Yon sipò klè e pèmanan pou pèp jwif la ak Eta Izrayèl la.",
|
||||||
"formation.title": "Formación y Capacitación",
|
"formation.title": "Pwogram yo ak Zòn Aksyon",
|
||||||
"formation.subtitle": "Programas y Área de Acción",
|
"formation.subtitle": "Pwogram yo ak Zòn Aksyon",
|
||||||
"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.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": "Area de Formación",
|
"formation.area.title": "Zòn fòmasyon",
|
||||||
"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.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": "Asesoría y Consultoría",
|
"formation.consulting.title": "Oryantasyon ak Konsiltasyon",
|
||||||
"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.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": "Proyectos de Acción",
|
"formation.action.title": "Pwojè ki gen Aksyon",
|
||||||
"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.",
|
"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": "Noticias",
|
"news.title": "Nouvèl",
|
||||||
"news.text": "Actualidad institucional y proyección internacional",
|
"news.text": "Sitiyasyon enstitisyonèl aktyèl ak pwojeksyon entènasyonal",
|
||||||
"news.text2": "Esta sección reúne las principales actividades, reconocimientos y acciones del Centro del Reino de Paz y Justicia y de su fundador.",
|
"news.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.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.buttonLable": "Voir plus de nouvelles",
|
||||||
"news.seemore": "Ver Más",
|
"news.seemore": "Voir Plus",
|
||||||
"news.all": "Todas",
|
"news.all": "Tozut",
|
||||||
"news.allYears": "Todos los años",
|
"news.allYears": "Tout ane yo",
|
||||||
"participate.title": "Participa | Colabora",
|
"participate.title": "Patisipe/ kolabore",
|
||||||
"participate.text": "Sumarse es asumir un compromiso con propósito",
|
"participate.text": "Rantre vle di pran yon angajman ak yon objektif",
|
||||||
"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.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": "Voluntariado:",
|
"participate.box1.title": "Volontè:",
|
||||||
"participate.box1.text": "colaboración en proyectos formativos, institucionales o internacionales.",
|
"participate.box1.text": "kolaborasyon nan pwojè fòmasyon yo, enstitisyonèl yo oswa entènasyonal yo.",
|
||||||
"participate.box2.title": "Difusión institucional:",
|
"participate.box2.title": "Difizyon enstitisyonèl:",
|
||||||
"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.box2.text": "anplifikasyon misyon an ak aksyon yo nan Sant Wayòm pou Lapè ak Jistis (CRPJ) nan espas piblik yo.",
|
||||||
"participate.text3": "La paz se construye mediante decisiones responsables, liderazgo comprometido y acción sostenida.",
|
"participate.text3": "Lapè bati atravè desizyon responsab yo, lidèchip angaje, ak aksyon ki soutni.",
|
||||||
"footer.title": "Contacto",
|
"footer.title": "Kontakte",
|
||||||
"footer.subtitle": "Conectemos con visión y propósito ",
|
"footer.subtitle": "Ann konekte ak vizyon e objektif",
|
||||||
"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.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.text2": "Correo electrónico:<br> <strong>developer@centrodelreinodepazyjusticia.com</strong><br /> Redes sociales: actualizaciones permanentes sobre actividades y convocatorias.",
|
"footer": "Imèl:",
|
||||||
"footer.form.name": "Nombre y Apellido",
|
"footer.text2": "Rezo sosyal yo: mizajou konstan sou aktivite yo e sou anons yo",
|
||||||
"footer.form.mesagge": "Escriba su mensaje",
|
"footer.form.name": "Non e Siyati",
|
||||||
"footer.form.button": "Enviar",
|
"footer.form.mesagge": "Tape mesaj ou",
|
||||||
"footer.reserved": "©2026. Todos los Derechos Reservados. Centro del Reino de Paz y Justicia"
|
"footer.form.button": "Voye",
|
||||||
|
"footer.reserved": "©2026. Tout dwa yo rezève. Sant Wayòm pou Lapè ak Jistis"
|
||||||
}
|
}
|
||||||
|
|
@ -7,14 +7,11 @@
|
||||||
"nav.archive": "Arquivo",
|
"nav.archive": "Arquivo",
|
||||||
"nav.nations": "Nações",
|
"nav.nations": "Nações",
|
||||||
"nav.contact": "Contato",
|
"nav.contact": "Contato",
|
||||||
|
|
||||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||||
"hero.title": "Líder fundador",
|
"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.”",
|
"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.text1": "Paz",
|
||||||
"carousel.text2": "Justiça",
|
"carousel.text2": "Justiça",
|
||||||
|
|
||||||
"info.title": "Construindo o mundo sonhado pelos profetas: justiça e paz para Israel e toda a humanidade",
|
"info.title": "Construindo o mundo sonhado pelos profetas: justiça e paz para Israel e toda a humanidade",
|
||||||
"info.register": "Cadastrar-me",
|
"info.register": "Cadastrar-me",
|
||||||
"info.modal.title": "Formulário disponível em breve",
|
"info.modal.title": "Formulário disponível em breve",
|
||||||
|
|
@ -30,7 +27,7 @@
|
||||||
"textColor": "text-[#003421]",
|
"textColor": "text-[#003421]",
|
||||||
"sizeText": "text-xl",
|
"sizeText": "text-xl",
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"url":"#projection",
|
"url": "#projection",
|
||||||
"hasIcon": true,
|
"hasIcon": true,
|
||||||
"hasInput": false
|
"hasInput": false
|
||||||
},
|
},
|
||||||
|
|
@ -72,33 +69,28 @@
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||||
"hasIcon": true,
|
"hasIcon": true,
|
||||||
"url":"#mision",
|
"url": "#mision",
|
||||||
"bgColor": "#CBA16A",
|
"bgColor": "#CBA16A",
|
||||||
"titleColor": "text-tertiary",
|
"titleColor": "text-tertiary",
|
||||||
"sizeTitle": "text-2xl"
|
"sizeTitle": "text-2xl"
|
||||||
},
|
},
|
||||||
|
|
||||||
"carousel1.images": [
|
"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",
|
"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"
|
"text": "Justiça"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||||
"text": "Paz"
|
"text": "Paz"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"identity.initTitle": "Identidade Institucional",
|
"identity.initTitle": "Identidade Institucional",
|
||||||
"identity.title": "O Centro do Reino de Paz e Justiça",
|
"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>",
|
"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.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.",
|
"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",
|
"title1.title": "Dr. José Benjamín Pérez Matos | Trajetória",
|
||||||
|
"grid.cards": [
|
||||||
"grid.cards" : [
|
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-down-thin",
|
"icon": "ph:arrow-circle-down-thin",
|
||||||
|
|
@ -144,35 +136,25 @@
|
||||||
"bgColor": "#EBE5D0"
|
"bgColor": "#EBE5D0"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"color1.title": "Missão",
|
"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.",
|
"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.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.",
|
"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",
|
"title2.title": "Valores Institucionais",
|
||||||
|
|
||||||
"values.justice.title": "Justiça",
|
"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.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.title": "Integridade",
|
||||||
"values.integrity.text": "Coerência entre pensamento, palavra e ação; transparência institucional e responsabilidade no espaço público.",
|
"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.title": "Serviço",
|
||||||
"values.service.text": "Vocação de acompanhamento e ação orientada a objetivos claros e transcendentes.",
|
"values.service.text": "Vocação de acompanhamento e ação orientada a objetivos claros e transcendentes.",
|
||||||
|
|
||||||
"values.excellence.title": "Excelência",
|
"values.excellence.title": "Excelência",
|
||||||
"values.excellence.text": "Rigor intelectual, profissionalismo e melhoria constante em todas as áreas de atuação.",
|
"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.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.",
|
"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.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.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.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.",
|
"projection.card2": "Apoio claro e permanente ao povo judeu e ao Estado de Israel.",
|
||||||
|
|
||||||
"formation.title": "Formação e Capacitação",
|
"formation.title": "Formação e Capacitação",
|
||||||
"formation.subtitle": "Programas e Área de Açã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.",
|
"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.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.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.",
|
"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.title": "Notícias",
|
||||||
"news.text": "Atualidade Institucional e projeção internacional",
|
"news.text": "Atualidade Institucional e projeção internacional",
|
||||||
"news.text2": "Esta seção reúne as principais atividades, reconhecimentos e ações do Centro do Reino de Paz e Justiça e de seu fundador.",
|
"news.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.seemore": "Ver Mais",
|
||||||
"news.all": "Todos",
|
"news.all": "Todos",
|
||||||
"news.allYears": "Todos os anos",
|
"news.allYears": "Todos os anos",
|
||||||
|
|
||||||
"participate.title": "Participe | Colabore",
|
"participate.title": "Participe | Colabore",
|
||||||
"participate.text": "Unir-se é assumir um compromisso com propósito.",
|
"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:",
|
"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.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.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.",
|
"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.title": "Contato",
|
||||||
"footer.subtitle": "Conectemos com visão e propósito",
|
"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.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.name": "Nome completo",
|
||||||
"footer.form.mesagge": "Escreva a sua mensagem",
|
"footer.form.mesagge": "Escreva a sua mensagem",
|
||||||
"footer.form.button": "Enviar",
|
"footer.form.button": "Enviar",
|
||||||
|
|
|
||||||
|
|
@ -7,14 +7,11 @@
|
||||||
"nav.archive": "Archivo",
|
"nav.archive": "Archivo",
|
||||||
"nav.nations": "Naciones",
|
"nav.nations": "Naciones",
|
||||||
"nav.contact": "Twandikire",
|
"nav.contact": "Twandikire",
|
||||||
|
|
||||||
"hero.name": "Dr. José Benjamín Pérez Matos",
|
"hero.name": "Dr. José Benjamín Pérez Matos",
|
||||||
"hero.title": "Umuyobozi wabishinze",
|
"hero.title": "Umuyobozi wabishinze",
|
||||||
"hero.body": "“Inzozi z’ubuzima bwanjye ni ukubona isohozwa ry’iyerekwa ry’abahanuzi: isi irimo ubutabera n’amahoro ku bw’inyungu ya Isirayeli n’ibiremwabantubose.”",
|
"hero.body": "“Inzozi z’ubuzima bwanjye ni ukubona isohozwa ry’iyerekwa ry’abahanuzi: isi irimo ubutabera n’amahoro ku bw’inyungu ya Isirayeli n’ibiremwabantubose.”",
|
||||||
|
|
||||||
"carousel.text1": "Amahoro",
|
"carousel.text1": "Amahoro",
|
||||||
"carousel.text2": "Ubutabera",
|
"carousel.text2": "Ubutabera",
|
||||||
|
|
||||||
"info.title": "Kubaka isi abahanuzi barose: isi irimo ubutabera n’amahoro ku Isirayeli n’abantu bose",
|
"info.title": "Kubaka isi abahanuzi barose: isi irimo ubutabera n’amahoro ku Isirayeli n’abantu bose",
|
||||||
"info.register": "Kwiyandikisha",
|
"info.register": "Kwiyandikisha",
|
||||||
"info.modal.title": "Ifishi iracyategurwa",
|
"info.modal.title": "Ifishi iracyategurwa",
|
||||||
|
|
@ -30,7 +27,7 @@
|
||||||
"textColor": "text-[#003421]",
|
"textColor": "text-[#003421]",
|
||||||
"sizeText": "text-xl",
|
"sizeText": "text-xl",
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"url":"#projection",
|
"url": "#projection",
|
||||||
"hasIcon": true,
|
"hasIcon": true,
|
||||||
"hasInput": false
|
"hasInput": false
|
||||||
},
|
},
|
||||||
|
|
@ -72,33 +69,28 @@
|
||||||
"hasButton": true,
|
"hasButton": true,
|
||||||
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
"bgImage": "https://ik.imagekit.io/crpy/tr:o-20/white-lion.png",
|
||||||
"hasIcon": true,
|
"hasIcon": true,
|
||||||
"url":"#mision",
|
"url": "#mision",
|
||||||
"bgColor": "#CBA16A",
|
"bgColor": "#CBA16A",
|
||||||
"titleColor": "text-tertiary",
|
"titleColor": "text-tertiary",
|
||||||
"sizeTitle": "text-2xl"
|
"sizeTitle": "text-2xl"
|
||||||
},
|
},
|
||||||
|
|
||||||
"carousel1.images": [
|
"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",
|
"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"
|
"text": "Ubutabera"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
"image": "https://ik.imagekit.io/crpy/amigos-bn.webp",
|
||||||
"text": "Amahoro"
|
"text": "Amahoro"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"identity.initTitle": "Indangamuntu y’Ikigo",
|
"identity.initTitle": "Indangamuntu y’Ikigo",
|
||||||
"identity.title": "Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera",
|
"identity.title": "Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera",
|
||||||
"identity.body": "<p>Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera ni umuryango mpuzamahanga ugizwe n’ibihumbi by’abakorerabushake bari mu bihugu bitandukanye, bakora mu buryo buhuza ibikorwa, bayobowe kandi bagengwa n’ubuyobozi bwa Dr. José Benjamín Pérez Matos, ari we wenyine uhagarariye Centro del Reino de Paz y Justicia (CRPJ).</p><p>Ikigo gifite ibikorwa bikora mu migabane itandukanye y’isi, gihuza abantu, abayobozi, imiryango n’inzego zisangiye icyerekezo kimwe: kugeza indangagaciro z’Ubwami mu buzima bwa rusange no guhangana, mu buryo bufite inshingano n’icyizere, n’imbogamizi isi ihura na zo muri iki gihe.</p><p>Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera cyashinzwe gifite inshingano isobanutse: kubaka ibiraro bihuriza hamwe ukwizera n’ibikorwa mu rwego rwa rusange, gihuza gutekereza ko mumwuka, uburezi bw’ubwenge n’ubwitange bufatika, kigamije gutegura inzira igana mu gihe gishya, kirangwa n’umuco w’ubutabera bwisumbuyeho, amahoro nyakuri n’isi nziza kurushaho, hakurikijwe iyerekwa ry’abahanuzi.”</p><p>Icyerekezo cyayo gishingiye ku ngamba, ku rwego mpuzamahanga kandi kigana ku hazaza, kizi neza amakimbirane agaragara, amakimbirane y’umuco, imbogamizi za geopolitiki no gukenerwa k’ubuyobozi bukomeye bushobora gukora neza mu gihe cy’impinduka z’isi yose.</p>",
|
"identity.body": "<p>Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera ni umuryango mpuzamahanga ugizwe n’ibihumbi by’abakorerabushake bari mu bihugu bitandukanye, bakora mu buryo buhuza ibikorwa, bayobowe kandi bagengwa n’ubuyobozi bwa Dr. José Benjamín Pérez Matos, ari we wenyine uhagarariye Centro del Reino de Paz y Justicia (CRPJ).</p><p>Ikigo gifite ibikorwa bikora mu migabane itandukanye y’isi, gihuza abantu, abayobozi, imiryango n’inzego zisangiye icyerekezo kimwe: kugeza indangagaciro z’Ubwami mu buzima bwa rusange no guhangana, mu buryo bufite inshingano n’icyizere, n’imbogamizi isi ihura na zo muri iki gihe.</p><p>Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera cyashinzwe gifite inshingano isobanutse: kubaka ibiraro bihuriza hamwe ukwizera n’ibikorwa mu rwego rwa rusange, gihuza gutekereza ko mumwuka, uburezi bw’ubwenge n’ubwitange bufatika, kigamije gutegura inzira igana mu gihe gishya, kirangwa n’umuco w’ubutabera bwisumbuyeho, amahoro nyakuri n’isi nziza kurushaho, hakurikijwe iyerekwa ry’abahanuzi.”</p><p>Icyerekezo cyayo gishingiye ku ngamba, ku rwego mpuzamahanga kandi kigana ku hazaza, kizi neza amakimbirane agaragara, amakimbirane y’umuco, imbogamizi za geopolitiki no gukenerwa k’ubuyobozi bukomeye bushobora gukora neza mu gihe cy’impinduka z’isi yose.</p>",
|
||||||
|
|
||||||
"authority.title": "<strong>Abayobozi</strong> | Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera",
|
"authority.title": "<strong>Abayobozi</strong> | Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera",
|
||||||
"authority.body": "Dr. José Benjamín Pérez Matos ni we washinze kandi akaba ari we wenyine uhagarariye Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera. Ubuyobozi bwe buhuza icyerekezo cyo mu mwuka, uburezi bw’ubwenge, ibikorwa bya rusange n’icyerekezo mpuzamahanga",
|
"authority.body": "Dr. José Benjamín Pérez Matos ni we washinze kandi akaba ari we wenyine uhagarariye Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera. Ubuyobozi bwe buhuza icyerekezo cyo mu mwuka, uburezi bw’ubwenge, ibikorwa bya rusange n’icyerekezo mpuzamahanga",
|
||||||
|
|
||||||
"title1.title": "Dr. José Benjamín Pérez Matos | Inzira",
|
"title1.title": "Dr. José Benjamín Pérez Matos | Inzira",
|
||||||
|
"grid.cards": [
|
||||||
"grid.cards" : [
|
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"icon": "ph:arrow-circle-down-thin",
|
"icon": "ph:arrow-circle-down-thin",
|
||||||
|
|
@ -144,35 +136,25 @@
|
||||||
"bgColor": "#EBE5D0"
|
"bgColor": "#EBE5D0"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"color1.title": "Inshingano",
|
"color1.title": "Inshingano",
|
||||||
"color1.text": "Gutoza abayobozi, guteza imbere ibikorwa by’uburezi no gushyigikira ibikorwa bya rusange bigamije ubutabera n’amahoro, bishingiye ku ndangagaciro z’ubunyangamugayo n’imbaraga zo mu mwuka zihamye, hamwe n’iyemezwa ryeruye ku Isirayeli no ku nshingano yo kugira uruhare mu mibereho myiza n’ituze ry’ikiremwamuntucyose muri rusange",
|
"color1.text": "Gutoza abayobozi, guteza imbere ibikorwa by’uburezi no gushyigikira ibikorwa bya rusange bigamije ubutabera n’amahoro, bishingiye ku ndangagaciro z’ubunyangamugayo n’imbaraga zo mu mwuka zihamye, hamwe n’iyemezwa ryeruye ku Isirayeli no ku nshingano yo kugira uruhare mu mibereho myiza n’ituze ry’ikiremwamuntucyose muri rusange",
|
||||||
|
|
||||||
"color2.title": "Icyerekezo",
|
"color2.title": "Icyerekezo",
|
||||||
"color2.text": "Kuba ikigo kizwi ku rwego mpuzamahanga nk’icyitegererezo mu gutegura ubuyobozi, diplomasi rusange n’iterambere ry’inzego, gishimirwa ku bw’ukwiyubaha kwacyo, ubusobanuro bw’indangagaciro zacyo n’uruhare rufatika kigira mu kubaka isi ijyanye n’iyerekwa ry’abahanuzi ry’ubutabera n’amahoro",
|
"color2.text": "Kuba ikigo kizwi ku rwego mpuzamahanga nk’icyitegererezo mu gutegura ubuyobozi, diplomasi rusange n’iterambere ry’inzego, gishimirwa ku bw’ukwiyubaha kwacyo, ubusobanuro bw’indangagaciro zacyo n’uruhare rufatika kigira mu kubaka isi ijyanye n’iyerekwa ry’abahanuzi ry’ubutabera n’amahoro",
|
||||||
|
|
||||||
"title2.title": "Indangagaciro z’Ikigo",
|
"title2.title": "Indangagaciro z’Ikigo",
|
||||||
|
|
||||||
"values.justice.title": "Ubutabera",
|
"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.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.title": "Ubunyangamugayo",
|
||||||
"values.integrity.text": "Guhuza ibitekerezo, ijambo n'ibikorwa; gukorera mu mucyo n'inshingano mu nzego rusange",
|
"values.integrity.text": "Guhuza ibitekerezo, ijambo n'ibikorwa; gukorera mu mucyo n'inshingano mu nzego rusange",
|
||||||
|
|
||||||
"values.service.title": "Serivisi",
|
"values.service.title": "Serivisi",
|
||||||
"values.service.text": "Impano yo guherekeza no gukora ibikorwa bigamije intego zisobanutse kandi zifite agaciro karenze",
|
"values.service.text": "Impano yo guherekeza no gukora ibikorwa bigamije intego zisobanutse kandi zifite agaciro karenze",
|
||||||
|
|
||||||
"values.excellence.title": "Ubudashyikirwa",
|
"values.excellence.title": "Ubudashyikirwa",
|
||||||
"values.excellence.text": "Ubusobanuro bwimbitse mu bwenge, ubunyamwuga no gukomeza gutera imbere mu buryo buhoraho mu nzego zose z’imirimo.”",
|
"values.excellence.text": "Ubusobanuro bwimbitse mu bwenge, ubunyamwuga no gukomeza gutera imbere mu buryo buhoraho mu nzego zose z’imirimo.”",
|
||||||
|
|
||||||
"values.dialogue.title": "Ikiganiro gishingiye ku ngamba",
|
"values.dialogue.title": "Ikiganiro gishingiye ku ngamba",
|
||||||
"values.dialogue.text": "Gufungukira kungurana ibitekerezo hagati y’imuco, ibihugu n’imyemerere, ariko hatitawe ku kureka imyemerere cyangwa amahame y’ibanze",
|
"values.dialogue.text": "Gufungukira kungurana ibitekerezo hagati y’imuco, ibihugu n’imyemerere, ariko hatitawe ku kureka imyemerere cyangwa amahame y’ibanze",
|
||||||
|
|
||||||
"projection.title": "Diplomasi rusange n’ikorwa ry’icyerekezo mpuzamahanga",
|
"projection.title": "Diplomasi rusange n’ikorwa ry’icyerekezo mpuzamahanga",
|
||||||
"projection.text": "<p>“Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera giteza imbere diplomasi rusange igamije kubaka ku bushishozi amasano meza ashingiye ku ndangagaciro, umuco n’ingamba hagati y’abaturage, inzego n’abayobozi ku isi.”</p><p><strong>Binyuze mu nama, ingendo mpuzamahanga, amahuriro n’imikoranire y’inzegoCentro del Reino de Paz y Justicia (CRPJ) gikomeza imbere</strong></p><p><ul><li>Ikiganiro hagati y’amadini atandukanye n’imico itandukanye gishingiye ku ndangagaciro zihamye.</li><li>Kurengera ubutabera n’amahoro mu rwego mpuzamahanga.</li><li>Guhuza imikoranire n’abayobozi ba politiki, abashakashatsi no mu mibereho rusange</li><li>Gushyigikira kugaragara kandi guhoraho ubwoko bw’Abayahudi ndetse na Leta ya Isiraheli, hamenyekanishwa akamaro kabo mu mateka, mu by’umwuka no mu ruhando rwa politiki mpuzamahanga.</li></ul></p><p>Uku kwaguka ku rwego mpuzamahanga gushyira Centro del Reino de Paz y Justicia (CRPJ) mu rwego rw’abagize uruhare rukomeye mu biganiro mpuzamahanga ku hazaza h’isi, ituze mpuzamahanga n’iyubahirizwa ry’indangagaciro z’ubuhanuzi.</p>",
|
"projection.text": "<p>“Ihuriro ry’Ubwami bw’Amahoro n’Ubutabera giteza imbere diplomasi rusange igamije kubaka ku bushishozi amasano meza ashingiye ku ndangagaciro, umuco n’ingamba hagati y’abaturage, inzego n’abayobozi ku isi.”</p><p><strong>Binyuze mu nama, ingendo mpuzamahanga, amahuriro n’imikoranire y’inzegoCentro del Reino de Paz y Justicia (CRPJ) gikomeza imbere</strong></p><p><ul><li>Ikiganiro hagati y’amadini atandukanye n’imico itandukanye gishingiye ku ndangagaciro zihamye.</li><li>Kurengera ubutabera n’amahoro mu rwego mpuzamahanga.</li><li>Guhuza imikoranire n’abayobozi ba politiki, abashakashatsi no mu mibereho rusange</li><li>Gushyigikira kugaragara kandi guhoraho ubwoko bw’Abayahudi ndetse na Leta ya Isiraheli, hamenyekanishwa akamaro kabo mu mateka, mu by’umwuka no mu ruhando rwa politiki mpuzamahanga.</li></ul></p><p>Uku kwaguka ku rwego mpuzamahanga gushyira Centro del Reino de Paz y Justicia (CRPJ) mu rwego rw’abagize uruhare rukomeye mu biganiro mpuzamahanga ku hazaza h’isi, ituze mpuzamahanga n’iyubahirizwa ry’indangagaciro z’ubuhanuzi.</p>",
|
||||||
"projection.card1": "Guhuza imikoranire n’abayobozi ba politiki, abashakashatsi no mu mibereho rusange",
|
"projection.card1": "Guhuza imikoranire n’abayobozi ba politiki, abashakashatsi no mu mibereho rusange",
|
||||||
"projection.card2": "Gushyigikira mu buryo bugaragara kandi buhoraho Abayahudi ndetse na Leta ya Isiraheli.",
|
"projection.card2": "Gushyigikira mu buryo bugaragara kandi buhoraho Abayahudi ndetse na Leta ya Isiraheli.",
|
||||||
|
|
||||||
"formation.title": "Amahugurwa n’Ubushobozi",
|
"formation.title": "Amahugurwa n’Ubushobozi",
|
||||||
"formation.subtitle": "Gahunda n’Inzego z’Ibikorwa",
|
"formation.subtitle": "Gahunda n’Inzego z’Ibikorwa",
|
||||||
"formation.text": "El <strong>Centro del Reino de Paz y Justicia (CRPJ) gitegura amasomo, amahugurwa na gahunda zo kongerera ubumenyi zigenewe abayobozi, abahanga mu by’umwuga, abahagarariye inzego zitandukanye n’abafite inshingano mu ruhame.",
|
"formation.text": "El <strong>Centro del Reino de Paz y Justicia (CRPJ) gitegura amasomo, amahugurwa na gahunda zo kongerera ubumenyi zigenewe abayobozi, abahanga mu by’umwuga, abahagarariye inzego zitandukanye n’abafite inshingano mu ruhame.",
|
||||||
|
|
@ -182,7 +164,6 @@
|
||||||
"formation.consulting.text": "Guherekeza mu buryo bw’ingenzi imiryango n’inzego zishaka gutegura no gushyira mu bikorwa gahunda zigira ingaruka nziza, zishingiye ku ndangagaciro zihamye, intego zihuza inzego zitandukanye n’icyerekezo kirambye kireba kure.",
|
"formation.consulting.text": "Guherekeza mu buryo bw’ingenzi imiryango n’inzego zishaka gutegura no gushyira mu bikorwa gahunda zigira ingaruka nziza, zishingiye ku ndangagaciro zihamye, intego zihuza inzego zitandukanye n’icyerekezo kirambye kireba kure.",
|
||||||
"formation.action.title": "Imishinga y’ibikorwa",
|
"formation.action.title": "Imishinga y’ibikorwa",
|
||||||
"formation.action.text": "Gushyira mu bikorwa imishinga ifatika mu turere dutandukanye, igamije amahugurwa, gukumira amakimbirane no kongerera imbaraga ubuyobozi bw’aho hantu bufite icyerekezo mpuzamahanga.",
|
"formation.action.text": "Gushyira mu bikorwa imishinga ifatika mu turere dutandukanye, igamije amahugurwa, gukumira amakimbirane no kongerera imbaraga ubuyobozi bw’aho hantu bufite icyerekezo mpuzamahanga.",
|
||||||
|
|
||||||
"news.title": "Amakuru",
|
"news.title": "Amakuru",
|
||||||
"news.text": "Amakuru y’inzego n’aho umuryango ugeze ku rwego mpuzamahanga",
|
"news.text": "Amakuru y’inzego n’aho umuryango ugeze ku rwego mpuzamahanga",
|
||||||
"news.text2": "Iki gice gikusanya ibikorwa by’ingenzi, ishimwe n’ibikorwa bya buri munsi bya Centro del Reino de Paz y Justician’iby’wawushinze",
|
"news.text2": "Iki gice gikusanya ibikorwa by’ingenzi, ishimwe n’ibikorwa bya buri munsi bya Centro del Reino de Paz y Justician’iby’wawushinze",
|
||||||
|
|
@ -191,7 +172,6 @@
|
||||||
"news.seemore": "Reba byinshi",
|
"news.seemore": "Reba byinshi",
|
||||||
"news.all": "byose",
|
"news.all": "byose",
|
||||||
"news.allYears": "Amaezi yose",
|
"news.allYears": "Amaezi yose",
|
||||||
|
|
||||||
"participate.title": "Uruhare rwawe | Imikoranire",
|
"participate.title": "Uruhare rwawe | Imikoranire",
|
||||||
"participate.text": "Kwinjira ni ukwiyemeza inshingano ifite intego.",
|
"participate.text": "Kwinjira ni ukwiyemeza inshingano ifite intego.",
|
||||||
"participate.text2": "Umurimo wa Centro del Reino de Paz y Justicia urushaho gukomera binyuze mu ruhare rw’abantu n’inzego zihuza n’indangagaciro n’intego zacyo rusange. Uburyo bwo kugira uruhare:",
|
"participate.text2": "Umurimo wa Centro del Reino de Paz y Justicia urushaho gukomera binyuze mu ruhare rw’abantu n’inzego zihuza n’indangagaciro n’intego zacyo rusange. Uburyo bwo kugira uruhare:",
|
||||||
|
|
@ -200,11 +180,11 @@
|
||||||
"participate.box2.title": "Gukwirakwiza amakuru y’ikigo:",
|
"participate.box2.title": "Gukwirakwiza amakuru y’ikigo:",
|
||||||
"participate.box2.text": "Gukwiza no gutangaza ubutumwa n’ibikorwa bya Centro del Reino de Paz y Justicia (CRPJ) mu ruhame.",
|
"participate.box2.text": "Gukwiza no gutangaza ubutumwa n’ibikorwa bya Centro del Reino de Paz y Justicia (CRPJ) mu ruhame.",
|
||||||
"participate.text3": "Amahoro yubakwa binyuze mu byemezo bifite inshingano, ubuyobozi bufite ubushake n’inyito ihamye, ndetse n’ibikorwa bikomeza kandi birambye.",
|
"participate.text3": "Amahoro yubakwa binyuze mu byemezo bifite inshingano, ubuyobozi bufite ubushake n’inyito ihamye, ndetse n’ibikorwa bikomeza kandi birambye.",
|
||||||
|
|
||||||
"footer.title": "Twandikire",
|
"footer.title": "Twandikire",
|
||||||
"footer.subtitle": "Reka duhuze imbaraga dufite icyerekezo n’intego imwe.",
|
"footer.subtitle": "Reka duhuze imbaraga dufite icyerekezo n’intego imwe.",
|
||||||
"footer.text": "El <strong>Centro del Reino de Paz y Justicia</strong> inzira zitaziguye zo gutanga ibibazo by’inzego, kugira uruhare muri gahunda n’ibikorwa mpuzamahanga.",
|
"footer.text": "El <strong>Centro del Reino de Paz y Justicia</strong> inzira zitaziguye zo gutanga ibibazo by’inzego, kugira uruhare muri gahunda n’ibikorwa mpuzamahanga.",
|
||||||
"footer.text2": "Imeyili:<br> <strong>developer@centrodelreinodepazyjusticia.com</strong><br /> Imbuga nkoranyambaga: amakuru ahoraho ku bikorwa n’amatangazo y’inama cyangwa ibikorwa bitandukanye.",
|
"footer.text2": "Imbuga nkoranyambaga: amakuru ahoraho ku bikorwa n’amatangazo y’inama cyangwa ibikorwa bitandukanye.",
|
||||||
|
"footer.email": "Imeyili: ",
|
||||||
"footer.form.name": "Amazina yombi",
|
"footer.form.name": "Amazina yombi",
|
||||||
"footer.form.mesagge": "Andika ubutumwa bwawe",
|
"footer.form.mesagge": "Andika ubutumwa bwawe",
|
||||||
"footer.form.button": "Ohereza",
|
"footer.form.button": "Ohereza",
|
||||||
|
|
|
||||||
|
|
@ -1,27 +1,22 @@
|
||||||
---
|
---
|
||||||
import BaseHead from "../components/BaseHead.astro";
|
import BaseHead from "../components/BaseHead.astro";
|
||||||
import Footer from "../components/Footer.astro";
|
|
||||||
import "../styles/global.css";
|
import "../styles/global.css";
|
||||||
import "@fontsource/poppins/100.css";
|
import "@fontsource/poppins/100.css";
|
||||||
import "@fontsource/poppins/400.css";
|
import "@fontsource/poppins/400.css";
|
||||||
import "@fontsource/poppins/500.css";
|
import "@fontsource/poppins/500.css";
|
||||||
import "@fontsource/poppins/700.css";
|
import "@fontsource/poppins/700.css";
|
||||||
import "@fontsource-variable/kameron";
|
import "@fontsource-variable/kameron";
|
||||||
import ShareSticky from "../components/ShareSticky.vue";
|
import ShareSticky from "../components/ShareSticky.vue";
|
||||||
import { routeTranslations } from "../i18n";
|
import { routeTranslations } from "../i18n";
|
||||||
const {
|
const { title, description, image, url, date } = Astro.props;
|
||||||
title,
|
|
||||||
description,
|
|
||||||
image,
|
|
||||||
url,
|
|
||||||
date
|
|
||||||
} = Astro.props;
|
|
||||||
|
|
||||||
const currentLocale = Astro.currentLocale ?? 'es';
|
const currentLocale = Astro.currentLocale ?? "es";
|
||||||
const direction = currentLocale === 'he' ? 'rtl' : 'ltr';
|
const direction = currentLocale === "he" ? "rtl" : "ltr";
|
||||||
|
|
||||||
const newsSegments = Object.values(routeTranslations.news);
|
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">
|
<html lang={currentLocale} dir={direction} class="scroll-smooth">
|
||||||
|
|
@ -33,18 +28,15 @@ const isNewsPage = newsSegments.some(segment => Astro.url.pathname.includes(`/${
|
||||||
date={date}
|
date={date}
|
||||||
/>
|
/>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('contextmenu', (event) => {
|
document.addEventListener("contextmenu", (event) => {
|
||||||
const target = event.target as HTMLElement;
|
const target = event.target as HTMLElement;
|
||||||
if (target.tagName === 'IMG') {
|
if (target.tagName === "IMG") {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<body class="font-primary">
|
<body class="font-primary">
|
||||||
{isNewsPage && (
|
{isNewsPage && <ShareSticky client:only url={Astro.url.href} />}
|
||||||
<ShareSticky client:only url={Astro.url.href} />
|
|
||||||
)}
|
|
||||||
<slot />
|
<slot />
|
||||||
<Footer />
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue