ly. Default OBJECT. * @return WP_Term|array|WP_Error|null Type is based on $output value. */ function get_category_by_path( $category_path, $full_match = true, $output = OBJECT ) { $category_path = rawurlencode( urldecode( $category_path ) ); $category_path = str_replace( '%2F', '/', $category_path ); $category_path = str_replace( '%20', ' ', $category_path ); $category_paths = '/' . trim( $category_path, '/' ); $leaf_path = sanitize_title( basename( $category_paths ) ); $category_paths = explode( '/', $category_paths ); $full_path = ''; foreach ( (array) $category_paths as $pathdir ) { $full_path .= ( '' !== $pathdir ? '/' : '' ) . sanitize_title( $pathdir ); } $categories = get_terms( array( 'taxonomy' => 'category', 'get' => 'all', 'slug' => $leaf_path, ) ); if ( empty( $categories ) ) { return; } foreach ( $categories as $category ) { $path = '/' . $leaf_path; $curcategory = $category; while ( ( 0 !== $curcategory->parent ) && ( $curcategory->parent !== $curcategory->term_id ) ) { $curcategory = get_term( $curcategory->parent, 'category' ); if ( is_wp_error( $curcategory ) ) { return $curcategory; } $path = '/' . $curcategory->slug . $path; } if ( $path === $full_path ) { $category = get_term( $category->term_id, 'category', $output ); _make_cat_compat( $category ); return $category; } } // If full matching is not required, return the first cat that matches the leaf. if ( ! $full_match ) { $category = get_term( reset( $categories )->term_id, 'category', $output ); _make_cat_compat( $category ); return $category; } } /** * Retrieves a category object by category slug. * * @since 2.3.0 * * @param string $slug The category slug. * @return object|false Category data object on success, false if not found. */ function get_category_by_slug( $slug ) { $category = get_term_by( 'slug', $slug, 'category' ); if ( $category ) { _make_cat_compat( $category ); } return $category; } /** * Retrieves the ID of a category from its name. * * @since 1.0.0 * * @param string $cat_name Category name. * @return int Category ID on success, 0 if the category doesn't exist. */ function get_cat_ID( $cat_name ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid $cat = get_term_by( 'name', $cat_name, 'category' ); if ( $cat ) { return $cat->term_id; } return 0; } /** * Retrieves the name of a category from its ID. * * @since 1.0.0 * * @param int $cat_id Category ID. * @return string Category name, or an empty string if the category doesn't exist. */ function get_cat_name( $cat_id ) { $cat_id = (int) $cat_id; $category = get_term( $cat_id, 'category' ); if ( ! $category || is_wp_error( $category ) ) { return ''; } return $category->name; } /** * Checks if a category is an ancestor of another category. * * You can use either an ID or the category object for both parameters. * If you use an integer, the category will be retrieved. * * @since 2.1.0 * * @param int|object $cat1 ID or object to check if this is the parent category. * @param int|object $cat2 The child category. * @return bool Whether $cat2 is child of $cat1. */ function cat_is_ancestor_of( $cat1, $cat2 ) { return term_is_ancestor_of( $cat1, $cat2, 'category' ); } /** * Sanitizes category data based on context. * * @since 2.3.0 * * @param object|array $category Category data. * @param string $context Optional. Default 'display'. * @return object|array Same type as $category with sanitized data for safe use. */ function sanitize_category( $category, $context = 'display' ) { return sanitize_term( $category, 'category', $context ); } /** * Sanitizes data in single category key field. * * @since 2.3.0 * * @param string $field Category key to sanitize. * @param mixed $value Category value to sanitize. * @param int $cat_id Category ID. * @param string $context What filter to use, 'raw', 'display', etc. * @return mixed Value after $value has been sanitized. */ function sanitize_category_field( $field, $value, $cat_id, $context ) { return sanitize_term_field( $field, $value, $cat_id, 'category', $context ); } /* Tags */ /** * Retrieves all post tags. * * @since 2.3.0 * * @param string|array $args { * Optional. Arguments to retrieve tags. See get_terms() for additional options. * * @type string $taxonomy Taxonomy to retrieve terms for. Default 'post_tag'. * } * @return WP_Term[]|int|WP_Error Array of 'post_tag' term objects, a count thereof, * or WP_Error if any of the taxonomies do not exist. */ function get_tags( $args = '' ) { $defaults = array( 'taxonomy' => 'post_tag' ); $args = wp_parse_args( $args, $defaults ); $tags = get_terms( $args ); if ( empty( $tags ) ) { $tags = array(); } else { /** * Filters the array of term objects returned for the 'post_tag' taxonomy. * * @since 2.3.0 * * @param WP_Term[]|int|WP_Error $tags Array of 'post_tag' term objects, a count thereof, * or WP_Error if any of the taxonomies do not exist. * @param array $args An array of arguments. See {@see get_terms()}. */ $tags = apply_filters( 'get_tags', $tags, $args ); } return $tags; } /** * Retrieves a post tag by tag ID or tag object. * * If you pass the $tag parameter an object, which is assumed to be the tag row * object retrieved from the database, it will cache the tag data. * * If you pass $tag an integer of the tag ID, then that tag will be retrieved * from the database, if it isn't already cached, and passed back. * * If you look at get_term(), both types will be passed through several filters * and finally sanitized based on the $filter parameter value. * * @since 2.3.0 * * @param int|WP_Term|object $tag A tag ID or object. * @param string $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which * correspond to a WP_Term object, an associative array, or a numeric array, * respectively. Default OBJECT. * @param string $filter Optional. How to sanitize tag fields. Default 'raw'. * @return WP_Term|array|WP_Error|null Tag data in type defined by $output parameter. * WP_Error if $tag is empty, null if it does not exist. */ function get_tag( $tag, $output = OBJECT, $filter = 'raw' ) { return get_term( $tag, 'post_tag', $output, $filter ); } /* Cache */ /** * Removes the category cache data based on ID. * * @since 2.1.0 * * @param int $id Category ID */ function clean_category_cache( $id ) { clean_term_cache( $id, 'category' ); } /** * Updates category structure to old pre-2.3 from new taxonomy structure. * * This function was added for the taxonomy support to update the new category * structure with the old category one. This will maintain compatibility with * plugins and themes which depend on the old key or property names. * * The parameter should only be passed a variable and not create the array or * object inline to the parameter. The reason for this is that parameter is * passed by reference and PHP will fail unless it has the variable. * * There is no return value, because everything is updated on the variable you * pass to it. This is one of the features with using pass by reference in PHP. * * @since 2.3.0 * @since 4.4.0 The `$category` parameter now also accepts a WP_Term object. * @access private * * @param array|object|WP_Term $category Category row object or array. */ function _make_cat_compat( &$category ) { if ( is_object( $category ) && ! is_wp_error( $category ) ) { $category->cat_ID = $category->term_id; $category->category_count = $category->count; $category->category_description = $category->description; $category->cat_name = $category->name; $category->category_nicename = $category->slug; $category->category_parent = $category->parent; } elseif ( is_array( $category ) && isset( $category['term_id'] ) ) { $category['cat_ID'] = &$category['term_id']; $category['category_count'] = &$category['count']; $category['category_description'] = &$category['description']; $category['cat_name'] = &$category['name']; $category['category_nicename'] = &$category['slug']; $category['category_parent'] = &$category['parent']; } }
Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":3170,"date":"2022-09-05T11:48:52","date_gmt":"2022-09-05T11:48:52","guid":{"rendered":"https:\/\/africanmediaagency.com\/?p=91377"},"modified":"2022-09-05T11:48:52","modified_gmt":"2022-09-05T11:48:52","slug":"temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma","status":"publish","type":"post","link":"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/","title":{"rendered":"T\u00e9moignages : comment les S\u00e9n\u00e9galais r\u00e9fugi\u00e9s en Gambie g\u00e8rent leur trauma"},"content":{"rendered":"
\n
\"\"
OIM\/Robert Kovacs
Amie, psychologue b\u00e9n\u00e9vole, conduit un entretien personnalis\u00e9 avec Kaddy, une S\u00e9n\u00e9galaise r\u00e9fugi\u00e9e en Gambie.<\/figcaption><\/figure>\n<\/div>\n

NEW YORK, USA, le 05 Septembre 2022 -\/African Media Agency(AMA)\/-Des milliers de S\u00e9n\u00e9galais sont contraints de fuir leur pays pour la Gambie\u00a0\u00e0 cause d’un vieux conflit toujours actif dans la r\u00e9gion s\u00e9n\u00e9galaise de la Casamance. Ces bouleversements ont un fort impact sur leur sant\u00e9 mentale. Une \u00e9quipe psychosociale mobile mise en place par l’Organisation internationale des migrations (OIM), en partenariat avec la Supportive Activists Foundation, les accompagne dans l’\u00e9preuve.<\/p>\n

Quand le conflit a \u00e9clat\u00e9 dans son village s\u00e9n\u00e9galais d\u00e9but avril, Kaddy fut oblig\u00e9e de laisser toutes ses possessions derri\u00e8re elle pour sauver sa famille. \u00ab Nous avons tout perdu. Nous sommes partis sans rien pouvoir emporter avec nous. Nos animaux, nos vivres, tout a \u00e9t\u00e9 d\u00e9truit dans les combats. \u00bb<\/p>\n

Avec son mari et ses sept enfants, Kaddy a fui vers le nord de la Gambie, pour finalement trouver le chemin d’un petit village du district de Janack, dans une zone couramment appel\u00e9e \u00ab Foni \u00bb.<\/p>\n

Partis sans rien, Kaddy et sa famille ont d\u00fb compter sur l’hospitalit\u00e9 de la communaut\u00e9 locale pour se nourrir et s’abriter. \u00ab Nous nous sentons comme un fardeau pour les autres communaut\u00e9s qui nous aident \u00bb, d\u00e9plore Kaddy. \u00ab Nous avons honte d’\u00eatre \u00ab pris en charge \u00bb, mais nous n’avons pas le choix \u00bb.<\/p>\n

Kaddy fait partie des milliers de S\u00e9n\u00e9galais contraints de fuir vers la Gambie, selon l’Agence nationale de gestion des catastrophes du pays, apr\u00e8s que des combats ont \u00e9clat\u00e9 le long de la fronti\u00e8re gambo-s\u00e9n\u00e9galaise, dans un territoire occup\u00e9 par le Mouvement des forces d\u00e9mocratiques de Casamance (MFDC), un mouvement s\u00e9paratiste.<\/p>\n

Selon l’Agence nationale de gestion des catastrophes de Gambie, 6.200 autres Gambiens ont \u00e9t\u00e9 d\u00e9plac\u00e9s et 8.500 autres ont \u00e9t\u00e9 touch\u00e9s dans les communaut\u00e9s d’accueil par ce conflit de plus de quarante ans.<\/p>\n

\n
\"\"
OIM\/Robert Kovacs
A Tambakunda, un travailleur de l’OIM explique au chef du village le processus d’orientation des personnes ayant des besoins en sant\u00e9 mentale.<\/figcaption><\/figure>\n<\/div>\n

Sensibilisation au stress post-traumatique<\/strong><\/p>\n

Consciente de l’impact significatif du conflit sur le bien-\u00eatre des personnes d\u00e9plac\u00e9es, l’Organisation internationale pour les migrations (OIM<\/a>) a mobilis\u00e9 son expertise en mati\u00e8re de sant\u00e9 mentale et de soutien psychosocial. <\/p>\n

En collaboration avec la Supportive Activists Foundation, l’OIM a d\u00e9ploy\u00e9 une \u00e9quipe psychosociale mobile – compos\u00e9e d’un psychologue, de deux travailleurs sociaux, d’un \u00e9ducateur et d’un mobilisateur communautaire – pour fournir des services directs aux populations touch\u00e9es.<\/p>\n

L’une des approches cl\u00e9s employ\u00e9es par l’\u00e9quipe mobile est la psycho\u00e9ducation, o\u00f9 les volontaires rencontrent les communaut\u00e9s pour discuter des questions de sant\u00e9 mentale et des signes et sympt\u00f4mes possibles du stress. \u00ab L’objectif est de sensibiliser les personnes ayant subi un stress post-traumatique ou ayant \u00e9t\u00e9 affect\u00e9es n\u00e9gativement par le changement d’environnement provoqu\u00e9 par la crise \u00bb, explique Solomon Correa, Directeur g\u00e9n\u00e9ral de la Supportive Activists Foundation.<\/p>\n

Ces s\u00e9ances de groupe s’appuient sur des activit\u00e9s socioculturelles traditionnelles comme les s\u00e9ances r\u00e9guli\u00e8res d’attaya (th\u00e9), pour faciliter les discussions.<\/p>\n

\u00ab Nous sommes en mesure de leur enseigner des m\u00e9canismes d’adaptation au cours des discussions \u00bb, explique Amie, une psychologue b\u00e9n\u00e9vole. \u00ab Apr\u00e8s les avoir familiaris\u00e9s avec les signes et sympt\u00f4mes possibles de probl\u00e8mes de sant\u00e9 mentale, ils sont souvent tr\u00e8s int\u00e9ress\u00e9s pour nous parler en priv\u00e9. \u00bb<\/p>\n

Gr\u00e2ce aux s\u00e9ances de psycho\u00e9ducation, l’\u00e9quipe mobile est en mesure d’identifier les personnes ayant des besoins sp\u00e9cifiques en mati\u00e8re de sant\u00e9 mentale n\u00e9cessitant une attention plus pouss\u00e9e et d’effectuer des visites de suivi ou des orientations, selon les besoins.<\/p>\n

\u00ab C’est l’une des choses qui m’aide le plus dans ma vie quotidienne \u00bb<\/strong><\/p>\n

Fatou est l’une des nombreuses personnes ayant b\u00e9n\u00e9fici\u00e9 de s\u00e9ances de conseil individuelles et d\u00e9di\u00e9es.<\/p>\n

Cette Gambienne qui vivait auparavant en Casamance avec son mari s\u00e9n\u00e9galais a vu fuir toute sa famille quand le conflit a \u00e9clat\u00e9. Fatou a quitt\u00e9 sa maison en h\u00e2te, sans avoir eu le temps de rassembler ses affaires, accapar\u00e9e par l’\u00e9vacuation de ses dix enfants, dont l’un vit en situation de handicap. Depuis plus de deux mois, Fatou est h\u00e9berg\u00e9e dans la propri\u00e9t\u00e9 de son oncle \u00e0 Janack.<\/p>\n

\n
\"\"
OIM\/Robert Kovacs
De nombreux Gambiens vivant au S\u00e9n\u00e9gal ont \u00e9galement \u00e9t\u00e9 touch\u00e9s. Fatou a d\u00fb quitter sa maison sans rien d’autre que ses dix enfants et ses habits sur le dos.<\/figcaption><\/figure>\n<\/div>\n

Pour joindre les deux bouts, Fatou vit de petits boulots. Elle offre notamment ses services dans des fermes pendant la r\u00e9colte et pour vendre les productions au nom des agriculteurs. <\/p>\n

Cependant, le stress li\u00e9 \u00e0 la n\u00e9cessit\u00e9 de subvenir aux besoins de sa famille dans ce nouvel environnement et les souvenirs douloureux ressurgis des fusillades dont elle fut t\u00e9moin ont un impact n\u00e9gatif sur son bien-\u00eatre.<\/p>\n

\u00ab \u00c0 ce jour, c’est l’une des choses qui m’aide le plus dans ma vie quotidienne \u00bb, explique Fatou \u00e0 propos du soutien psychosocial qu’elle a re\u00e7u. \u00ab Je suis vraiment heureuse de leur parler [\u00e0 l’\u00e9quipe mobile], de partager mes sentiments et mes probl\u00e8mes sans h\u00e9siter. \u00bb Les s\u00e9ances de Fatou avec l’\u00e9quipe mobile ont contribu\u00e9 \u00e0 lui donner un sentiment de solidarit\u00e9 mutuelle avec d’autres personnes d\u00e9plac\u00e9es : \u00ab Cela m’aide de savoir que nous ne sommes pas seuls dans cette situation \u00bb.<\/p>\n

Distribu\u00e9 par <\/em>African Media Agency (AMA)<\/a> pour ONU Info.<\/em><\/p>\n

The post T\u00e9moignages : comment les S\u00e9n\u00e9galais r\u00e9fugi\u00e9s en Gambie g\u00e8rent leur trauma<\/a> appeared first on African Media Agency<\/a>.<\/p>\n

AMA<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"

OIM\/Robert KovacsAmie, psychologue b\u00e9n\u00e9vole, conduit un entretien personnalis\u00e9 avec Kaddy, une S\u00e9n\u00e9galaise r\u00e9fugi\u00e9e en Gambie.<\/p>\n","protected":false},"author":1,"featured_media":3171,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[14],"tags":[],"class_list":["post-3170","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ama"],"yoast_head":"\nT\u00e9moignages : comment les S\u00e9n\u00e9galais r\u00e9fugi\u00e9s en Gambie g\u00e8rent leur trauma - Niamey en ligne<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"T\u00e9moignages : comment les S\u00e9n\u00e9galais r\u00e9fugi\u00e9s en Gambie g\u00e8rent leur trauma - Niamey en ligne\" \/>\n<meta property=\"og:description\" content=\"OIM\/Robert KovacsAmie, psychologue b\u00e9n\u00e9vole, conduit un entretien personnalis\u00e9 avec Kaddy, une S\u00e9n\u00e9galaise r\u00e9fugi\u00e9e en Gambie.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/\" \/>\n<meta property=\"og:site_name\" content=\"Niamey en ligne\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-05T11:48:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/africanmediaagency.com\/wp-content\/uploads\/2022\/09\/Un-travailleur-de-lOIM_AMA.jpeg\" \/>\n<meta name=\"author\" content=\"La Redaction\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"La Redaction\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/\",\"url\":\"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/\",\"name\":\"T\u00e9moignages : comment les S\u00e9n\u00e9galais r\u00e9fugi\u00e9s en Gambie g\u00e8rent leur trauma - Niamey en ligne\",\"isPartOf\":{\"@id\":\"https:\/\/niameyenligne.com\/#website\"},\"datePublished\":\"2022-09-05T11:48:52+00:00\",\"dateModified\":\"2022-09-05T11:48:52+00:00\",\"author\":{\"@id\":\"https:\/\/niameyenligne.com\/#\/schema\/person\/ae27da2174beb3a2595d2790b5b367d2\"},\"breadcrumb\":{\"@id\":\"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/niameyenligne.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"T\u00e9moignages : comment les S\u00e9n\u00e9galais r\u00e9fugi\u00e9s en Gambie g\u00e8rent leur trauma\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/niameyenligne.com\/#website\",\"url\":\"https:\/\/niameyenligne.com\/\",\"name\":\"Niamey en ligne\",\"description\":\"L'info de Niamey et d'ailleurs.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/niameyenligne.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/niameyenligne.com\/#\/schema\/person\/ae27da2174beb3a2595d2790b5b367d2\",\"name\":\"La Redaction\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/niameyenligne.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1c1a8c2ad21a98650038996bea6f137b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1c1a8c2ad21a98650038996bea6f137b?s=96&d=mm&r=g\",\"caption\":\"La Redaction\"},\"sameAs\":[\"https:\/\/niameyenligne.com\"],\"url\":\"https:\/\/niameyenligne.com\/author\/duosadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"T\u00e9moignages : comment les S\u00e9n\u00e9galais r\u00e9fugi\u00e9s en Gambie g\u00e8rent leur trauma - Niamey en ligne","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/","og_locale":"fr_FR","og_type":"article","og_title":"T\u00e9moignages : comment les S\u00e9n\u00e9galais r\u00e9fugi\u00e9s en Gambie g\u00e8rent leur trauma - Niamey en ligne","og_description":"OIM\/Robert KovacsAmie, psychologue b\u00e9n\u00e9vole, conduit un entretien personnalis\u00e9 avec Kaddy, une S\u00e9n\u00e9galaise r\u00e9fugi\u00e9e en Gambie.","og_url":"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/","og_site_name":"Niamey en ligne","article_published_time":"2022-09-05T11:48:52+00:00","og_image":[{"url":"https:\/\/africanmediaagency.com\/wp-content\/uploads\/2022\/09\/Un-travailleur-de-lOIM_AMA.jpeg"}],"author":"La Redaction","twitter_card":"summary_large_image","twitter_misc":{"\u00c9crit par":"La Redaction","Dur\u00e9e de lecture estim\u00e9e":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/","url":"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/","name":"T\u00e9moignages : comment les S\u00e9n\u00e9galais r\u00e9fugi\u00e9s en Gambie g\u00e8rent leur trauma - Niamey en ligne","isPartOf":{"@id":"https:\/\/niameyenligne.com\/#website"},"datePublished":"2022-09-05T11:48:52+00:00","dateModified":"2022-09-05T11:48:52+00:00","author":{"@id":"https:\/\/niameyenligne.com\/#\/schema\/person\/ae27da2174beb3a2595d2790b5b367d2"},"breadcrumb":{"@id":"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/niameyenligne.com\/temoignages-comment-les-senegalais-refugies-en-gambie-gerent-leur-trauma\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/niameyenligne.com\/"},{"@type":"ListItem","position":2,"name":"T\u00e9moignages : comment les S\u00e9n\u00e9galais r\u00e9fugi\u00e9s en Gambie g\u00e8rent leur trauma"}]},{"@type":"WebSite","@id":"https:\/\/niameyenligne.com\/#website","url":"https:\/\/niameyenligne.com\/","name":"Niamey en ligne","description":"L'info de Niamey et d'ailleurs.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/niameyenligne.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"},{"@type":"Person","@id":"https:\/\/niameyenligne.com\/#\/schema\/person\/ae27da2174beb3a2595d2790b5b367d2","name":"La Redaction","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/niameyenligne.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1c1a8c2ad21a98650038996bea6f137b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1c1a8c2ad21a98650038996bea6f137b?s=96&d=mm&r=g","caption":"La Redaction"},"sameAs":["https:\/\/niameyenligne.com"],"url":"https:\/\/niameyenligne.com\/author\/duosadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/posts\/3170"}],"collection":[{"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/comments?post=3170"}],"version-history":[{"count":0,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/posts\/3170\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/media\/3171"}],"wp:attachment":[{"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/media?parent=3170"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/categories?post=3170"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/tags?post=3170"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}