{"id":3101163,"date":"2012-07-25T15:59:57","date_gmt":"2012-07-25T19:59:57","guid":{"rendered":"https:\/\/www.friendsjournal.org\/agiza-masuala-ya-nyuma-na-nakala-moja\/"},"modified":"2025-10-09T13:34:12","modified_gmt":"2025-10-09T17:34:12","slug":"agiza-masuala-ya-nyuma-na-nakala-moja","status":"publish","type":"page","link":"https:\/\/www.friendsjournal.org\/sw\/agiza-masuala-ya-nyuma-na-nakala-moja\/","title":{"rendered":"Agiza Masuala ya Nyuma na Nakala Moja"},"content":{"rendered":"<style>.wForm form{text-align: left;}<\/style><!-- FORM: HEAD SECTION -->\n    <meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n    <meta name=\"referrer\" content=\"no-referrer-when-downgrade\">\n    <!-- THIS SCRIPT NEEDS TO BE LOADED FIRST BEFORE wforms.js -->\n    <script type=\"text\/javascript\" data-for=\"FA__DOMContentLoadedEventDispatch\" src=\"https:\/\/www.tfaforms.com\/js\/FA__DOMContentLoadedEventDispatcher.js\" defer><\/script>\n                    <style>\n                    .captcha {\n                        padding-bottom: 1em !important;\n                    }\n                    .wForm .captcha .oneField {\n                        margin: 0;\n                        padding: 0;\n                    }\n                <\/style>\n                <script type=\"text\/javascript\">\n                    \/\/ initialize our variables\n                    var captchaReady = 0;\n                    var wFORMSReady = 0;\n                    var isConditionalSubmitEnabled = false;\n\n                    \/\/ when wForms is loaded call this\n                    var wformsReadyCallback = function () {\n                        \/\/ using this var to denote if wForms is loaded\n                        wFORMSReady = 1;\n                        isConditionalSubmitEnabled = document.getElementById('submit_button').hasAttribute('data-condition');\n                        \/\/ call our recaptcha function which is dependent on both\n                        \/\/ wForms and an async call to google\n                        \/\/ note the meat of this function wont fire until both\n                        \/\/ wFORMSReady = 1 and captchaReady = 1\n                        onloadCallback();\n                    }\n                    var gCaptchaReadyCallback = function() {\n                        \/\/ using this var to denote if captcha is loaded\n                        captchaReady = 1;\n                        isConditionalSubmitEnabled = document.getElementById('submit_button').hasAttribute('data-condition');\n                        \/\/ call our recaptcha function which is dependent on both\n                        \/\/ wForms and an async call to google\n                        \/\/ note the meat of this function wont fire until both\n                        \/\/ wFORMSReady = 1 and captchaReady = 1\n                        onloadCallback();\n                    };\n\n                    \/\/ add event listener to fire when wForms is fully loaded\n                    document.addEventListener(\"wFORMSLoaded\", wformsReadyCallback);\n\n                    var enableSubmitButton = function() {\n                        var submitButton = document.getElementById('submit_button');\n                        var explanation = document.getElementById('disabled-explanation');\n                        var isConditionalSubmitConditionMet = wFORMS.behaviors.condition.isConditionalSubmitConditionMet;\n                        if (\n                            submitButton != null &&\n                            (isConditionalSubmitEnabled && isConditionalSubmitConditionMet) ||\n                            !isConditionalSubmitEnabled\n                        )\n                        {\n                            submitButton.removeAttribute('disabled');\n                            if (explanation != null) {\n                                explanation.style.display = 'none';\n                            }\n                        }\n                    };\n                    var disableSubmitButton = function() {\n                        var submitButton = document.getElementById('submit_button');\n                        var explanation = document.getElementById('disabled-explanation');\n                        if (submitButton != null) {\n                            submitButton.disabled = true;\n                            if (explanation != null) {\n                                explanation.style.display = 'block';\n                            }\n                        }\n                    };\n\n                    \/\/ call this on both captcha async complete and wforms fully\n                    \/\/ initialized since we can't be sure which will complete first\n                    \/\/ and we need both done for this to function just check that they are\n                    \/\/ done to fire the functionality\n                    var onloadCallback = function () {\n                        \/\/ if our captcha is ready (async call completed)\n                        \/\/ and wFORMS is completely loaded then we are ready to add\n                        \/\/ the captcha to the page\n                        if (captchaReady && wFORMSReady) {\n                            \/\/ Prevent both concurrent and sequential executions\n                            if (window.isCreatingCaptcha || window.hasCaptchaRendered) {\n                                return;\n                            }\n                            window.isCreatingCaptcha = true;\n\n                            try {\n                                var submitButton = document.getElementById('submit_button');\n                                var formContainer = submitButton.closest('form') || submitButton.closest('.wFormContainer');\n                                var faCaptcha = null;\n\n                                if (formContainer) {\n                                    faCaptcha = formContainer.querySelector('#google-captcha');\n                                }\n\n                                \/\/ Also check if captcha was appended to body as fallback (look for FA-specific structure)\n                                if (!faCaptcha) {\n                                    var bodyCaptchas = document.querySelectorAll('body > #google-captcha');\n                                    for (var i = 0; i < bodyCaptchas.length; i++) {\n                                        \/\/ Verify it's a FormAssembly captcha by checking for specific structure\n                                        if (bodyCaptchas[i].querySelector('.captcha .oneField .g-recaptcha')) {\n                                            faCaptcha = bodyCaptchas[i];\n                                            break;\n                                        }\n                                    }\n                                }\n\n                                if (faCaptcha) { \n                                    if (faCaptcha.parentNode) {\n                                        faCaptcha.parentNode.removeChild(faCaptcha);\n                                    } \n                                }\n\n                            \/\/ Now create a new captcha container\n                            var captchaContainer = document.createElement('div');\n                            captchaContainer.id = 'google-captcha';\n                            \n                            var captchaDiv = document.createElement('div');\n                            captchaDiv.className = 'captcha';\n                            \n                            var oneFieldDiv = document.createElement('div');\n                            oneFieldDiv.className = 'oneField';\n                            \n                            var recaptchaElement = document.createElement('div');\n                            recaptchaElement.id = 'g-recaptcha-render-div';\n                            recaptchaElement.className = 'g-recaptcha';\n                            \n                            var errorDiv = document.createElement('div');\n                            errorDiv.className = 'g-captcha-error';\n                            \n                            var helpDiv = document.createElement('div');\n                            helpDiv.className = 'captchaHelp';\n                            helpDiv.innerHTML = 'reCAPTCHA helps prevent automated form spam.<br>';\n                            \n                            var disabledDiv = document.createElement('div');\n                            disabledDiv.id = 'disabled-explanation';\n                            disabledDiv.className = 'captchaHelp';\n                            disabledDiv.style.display = 'block';\n                            disabledDiv.innerHTML = 'The submit button will be disabled until you complete the CAPTCHA.';\n                            \n                            oneFieldDiv.appendChild(recaptchaElement);\n                            oneFieldDiv.appendChild(errorDiv);\n                            oneFieldDiv.appendChild(document.createElement('br'));\n                            captchaDiv.appendChild(oneFieldDiv);\n                            captchaDiv.appendChild(helpDiv);\n                            captchaDiv.appendChild(disabledDiv);\n                            captchaContainer.appendChild(document.createElement('br'));\n                            captchaContainer.appendChild(captchaDiv);\n                            \n                            if (submitButton && submitButton.parentNode) {\n                                submitButton.parentNode.insertBefore(captchaContainer, submitButton);\n                            } else {\n                                \/\/ Fallback: append to body if submit button not found.\n                                document.body.appendChild(captchaContainer);\n                            }\n                        } finally {\n                            window.isCreatingCaptcha = false;\n                        }\n                            \n                            grecaptcha.enterprise.render('g-recaptcha-render-div', {\n                                'sitekey': '6LfMg_EaAAAAAMhDNLMlgqDChzmtYHlx1yU2y7GI',\n                                'theme': 'light',\n                                'size': 'normal',\n                                'callback': 'enableSubmitButton',\n                                'expired-callback': 'disableSubmitButton'\n                            });\n                            window.hasCaptchaRendered = true;\n                            var oldRecaptchaCheck = parseInt('1');\n                            if (oldRecaptchaCheck === -1) {\n                                var standardCaptcha = document.getElementById(\"tfa_captcha_text\");\n                                standardCaptcha = standardCaptcha.parentNode.parentNode.parentNode;\n                                standardCaptcha.parentNode.removeChild(standardCaptcha);\n                            }\n\n                            if (!wFORMS.instances['paging']) {\n                                document.getElementById(\"g-recaptcha-render-div\").parentNode.parentNode.parentNode.style.display = \"block\";\n                                \/\/document.getElementById(\"g-recaptcha-render-div\").parentNode.parentNode.parentNode.removeAttribute(\"hidden\");\n                            }\n                            document.getElementById(\"g-recaptcha-render-div\").getAttributeNode('id').value = 'tfa_captcha_text';\n\n                            var captchaError = '';\n                            if (captchaError == '1') {\n                                var errMsgText = 'The CAPTCHA was not completed successfully.';\n                                var errMsgDiv = document.createElement('div');\n                                errMsgDiv.id = \"tfa_captcha_text-E\";\n                                errMsgDiv.className = \"err errMsg\";\n                                errMsgDiv.innerText = errMsgText;\n                                var loc = document.querySelector('.g-captcha-error');\n                                loc.insertBefore(errMsgDiv, loc.childNodes[0]);\n\n                                \/* See wFORMS.behaviors.paging.applyTo for origin of this code *\/\n                                if (wFORMS.instances['paging']) {\n                                    var b = wFORMS.instances['paging'][0];\n                                    var pp = base2.DOM.Element.querySelector(document, wFORMS.behaviors.paging.CAPTCHA_ERROR);\n                                    if (pp) {\n                                        var lastPage = 1;\n                                        for (var i = 1; i < 100; i++) {\n                                            if (b.behavior.isLastPageIndex(i)) {\n                                                lastPage = i;\n                                                break;\n                                            }\n                                        }\n                                        b.jumpTo(lastPage);\n                                    }\n                                }\n                            }\n                        }\n                    }\n                <\/script>\n                                    <script src='https:\/\/www.google.com\/recaptcha\/enterprise.js?onload=gCaptchaReadyCallback&render=explicit&hl=en_US' async\n                        defer><\/script>\n                <script type=\"text\/javascript\">\n                    document.addEventListener(\"DOMContentLoaded\", function() {\n                        var warning = document.getElementById(\"javascript-warning\");\n                        if (warning != null) {\n                            warning.parentNode.removeChild(warning);\n                        }\n                        var oldRecaptchaCheck = parseInt('1');\n                        if (oldRecaptchaCheck !== -1) {\n                            var explanation = document.getElementById('disabled-explanation');\n                            var submitButton = document.getElementById('submit_button');\n                            if (submitButton != null) {\n                                submitButton.disabled = true;\n                                if (explanation != null) {\n                                    explanation.style.display = 'block';\n                                }\n                            }\n                        }\n                    });\n                <\/script>\n                <script type=\"text\/javascript\">\n        document.addEventListener(\"FA__DOMContentLoaded\", function(){\n            const FORM_TIME_START = Math.floor((new Date).getTime()\/1000);\n            let formElement = document.getElementById(\"tfa_0\");\n            if (null === formElement) {\n                formElement = document.getElementById(\"0\");\n            }\n            let appendJsTimerElement = function(){\n                let formTimeDiff = Math.floor((new Date).getTime()\/1000) - FORM_TIME_START;\n                let cumulatedTimeElement = document.getElementById(\"tfa_dbCumulatedTime\");\n                if (null !== cumulatedTimeElement) {\n                    let cumulatedTime = parseInt(cumulatedTimeElement.value);\n                    if (null !== cumulatedTime && cumulatedTime > 0) {\n                        formTimeDiff += cumulatedTime;\n                    }\n                }\n                let jsTimeInput = document.createElement(\"input\");\n                jsTimeInput.setAttribute(\"type\", \"hidden\");\n                jsTimeInput.setAttribute(\"value\", formTimeDiff.toString());\n                jsTimeInput.setAttribute(\"name\", \"tfa_dbElapsedJsTime\");\n                jsTimeInput.setAttribute(\"id\", \"tfa_dbElapsedJsTime\");\n                jsTimeInput.setAttribute(\"autocomplete\", \"off\");\n                if (null !== formElement) {\n                    formElement.appendChild(jsTimeInput);\n                }\n            };\n            if (null !== formElement) {\n                if(formElement.addEventListener){\n                    formElement.addEventListener('submit', appendJsTimerElement, false);\n                } else if(formElement.attachEvent){\n                    formElement.attachEvent('onsubmit', appendJsTimerElement);\n                }\n            }\n        });\n    <\/script>\n\n    <link href=\"https:\/\/www.tfaforms.com\/dist\/form-builder\/5.0.0\/wforms-layout.css?v=1780529550\" rel=\"stylesheet\" type=\"text\/css\" \/>\n\n    <link href=\"https:\/\/www.tfaforms.com\/uploads\/themes\/theme-68007.css\" rel=\"stylesheet\" type=\"text\/css\" \/>\n    <link href=\"https:\/\/www.tfaforms.com\/dist\/form-builder\/5.0.0\/wforms-jsonly.css?v=1780529550\" rel=\"alternate stylesheet\" title=\"This stylesheet activated by javascript\" type=\"text\/css\" \/>\n    <script type=\"text\/javascript\" src=\"https:\/\/www.tfaforms.com\/wForms\/3.11\/js\/wforms.js?v=1780529550\"><\/script>\n    <script type=\"text\/javascript\" src=\"https:\/\/www.tfaforms.com\/js\/wforms_session_errors_aria.js?v=1780529550\" defer><\/script>\n    <script type=\"text\/javascript\">\n        if(wFORMS.behaviors.prefill) wFORMS.behaviors.prefill.skip = true;\n    <\/script>\n    <script type=\"text\/javascript\" src=\"https:\/\/www.tfaforms.com\/wForms\/3.11\/js\/localization-en_US.js?v=1780529550\"><\/script>\n<link href=\"\/font\/css\/font-awesome.min.css\" rel=\"stylesheet\" type=\"text\/css\" \/>\n\n<!-- FORM: BODY SECTION -->\n<div class=\"wFormContainer\" >\n    <div class=\"wFormHeader\"><\/div>\n    <style type=\"text\/css\">\n                #tfa_1876,\n                *[id^=\"tfa_1876[\"] {\n                    width: 240.18181824684143px !important;\n                }\n                #tfa_1876-D,\n                *[id^=\"tfa_1876[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            <\/style><div class=\"\"><div class=\"wForm\" id=\"4961313-WRPR\" data-language=\"en_US\" dir=\"ltr\">\n<div class=\"codesection\" id=\"code-4961313\"><\/div>\n<form method=\"post\" action=\"https:\/\/www.tfaforms.com\/api_v2\/rest\/workflow\/processor\" class=\"hintsBelow labelsAbove\" id=\"4961313\">\n<div class=\"htmlSection\" id=\"tfa_1878\"><div class=\"htmlContent\" id=\"tfa_1878-HTML\">Back issues in print format are available for $6 each, plus shipping. Please fill out this form to inquire whether back issues are available. We'll contact you to let you know if what you need is in stock and to take your order.<\/div><\/div>\n<fieldset id=\"tfa_1872\" class=\"section\">\n<legend id=\"tfa_1872-L\">Contact Details<\/legend>\n<div class=\"oneField field-container-D    \" id=\"tfa_1873-D\">\n<label id=\"tfa_1873-L\" class=\"label preField reqMark\" for=\"tfa_1873\">First Name&nbsp;<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_1873\" name=\"tfa_1873\" value=\"\" title=\"First Name \" class=\"required\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_1874-D\">\n<label id=\"tfa_1874-L\" class=\"label preField \" for=\"tfa_1874\">Last Name<\/label><br><div class=\"inputWrapper\"><input type=\"text\" id=\"tfa_1874\" name=\"tfa_1874\" value=\"\" title=\"Last Name\" class=\"\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_1875-D\">\n<label id=\"tfa_1875-L\" class=\"label preField \" for=\"tfa_1875\">Phone<\/label><br><div class=\"inputWrapper\"><input type=\"text\" id=\"tfa_1875\" name=\"tfa_1875\" value=\"\" placeholder=\"###-###-####\" title=\"Phone\" class=\"validate-custom \/^([\\(]{1}[0-9]{3}[\\)]{1}[\\.| |\\-]{0,1}|^[0-9]{3}[\\.|\\-| ]?)?[0-9]{3}(\\.|\\-| )?[0-9]{4}$\/\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_1876-D\">\n<label id=\"tfa_1876-L\" class=\"label preField reqMark\" for=\"tfa_1876\">Email<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_1876\" name=\"tfa_1876\" value=\"\" autocomplete=\"email\" title=\"Email\" class=\"validate-email required\"><\/div>\n<\/div>\n<\/fieldset>\n<div class=\"oneField field-container-D    \" id=\"tfa_1877-D\">\n<label id=\"tfa_1877-L\" class=\"label preField reqMark\" for=\"tfa_1877\">What back issue are you interested in, and how many copies do you need?<\/label><br><div class=\"inputWrapper\"><textarea aria-required=\"true\" id=\"tfa_1877\" name=\"tfa_1877\" title=\"What back issue are you interested in, and how many copies do you need?\" class=\"required\"><\/textarea><\/div>\n<\/div>\n<div class=\"actions\" id=\"4961313-A\" data-contentid=\"submit_button\">\n<div id=\"google-captcha\" style=\"display: none\">\n<br><div class=\"captcha\">\n<div class=\"oneField\">\n<div class=\"g-recaptcha\" id=\"g-recaptcha-render-div\"><\/div>\n<div class=\"g-captcha-error\"><\/div>\n<br>\n<\/div>\n<div class=\"captchaHelp\">reCAPTCHA helps prevent automated form spam.<br>\n<\/div>\n<div id=\"disabled-explanation\" class=\"captchaHelp\" style=\"display: none\">The submit button will be disabled until you complete the CAPTCHA.<\/div>\n<\/div>\n<\/div>\n<input type=\"submit\" data-label=\"Submit\" class=\"primaryAction\" id=\"submit_button\" value=\"Submit\">\n<\/div>\n<div style=\"clear:both\"><\/div>\n<input type=\"hidden\" value=\"954-d4363df49cd995597decdb2aa38a864a\" name=\"tfa_dbCounters\" id=\"tfa_dbCounters\" autocomplete=\"off\"><input type=\"hidden\" value=\"4961313\" name=\"tfa_dbFormId\" id=\"tfa_dbFormId\"><input type=\"hidden\" value=\"\" name=\"tfa_dbResponseId\" id=\"tfa_dbResponseId\"><input type=\"hidden\" value=\"54e55cb994b620fef07f878c4e44dc04\" name=\"tfa_dbControl\" id=\"tfa_dbControl\"><input type=\"hidden\" value=\"\" name=\"tfa_dbWorkflowSessionUuid\" id=\"tfa_dbWorkflowSessionUuid\"><input type=\"hidden\" value=\"1780529550\" name=\"tfa_dbTimeStarted\" id=\"tfa_dbTimeStarted\" autocomplete=\"off\"><input type=\"hidden\" value=\"2\" name=\"tfa_dbVersionId\" id=\"tfa_dbVersionId\"><input type=\"hidden\" value=\"\" name=\"tfa_switchedoff\" id=\"tfa_switchedoff\">\n<\/form>\n<\/div><\/div><div class=\"wFormFooter\"><p class=\"supportInfo\"><a target=\"new\" class=\"contactInfoLink\" href=\"https:\/\/www.tfaforms.com\/forms\/help\/4961313\" data-testid=\"contact-info-link\">Contact Information<\/a><br><\/p><\/div>\n  <p class=\"supportInfo\" >\n      <\/p>\n <\/div>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"open","template":"","meta":{"_acf_changed":false,"hero_banner_post_id":0,"footnotes":""},"class_list":["post-3101163","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Agiza Masuala ya Nyuma na Nakala Moja - Friends Journal<\/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:\/\/www.friendsjournal.org\/sw\/agiza-masuala-ya-nyuma-na-nakala-moja\/\" \/>\n<meta property=\"og:locale\" content=\"sw_KE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Agiza Masuala ya Nyuma na Nakala Moja - Friends Journal\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.friendsjournal.org\/sw\/agiza-masuala-ya-nyuma-na-nakala-moja\/\" \/>\n<meta property=\"og:site_name\" content=\"Friends Journal\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/friendsjournal\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-09T17:34:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.friendsjournal.org\/wp-content\/uploads\/2020\/07\/FJ_generic_featured_FINAL.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"779\" \/>\n\t<meta property=\"og:image:height\" content=\"438\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@friendsournal\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/agiza-masuala-ya-nyuma-na-nakala-moja\\\/\",\"url\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/agiza-masuala-ya-nyuma-na-nakala-moja\\\/\",\"name\":\"Agiza Masuala ya Nyuma na Nakala Moja - Friends Journal\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/#website\"},\"datePublished\":\"2012-07-25T19:59:57+00:00\",\"dateModified\":\"2025-10-09T17:34:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/agiza-masuala-ya-nyuma-na-nakala-moja\\\/#breadcrumb\"},\"inLanguage\":\"sw-KE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/agiza-masuala-ya-nyuma-na-nakala-moja\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/agiza-masuala-ya-nyuma-na-nakala-moja\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/nyumbani\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Agiza Masuala ya Nyuma na Nakala Moja\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/#website\",\"url\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/\",\"name\":\"Friends Journal\",\"description\":\"Kuwasiliana na uzoefu wa Quaker ili kuunganisha na kuimarisha maisha ya kiroho\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"sw-KE\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/#organization\",\"name\":\"Friends Journal\",\"url\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"sw-KE\",\"@id\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.friendsjournal.org\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/fj-logo-white.png\",\"contentUrl\":\"https:\\\/\\\/www.friendsjournal.org\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/fj-logo-white.png\",\"width\":617,\"height\":74,\"caption\":\"Friends Journal\"},\"image\":{\"@id\":\"https:\\\/\\\/www.friendsjournal.org\\\/sw\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/friendsjournal\\\/\",\"https:\\\/\\\/x.com\\\/friendsournal\",\"https:\\\/\\\/instagram.com\\\/friendsjournal\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/3154709\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/friendsjournal\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Agiza Masuala ya Nyuma na Nakala Moja - Friends Journal","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:\/\/www.friendsjournal.org\/sw\/agiza-masuala-ya-nyuma-na-nakala-moja\/","og_locale":"sw_KE","og_type":"article","og_title":"Agiza Masuala ya Nyuma na Nakala Moja - Friends Journal","og_url":"https:\/\/www.friendsjournal.org\/sw\/agiza-masuala-ya-nyuma-na-nakala-moja\/","og_site_name":"Friends Journal","article_publisher":"https:\/\/www.facebook.com\/friendsjournal\/","article_modified_time":"2025-10-09T17:34:12+00:00","og_image":[{"width":779,"height":438,"url":"https:\/\/www.friendsjournal.org\/wp-content\/uploads\/2020\/07\/FJ_generic_featured_FINAL.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@friendsournal","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.friendsjournal.org\/sw\/agiza-masuala-ya-nyuma-na-nakala-moja\/","url":"https:\/\/www.friendsjournal.org\/sw\/agiza-masuala-ya-nyuma-na-nakala-moja\/","name":"Agiza Masuala ya Nyuma na Nakala Moja - Friends Journal","isPartOf":{"@id":"https:\/\/www.friendsjournal.org\/sw\/#website"},"datePublished":"2012-07-25T19:59:57+00:00","dateModified":"2025-10-09T17:34:12+00:00","breadcrumb":{"@id":"https:\/\/www.friendsjournal.org\/sw\/agiza-masuala-ya-nyuma-na-nakala-moja\/#breadcrumb"},"inLanguage":"sw-KE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.friendsjournal.org\/sw\/agiza-masuala-ya-nyuma-na-nakala-moja\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.friendsjournal.org\/sw\/agiza-masuala-ya-nyuma-na-nakala-moja\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.friendsjournal.org\/sw\/nyumbani\/"},{"@type":"ListItem","position":2,"name":"Agiza Masuala ya Nyuma na Nakala Moja"}]},{"@type":"WebSite","@id":"https:\/\/www.friendsjournal.org\/sw\/#website","url":"https:\/\/www.friendsjournal.org\/sw\/","name":"Friends Journal","description":"Kuwasiliana na uzoefu wa Quaker ili kuunganisha na kuimarisha maisha ya kiroho","publisher":{"@id":"https:\/\/www.friendsjournal.org\/sw\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.friendsjournal.org\/sw\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"sw-KE"},{"@type":"Organization","@id":"https:\/\/www.friendsjournal.org\/sw\/#organization","name":"Friends Journal","url":"https:\/\/www.friendsjournal.org\/sw\/","logo":{"@type":"ImageObject","inLanguage":"sw-KE","@id":"https:\/\/www.friendsjournal.org\/sw\/#\/schema\/logo\/image\/","url":"https:\/\/www.friendsjournal.org\/wp-content\/uploads\/2025\/08\/fj-logo-white.png","contentUrl":"https:\/\/www.friendsjournal.org\/wp-content\/uploads\/2025\/08\/fj-logo-white.png","width":617,"height":74,"caption":"Friends Journal"},"image":{"@id":"https:\/\/www.friendsjournal.org\/sw\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/friendsjournal\/","https:\/\/x.com\/friendsournal","https:\/\/instagram.com\/friendsjournal","https:\/\/www.linkedin.com\/company\/3154709","https:\/\/www.youtube.com\/user\/friendsjournal"]}]}},"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Friends Journal","distributor_original_site_url":"https:\/\/www.friendsjournal.org\/sw\/","push-errors":false,"acf":[],"_links":{"self":[{"href":"https:\/\/www.friendsjournal.org\/sw\/wp-json\/wp\/v2\/pages\/3101163","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.friendsjournal.org\/sw\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.friendsjournal.org\/sw\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.friendsjournal.org\/sw\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.friendsjournal.org\/sw\/wp-json\/wp\/v2\/comments?post=3101163"}],"version-history":[{"count":1,"href":"https:\/\/www.friendsjournal.org\/sw\/wp-json\/wp\/v2\/pages\/3101163\/revisions"}],"predecessor-version":[{"id":3101166,"href":"https:\/\/www.friendsjournal.org\/sw\/wp-json\/wp\/v2\/pages\/3101163\/revisions\/3101166"}],"wp:attachment":[{"href":"https:\/\/www.friendsjournal.org\/sw\/wp-json\/wp\/v2\/media?parent=3101163"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}